twikit icon indicating copy to clipboard operation
twikit copied to clipboard

Twitter API Scraper | Without an API key | Twitter Internal API | Free | Twitter scraper | Twitter Bot

Results 182 twikit issues
Sort by recently updated
recently updated
newest added

## Summary by CodeRabbit - **New Features** - Enhanced `Tweet` functionality to support `None` values for `quote` and `retweeted_tweet` attributes, providing greater flexibility in tweet handling.

Any hint to avoid account bans? What are the request limits? (just for educational purposes obv, I would never)

is it possible to fetch al posts, not 20? for example: amexoffers profile have 7,628,024 posts according to https://www.trackalytics.com/twitter/profile/amexoffers/ but when tried fetching it using tweets = client.get_user_tweets(code, 'Tweets') print(len(tweets))...

status = client.check_media_status("1788113005861027840") print(status ) client.create_tweet(text="i love musk",media_ids="1788113005861027840") print("okay") Run Result: {'media_id': 1788113005861027840, 'media_id_string': '1788113005861027840', 'media_key': '7_1788113005861027840', 'size': 974522, 'expires_after_secs': 85576, 'video': {'video_type': 'video/mp4'}, 'processing_info': {'state': 'succeeded', 'progress_percent': 100}} Traceback...

As per my title, can I retrieve the number of tweets without logging into my account? This way I am able to see if there are any new tweets without...

hi is it possible to use a pool/mutiple accounts at the same time?

``` File "/home/victoria/projects/get_tweets.py, line 29, in get_tweet tweet = client.get_tweet_by_id(tweet_id) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/victoria/projects/venv/lib64/python3.11/site-packages/twikit/client.py", line 1398, in get_tweet_by_id entries = find_dict(response, 'entries')[0] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^ IndexError: list index out of range ``` here's...

the error: File "/usr/local/lib/python3.10/site-packages/twikit/client.py", line 2582, in get_trends `trend_info = item['item']['content']['trend']` I am wondering if some item may not have the key `trend`, it may need to do a key...

Hello twikit Team, First of all, I want to congratulate you on creating such an amazing library. I'm currently using twikit, and I noticed that there isn't a built-in way...

I think there is a massive movement of refactoring all the classes to an abstract base, and then you can use the base for the async/non-async portions rather than duplicating...