6 lines
158 B
Python
6 lines
158 B
Python
import tango
|
|
|
|
twitter = tango.setup(authtype="Basic", username="example", password="example")
|
|
mentions = twitter.getUserMentions(count="150")
|
|
|
|
print mentions
|