7 lines
149 B
Python
7 lines
149 B
Python
from twython import Twython
|
|
|
|
""" Instantiate Twython with no Authentication """
|
|
twitter = Twython()
|
|
trends = twitter.getWeeklyTrends()
|
|
|
|
print trends
|