Quantcast
Channel: User Amir Afianian - Stack Overflow
Viewing all articles
Browse latest Browse all 41

Answer by Amir Afianian for Download full text from tweepy API

$
0
0

You just need to pass tweet_mode='extended' while initializing Api:

df = pd.DataFrame([str(tweet.created_at) +''+ tweet.text +'' for tweet in tweepy.Cursor(api.user_timeline, tweet_mode='extended', id = users[i], full_text = True, until='2020-10-01').items()], columns = ['Tweets'])

Viewing all articles
Browse latest Browse all 41

Trending Articles