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