8 lines
215 B
Python
8 lines
215 B
Python
from twython import Twython
|
|
|
|
# Getting the public timeline requires no authentication, huzzah
|
|
twitter = Twython()
|
|
public_timeline = twitter.getPublicTimeline()
|
|
|
|
for tweet in public_timeline:
|
|
print tweet["text"]
|