├── .gitignore ├── Codes ├── config.json5 ├── main.py ├── ter │ ├── __init__.py │ ├── bot.py │ └── cogs │ │ ├── __init__.py │ │ ├── __lang.py │ │ ├── base_cog.py │ │ ├── bouyoumi_cog.py │ │ ├── raid_cog.py │ │ └── trans_cog.py ├── util.py └── window.py ├── LICENSE ├── PyInstaller ├── .gitignore └── build-release.sh ├── README.md ├── README.pdf └── Venvs ├── .gitignore └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/.gitignore -------------------------------------------------------------------------------- /Codes/config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Codes/config.json5 -------------------------------------------------------------------------------- /Codes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Codes/main.py -------------------------------------------------------------------------------- /Codes/ter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Codes/ter/__init__.py -------------------------------------------------------------------------------- /Codes/ter/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Codes/ter/bot.py -------------------------------------------------------------------------------- /Codes/ter/cogs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Codes/ter/cogs/__init__.py -------------------------------------------------------------------------------- /Codes/ter/cogs/__lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Codes/ter/cogs/__lang.py -------------------------------------------------------------------------------- /Codes/ter/cogs/base_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Codes/ter/cogs/base_cog.py -------------------------------------------------------------------------------- /Codes/ter/cogs/bouyoumi_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Codes/ter/cogs/bouyoumi_cog.py -------------------------------------------------------------------------------- /Codes/ter/cogs/raid_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Codes/ter/cogs/raid_cog.py -------------------------------------------------------------------------------- /Codes/ter/cogs/trans_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Codes/ter/cogs/trans_cog.py -------------------------------------------------------------------------------- /Codes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Codes/util.py -------------------------------------------------------------------------------- /Codes/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Codes/window.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/LICENSE -------------------------------------------------------------------------------- /PyInstaller/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !build-release.sh 4 | -------------------------------------------------------------------------------- /PyInstaller/build-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/PyInstaller/build-release.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/README.pdf -------------------------------------------------------------------------------- /Venvs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !requirements.txt 4 | -------------------------------------------------------------------------------- /Venvs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelladoco/twitch-eventsub-response-py/HEAD/Venvs/requirements.txt --------------------------------------------------------------------------------