Twitch-Python icon indicating copy to clipboard operation
Twitch-Python copied to clipboard

Object-oriented Twitch API for Python developers

Results 26 Twitch-Python issues
Sort by recently updated
recently updated
newest added

The Twitch API returns the user who owns the bearer token when no arguments are provided to `https://api.twitch.tv/helix/users`. > If neither a user ID nor a login name is specified,...

enhancement

Library seems to work well, I'm piecing it together by groking the source. Subscribe doesn't seem to be threaded, and just blocks, is there a call back function, or is...

In Python, if a thread's `run()` method raises an unhandled exception, it is silently ignored, and the thread terminates - unless another thread `join`s it, or an `excepthook` is defined....

Twitch offers additional information on chat messages if the client requests them. This information includes User color, subscription state and many more. See https://dev.twitch.tv/docs/irc/tags After authentication we send a request...

Hi, just testing README.md examples and I'm getting the following error: 404 Client Error: Not Found for url: https://api.twitch.tv/v5/videos//comments?cursor= I have tested it with different video ids but getting the...

Hello! I tried to create an example but unfortunately i get the following error: ImportError: cannot import name 'API' from 'twitch.api' (/home/mspapant/PycharmProjects/twitch-scraper/venv/lib/python3.7/site-packages/twitch/api/__init__.py) Do you know what is the problem? Thanks

Hey, am really enjoying this project so far, just was wondering if it's possible to fetch a size attribute for the number of chat messages sent on a Comments object,...

This package often will not cleanly shutdown, leaving a thread running in the background. There are two parts to the problem. I suspect the root cause is that C++ destructor...