Skip to content

Releases: PetterKraabol/Twitch-Python

0.0.20

01 May 12:30
1c60f04
Compare
Choose a tag to compare

Client id for comments api

0.0.19

31 Oct 21:45
71826d3
Compare
Choose a tag to compare

Twitch API (Helix) now requires a bearer token. This will now be created if client_id and client_secret are provided.

resolves #18

0.0.18

27 Feb 20:42
f856be0
Compare
Choose a tag to compare

Removed pipenv dependency from setup.py

0.0.17

20 Sep 20:20
385a26d
Compare
Choose a tag to compare
Added chatters from the TMI api.

0.0.16

25 Aug 00:45
db8f38a
Compare
Choose a tag to compare

Fix for iterating resources, #7

0.0.15

15 Aug 12:16
e268f57
Compare
Choose a tag to compare
Removed print statements.

0.0.14

15 Aug 12:07
d2bc2af
Compare
Choose a tag to compare
  • Cache duration fix
  • Unit tests for caching and helix user

0.0.12: Using new RxPY imports. Properly using the helix stream object. Readm…

17 Jul 21:03
89c67fa
Compare
Choose a tag to compare

Video pagination fix

20 Mar 06:55
1431c45
Compare
Choose a tag to compare
Fixed video pagination. New exceptions for error handling. Improved m…

…odel relation links. Resource pagination (wip).

Video pagination

17 Mar 02:23
24785d7
Compare
Choose a tag to compare

Added video pagination for fetching more than 100 videos.

# Limited number of videos
for video in helix.user('sodapoppin').videos(first=150):
    print(video.id)
# Continuous stream of videos
for video in helix.user('sodapoppin').videos():
    print(video.id)