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