Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion addon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<news>
[fix] omit oauth token for queries with 'required scope: none'
*** Twitch API V5 is deprecated and will be removed entirely on 2/14/18
*** script.module.python.twitch v2 will include the Twitch helix API, and may include breaking changes to current implementations. If you rely on this module follow development at https://github.com/MrSprigster/script.module.python.twitch

[fix/upd] v5.channels deprecated notations for community endpoints, add new communities endpoints
</news>
<assets>
<icon>icon.png</icon>
Expand Down
7 changes: 7 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.0.3
*** Twitch API V5 is deprecated and will be removed entirely on 2/14/18
*** script.module.python.twitch v2 will include the Twitch helix API, and may include breaking changes,
if you rely on this module follow development at https://github.com/MrSprigster/script.module.python.twitch

[fix/upd] v5.channels deprecated notations for community endpoints, add new communities endpoints

1.0.2
[fix] omit oauth token for queries with 'required scope: none'

Expand Down
2 changes: 1 addition & 1 deletion resources/lib/twitch/api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- encoding: utf-8 -*-

from twitch.api import v5
from twitch.api import v5 # V5 is deprecated and will be removed entirely on 2/14/18
from twitch.api import v5 as default

__all__ = ['v5', 'default']
1 change: 1 addition & 0 deletions resources/lib/twitch/api/v5/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# -*- encoding: utf-8 -*-
# https://dev.twitch.tv/docs/
# V5 is deprecated and will be removed entirely on 2/14/18

from twitch.api.v5 import bits # NOQA
from twitch.api.v5 import channel_feed # NOQA
Expand Down