Merge ee94028854 into 4163fcdc44
This commit is contained in:
commit
040d60cd6b
2 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ from twython import Twython
|
|||
|
||||
""" Instantiate Twython with no Authentication """
|
||||
twitter = Twython()
|
||||
search_results = twitter.searchTwitter(q="WebsDotCom", rpp="50")
|
||||
search_results = twitter.search(q="WebsDotCom", rpp="50")
|
||||
|
||||
for tweet in search_results["results"]:
|
||||
print "Tweet from @%s Date: %s" % (tweet['from_user'].encode('utf-8'),tweet['created_at'])
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
from twython import Twython
|
||||
from twython import TwythonError, TwythonAPILimit, TwythonAuthError
|
||||
from twython import TwythonError, TwythonRateLimitError, TwythonAuthError
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue