peony-twitter
peony-twitter copied to clipboard
An asynchronous Twitter API client for Python 3.6+
I would appreciate some examples how **basic** error handling is supposed to work with Peony in the docs & and code examples in `examples/`. I noticed somewhat more advanced error...
A number of endpoints in Twitter API v2 take optional parameters that contain a dot/period. Example: On [GET /2/tweets/:id (lookup by single ID)](https://developer.twitter.com/en/docs/twitter-api/tweets/lookup/api-reference/get-tweets-id) under the section Query Parameters, you can...
Heya! Its just as the title says.. I saw stuff like track.py in the examples, but I can't find more documention on the filter() and how to use that for...
I am trying to fetch the complete favorite list, using the following code: ``` response_pool = client.api.favorites.list.get.iterator.with_since_id(screen_name=USERNAME, count=200, _force=False) async for response in response_pool: for status in response: print(status) ```...