commit 95b10ebb05fd257912f0831481a836f7cbac5b41 Author: lulzette Date: Wed Dec 14 18:19:31 2022 +0300 Init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..76b3f52 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +config_python.py +venv-pg +.idea/ \ No newline at end of file diff --git a/config_python.py.tpl b/config_python.py.tpl new file mode 100644 index 0000000..8faa833 --- /dev/null +++ b/config_python.py.tpl @@ -0,0 +1,3 @@ +streamer = "1n7er" +appid="addid" +appsecret="addsecret" \ No newline at end of file diff --git a/main.py b/main.py new file mode 100644 index 0000000..bddaffb --- /dev/null +++ b/main.py @@ -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/ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..16344d2 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +twitchAPI==2.5.7.1