You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Aouth credentials are working normally.
In using Python3 to do it, but the material I'm following uses Python2 (I'm correcting everything by my self and so far everything works as in the book.
Except for this part.
Any thoughts?
The text was updated successfully, but these errors were encountered:
Im trying to find trending topics in Brasil with the following code:
WORLD_WOE_ID = 1
BR_WOE_ID = 455821
world_trends = twitter_api.trends.place(_id=WORLD_WOE_ID)
br_trends = twitter_api.trends.place(_id=BR_WOE_ID)
print(world_trends)
print(br_trends)
As output I receive:
<twitter.api.Twitter object at 0x7fa586b56400>
It was suposed to print the trendings as:
[{u'created_at': u'2013-03-27T11:50:40Z', u'trends': [{u'url': u'http://twitter.com/search?q=%23MentionSomeoneImportantForYou'...
The Aouth credentials are working normally.
In using Python3 to do it, but the material I'm following uses Python2 (I'm correcting everything by my self and so far everything works as in the book.
Except for this part.
Any thoughts?
The text was updated successfully, but these errors were encountered: