python-twitch
python-twitch copied to clipboard
python-twitch is an python module for simple interaction with twitch.
I assume this is related to v3 being replaced. Will this be updated to support the current API? ``` >>> twitch.api.v3.streams.all(game='Final Fantasy XIV') Traceback (most recent call last): File "/usr/local/lib/python3.6/site-packages/twitch/queries.py",...
Twitch is moving to something dubbed New Twitch API, They will be removing V3 and V5 this year https://dev.twitch.tv/docs/v5
would also enable simple rest navigation via parsed `_links` section: twitch.api.teams() would list the first 25 teams, via twitch.api.teams.next() and twitch.api.teams.prev() jump to next or prev listing, since the old...