This commit is contained in:
lulzette 2022-12-14 18:19:31 +03:00
commit 95b10ebb05
4 changed files with 23 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
config_python.py
venv-pg
.idea/

3
config_python.py.tpl Normal file
View File

@ -0,0 +1,3 @@
streamer = "1n7er"
appid="addid"
appsecret="addsecret"

16
main.py Normal file
View File

@ -0,0 +1,16 @@
#!/usr/bin/python3
import config_python
from twitchAPI.twitch import Twitch
def print_hi(name):
# Use a breakpoint in the code line below to debug your script.
print(f'Hi, {name}') # Press Ctrl+F8 to toggle the breakpoint.
# Press the green button in the gutter to run the script.
if __name__ == '__main__':
print_hi('PyCharm')
# See PyCharm help at https://www.jetbrains.com/help/pycharm/

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
twitchAPI==2.5.7.1