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?