Praxis_Bot/main.py
Alex Orid 994981cfdb First Push
Im so sorry for the bad code T_T

(Also note to self, I deleted the old code)
2020-09-19 23:38:49 -04:00

32 lines
613 B
Python

# Install these:
# pip install mysql-connector-python
# pip install pynput
# pip install twitch-python
# pip install SQLAlchemy
# pip install pandas
# pip install numpy
# pip install gTTS
# pip install playsound
import sys
import time
import twitch_script_class
import utilities_script as utility
twitch_chat: twitch_script_class.Twitch_Module
def main():
print("Connecting to Channels...")
global twitch_chat
twitch_chat = twitch_script_class.Twitch_Module()
twitch_chat.join_channel("thecuriousnerd")
#twitch_chat.send_message("activated")
if __name__ == "__main__":
main()