32 lines
613 B
Python
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()
|
|
|