import twython.core as twython, pprint # Authenticate using Basic (HTTP) Authentication twitter = twython.setup(username="example", password="example") friends_timeline = twitter.getFriendsTimeline(count="150", page="3") for tweet in friends_timeline: print tweet["text"]