├── .gitignore ├── LICENSE ├── README.md ├── files └── script.sql ├── lib ├── automod.py ├── cmds │ ├── __init__.py │ ├── economy.py │ ├── games.py │ ├── misc.py │ └── mod.py ├── db.py └── react.py └── twitch_tut.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | *.db-journal 3 | files/things.txt 4 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carberra/twitch-bot-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carberra/twitch-bot-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /files/script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carberra/twitch-bot-tutorial/HEAD/files/script.sql -------------------------------------------------------------------------------- /lib/automod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carberra/twitch-bot-tutorial/HEAD/lib/automod.py -------------------------------------------------------------------------------- /lib/cmds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carberra/twitch-bot-tutorial/HEAD/lib/cmds/__init__.py -------------------------------------------------------------------------------- /lib/cmds/economy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carberra/twitch-bot-tutorial/HEAD/lib/cmds/economy.py -------------------------------------------------------------------------------- /lib/cmds/games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carberra/twitch-bot-tutorial/HEAD/lib/cmds/games.py -------------------------------------------------------------------------------- /lib/cmds/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carberra/twitch-bot-tutorial/HEAD/lib/cmds/misc.py -------------------------------------------------------------------------------- /lib/cmds/mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carberra/twitch-bot-tutorial/HEAD/lib/cmds/mod.py -------------------------------------------------------------------------------- /lib/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carberra/twitch-bot-tutorial/HEAD/lib/db.py -------------------------------------------------------------------------------- /lib/react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carberra/twitch-bot-tutorial/HEAD/lib/react.py -------------------------------------------------------------------------------- /twitch_tut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carberra/twitch-bot-tutorial/HEAD/twitch_tut.py --------------------------------------------------------------------------------