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