Edited few search() docs

This commit is contained in:
kracekumar 2011-10-07 21:40:47 +05:30
parent 17f54c1eb4
commit eefbc3ea56
2 changed files with 1 additions and 2 deletions

View file

@ -367,7 +367,6 @@ class Twython(object):
Pass in the API supported arguments as named parameters.
e.g x.search(q = "python", page = '2')
e.g x.search("python", page = '2')
"""
searchURL = Twython.constructApiURL("\
http://search.twitter.com/search.json", kwargs)

View file

@ -300,7 +300,7 @@ class Twython(object):
def searchTwitter(self, **kwargs):
"""use search(search_query, **kwargs)
searchTwitter("python", page = "2")"""
searchTwitter(q = "python", page = "2")"""
return search(self, **kwargs)
def searchGen(self, search_query, **kwargs):