8 lines
275 B
Python
8 lines
275 B
Python
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"]
|