├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── dev_requirements.txt ├── setup.py ├── tests ├── __init__.py ├── test_api_parameters.py ├── test_api_usher.py ├── test_api_v3.py ├── test_parser.py ├── test_queries.py └── test_scraper.py ├── tox.ini └── twitch ├── __init__.py ├── api ├── __init__.py ├── parameters.py ├── usher.py ├── v2 │ └── __init__.py └── v3 │ ├── __init__.py │ ├── blocks.py │ ├── channels.py │ ├── chat.py │ ├── follows.py │ ├── games.py │ ├── ingests.py │ ├── root.py │ ├── search.py │ ├── streams.py │ ├── subscriptions.py │ ├── teams.py │ ├── users.py │ └── videos.py ├── exceptions.py ├── keys.py ├── logging.py ├── parser.py ├── queries.py └── scraper.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | omit = tests/* 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/README.rst -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- 1 | nose 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_api_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/tests/test_api_parameters.py -------------------------------------------------------------------------------- /tests/test_api_usher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/tests/test_api_usher.py -------------------------------------------------------------------------------- /tests/test_api_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/tests/test_api_v3.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /tests/test_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/tests/test_queries.py -------------------------------------------------------------------------------- /tests/test_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/tests/test_scraper.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/tox.ini -------------------------------------------------------------------------------- /twitch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/__init__.py -------------------------------------------------------------------------------- /twitch/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/__init__.py -------------------------------------------------------------------------------- /twitch/api/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/parameters.py -------------------------------------------------------------------------------- /twitch/api/usher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/usher.py -------------------------------------------------------------------------------- /twitch/api/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v2/__init__.py -------------------------------------------------------------------------------- /twitch/api/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/__init__.py -------------------------------------------------------------------------------- /twitch/api/v3/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/blocks.py -------------------------------------------------------------------------------- /twitch/api/v3/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/channels.py -------------------------------------------------------------------------------- /twitch/api/v3/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/chat.py -------------------------------------------------------------------------------- /twitch/api/v3/follows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/follows.py -------------------------------------------------------------------------------- /twitch/api/v3/games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/games.py -------------------------------------------------------------------------------- /twitch/api/v3/ingests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/ingests.py -------------------------------------------------------------------------------- /twitch/api/v3/root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/root.py -------------------------------------------------------------------------------- /twitch/api/v3/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/search.py -------------------------------------------------------------------------------- /twitch/api/v3/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/streams.py -------------------------------------------------------------------------------- /twitch/api/v3/subscriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/subscriptions.py -------------------------------------------------------------------------------- /twitch/api/v3/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/teams.py -------------------------------------------------------------------------------- /twitch/api/v3/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/users.py -------------------------------------------------------------------------------- /twitch/api/v3/videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/api/v3/videos.py -------------------------------------------------------------------------------- /twitch/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/exceptions.py -------------------------------------------------------------------------------- /twitch/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/keys.py -------------------------------------------------------------------------------- /twitch/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/logging.py -------------------------------------------------------------------------------- /twitch/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/parser.py -------------------------------------------------------------------------------- /twitch/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/queries.py -------------------------------------------------------------------------------- /twitch/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ingwinlu/python-twitch/HEAD/twitch/scraper.py --------------------------------------------------------------------------------