Well I am new to Twython and through this library I am retrieving tweets, but only 10-15 tweets are getting fetched.
The code snippet which I am using to retrieve the tweets is given below:
user_timeline=twitter.getUserTimeline(screen_name="dksbhj")
for tweet in user_timeline:
print tweet['text']
What can be used to increase tweet count from 10-15 tweets?
You should add the
countparameter to your request:N.B.
countcan’t be greater than 200 per request.If you want to retrieve the retweets too, add the parameter
include_rts=1to your request: