I am using Tweepy and Python to access the Twitter API.
I would like to know if the following problem is common or it's happening just for me.
I am storing some tweets. Retweeted ones are stored in this fortmat:
RT @User [text of the tweet]
I notice here that even a user retweeted the text using the "Retweet" button, the text is always stored in the same format (RT @User [text of the tweet]
) and of course when the Twitter API adds "RT @user
" the whole text can exceeds 140 character and as a result it is stored but not in its full length.
If the problem is not a common bug, for those who used Tweepy, does the bug comes from it or from Twitter API ?