This func no longer needs to urlencode the query, _request does it
This commit is contained in:
parent
a9b7b836c9
commit
f4b2ebc40a
1 changed files with 1 additions and 1 deletions
|
|
@ -380,7 +380,7 @@ class Twython(object):
|
||||||
for result in search:
|
for result in search:
|
||||||
print result
|
print result
|
||||||
"""
|
"""
|
||||||
kwargs['q'] = urllib.quote_plus(Twython.unicode2utf8(search_query))
|
kwargs['q'] = search_query
|
||||||
content = self.get('https://search.twitter.com/search.json', params=kwargs)
|
content = self.get('https://search.twitter.com/search.json', params=kwargs)
|
||||||
|
|
||||||
if not content['results']:
|
if not content['results']:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue