├── .env.example ├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── Dockerfile ├── Procfile ├── README.md ├── app.py ├── captain-definition ├── models ├── channel.py └── emotes.py ├── providers ├── bttv.py ├── ffz.py ├── seventv.py └── twitch.py ├── requirements.txt └── test ├── 7tv_global.json ├── __init__.py ├── bttv_global.json ├── ffz_global.json ├── test_7tv.py ├── test_bttv.py ├── test_ffz.py └── test_twitch.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app --preload 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/app.py -------------------------------------------------------------------------------- /captain-definition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/captain-definition -------------------------------------------------------------------------------- /models/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/models/channel.py -------------------------------------------------------------------------------- /models/emotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/models/emotes.py -------------------------------------------------------------------------------- /providers/bttv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/providers/bttv.py -------------------------------------------------------------------------------- /providers/ffz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/providers/ffz.py -------------------------------------------------------------------------------- /providers/seventv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/providers/seventv.py -------------------------------------------------------------------------------- /providers/twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/providers/twitch.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/7tv_global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/test/7tv_global.json -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/bttv_global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/test/bttv_global.json -------------------------------------------------------------------------------- /test/ffz_global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/test/ffz_global.json -------------------------------------------------------------------------------- /test/test_7tv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/test/test_7tv.py -------------------------------------------------------------------------------- /test/test_bttv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/test/test_bttv.py -------------------------------------------------------------------------------- /test/test_ffz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/test/test_ffz.py -------------------------------------------------------------------------------- /test/test_twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrippledByte/emotes-api/HEAD/test/test_twitch.py --------------------------------------------------------------------------------