I am begging someone to tell me how to get the full text of tweets using the Python-Twitter API, not tweepy.
tweepy gives you the full text, but does not allow you to filter by retweet count.
python-twitter allows you to filter by retweet count but there is NO WAY i found to get the full text of tweets.
please I’m begging someone to tell me how to get the full text from python-twitter because i am a noob and cannot work it out.
@Final_Blend, TwitterAPI returns an object that wraps all tweets retrieved by the request. If you iterate through it, you should be able to get the full text of each tweet in it.
You can also use response.json() to get it as a dictionary, if it helps.
1 Like
system
Closed
#3
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.