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