- 18 Apr, 2010 1 commit
-
-
Kumar Appaiah authored
-
- 16 Apr, 2010 1 commit
-
-
Joshua Roesslein authored
-
- 02 Apr, 2010 3 commits
-
-
Joshua Roesslein authored
-
James Rowe authored
-
Joshua Roesslein authored
-
- 29 Mar, 2010 1 commit
-
-
Joshua Roesslein authored
This caused issues with lists_memberships() when trying to get memberships of an user besides the authenticated one. We now only set 'user' parameter to the authenticated user when no 'user' value is provided when calling the API method.
-
- 19 Mar, 2010 3 commits
-
-
Gergely Imreh authored
-
Gergely Imreh authored
Previously the ipython shell kidnapped all tweepyshell input arguments and interpreted as its own. Thus e.g. supplying a username resulted in it trying to open a file with a name equal to the username. This is not nice so let's put an end to it by explicitly passing an empty arguments list.
-
Gergely Imreh authored
Placed the opening quotes to the right indentation level, and re-added closing quotes to be able to run the tests.
-
- 18 Mar, 2010 5 commits
-
-
Joshua Roesslein authored
This method allows you to perform a bulk lookup of users by using their IDs or screen names. For more info see http://apiwiki.twitter.com/Twitter-REST-API-Method:-users-lookup
-
Joshua Roesslein authored
-
Gergely Imreh authored
IPython is a much versatile interactive shell compared to code, use it's power if awailable. Signed-off-by:
Gergely Imreh <imrehg@gmail.com>
-
Joshua Roesslein authored
Changelog file is no longer being maintained. Github compare views will replace it.
-
Joshua Roesslein authored
-
- 16 Mar, 2010 2 commits
-
-
Joshua Roesslein authored
-
Will McCutchen authored
-
- 12 Mar, 2010 1 commit
-
-
Ivo Wetzel authored
Fixes issue #13
-
- 10 Mar, 2010 3 commits
-
-
Joshua Roesslein authored
-
Ivo Wetzel authored
-
Ivo Wetzel authored
xAuth allows you to exchange an username and password pair for an OAuth access token. See http://apiwiki.twitter.com/Twitter-REST-API-Method:-oauth-access_token-for-xAuth for more details.
-
- 07 Mar, 2010 1 commit
-
-
Ivo Wetzel authored
-
- 26 Feb, 2010 1 commit
-
-
Joshua Roesslein authored
Example: try: api.get_status(0) except TweepError, e: e.response // <-- HTTPResponse object
-
- 12 Feb, 2010 1 commit
-
-
Joshua Roesslein authored
Thanks Doza for reporting!
-
- 10 Feb, 2010 2 commits
-
-
Michael (Doc) Norton authored
-
Joshua Roesslein authored
-
- 30 Jan, 2010 12 commits
-
-
Joshua Roesslein authored
These versions of python include the port number in the host header. Twitter will send us a 301 when a host is provided in this manner. To avoid this redirect this patch manually sets the host w/o the port number. Fixes issue #12
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua authored
-
Joshua authored
-
Joshua authored
-
Joshua authored
-
Joshua authored
-
Joshua authored
-
Joshua authored
This allows developers to access the raw JSON by using the JSONParser. Example: api = API(parser=JSONParser()) json = api.user_timeline('twitter') Also fixed the Cursor objects so they should be working again.
-
Joshua authored
-
- 29 Jan, 2010 2 commits
-
-
Joshua authored
-
Joshua authored
All parsing of the response payload is now handled by a Parser class defined in tweepy/parsers.py The default parser used is ModelParser which parses a JSON payload into a model instance. Developers may define and use their own custom parsers by extending the Parser class. To use the custom parser: api = API(parser=MyParser())
-
- 28 Jan, 2010 1 commit
-
-
Joshua authored
Example: results = api.search('python') print 'Search took %s seconds' % results.completed_in This fixes issue #10 (http://github.com/joshthecoder/tweepy/issues/#issue/10) Meta data available as of today: max_id, since_id, refresh_url, next_page, results_per_page, page, completed_in, query
-