Releases: PetterKraabol/Twitch-Python
Releases · PetterKraabol/Twitch-Python
0.0.20
0.0.19
0.0.18
Removed pipenv dependency from setup.py
0.0.17
Added chatters from the TMI api.
0.0.16
0.0.15
Removed print statements.
0.0.14
- Cache duration fix
- Unit tests for caching and helix user
0.0.12
Using new RxPY imports. Properly using the helix stream object. Readm…
Video pagination fix
0.0.11 Fixed video pagination. New exceptions for error handling. Improved m…
Video pagination
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)