twitter-api-client
twitter-api-client copied to clipboard
Implementation of X/Twitter v1, v2, and GraphQL APIs
Take timeline for example, when getting a page of timeline, we can get top and bottom cursor; When I use the bottom cursor, I can get data older than the...
Is it possible to have a limit below 37 for the search tweets functionality? I tried setting it to 10/20 but it keeps returning 36-37 tweets every time.
```python > await search.get(client, params) Traceback (most recent call last): File "/python3.10/concurrent/futures/_base.py", line 458, in result return self.__get_result() File "/python3.10/concurrent/futures/_base.py", line 403, in __get_result raise self._exception File "", line 1,...
raise error data, entries, cursor = await self.backoff(lambda: self.get(client, params), **kwargs) TypeError: cannot unpack non-iterable NoneType object search = Search(email, username, password, save=True, debug=1, proxies=proxies) res = search.run( limit=37, retries=1,...
Hi, is it possible to have rate limit data sent with the debug output for Search queries in the same way as it is for Scraper queries? Or is it...
Can you add proxy functionalities to each Classes Account, Search and others
Hello, Does someone experience the same phenomenon? During last weeks, I get '32 - Could not authenticate you' errors frequently on various requests (liking, DM, search). I don't do anything...
I'm not sure if I understand correctly: the `limit` parameter is used to upper limit the number of tweet items, but based on the actual running situation, this limit and...
Hello, I'm using the code you provided well. There's nothing else, but it seems like a part of the code isn't working. account.tweet('test 123') This is working fine. account.unretweet(123456) The...