- 30 Jan, 2010 8 commits
-
-
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 3 commits
-
-
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
-
Joshua authored
-
Joshua authored
This allows Tweepy to support future parameters twitter may add without having to patch the library.
-
- 16 Jan, 2010 1 commit
-
-
Arthur Debert authored
-
- 12 Jan, 2010 1 commit
-
-
Joshua Roesslein authored
-
- 04 Jan, 2010 1 commit
-
-
Joshua authored
-
- 03 Jan, 2010 1 commit
-
-
Joshua authored
This will allow for more flexible plug 'n play for developers that need to extend Tweepy's models. To use custom models, they will extend the ModelFactory and then pass this new factory into the API constructor. Example: class MyStatus(Status): """A extended Status model""" class MyModelFactory(ModelFactory): status = MyStatus api = API(model_factory=MyModelFactory)
-
- 31 Dec, 2009 3 commits
-
-
Joshua authored
This fixes issue #8 for the time being until Twitter resolves the issue on their end. See issue #1207 on the twitter API tracker. Note: API calls still use 'api.twitter.com', just the initial OAuth setup uses 'twitter.com'.
-
Joshua authored
-
Ferenc Szalai authored
When 'secure' is True, HTTPS will be used for OAuth requests being sent to Twitter. This only applies to the get token, authorize, and get access token requests. API requests will not use HTTPS unless the API object also has 'secure' set to True in its constructor. Example: auth = OAuthHandler(token,secret,secure=True) # use HTTPS for OAuth setup api = API(auth) # will NOT use HTTPS api_https = API(auth, secure=True) # will use HTTPS for API requests. Signed-off-by:
Joshua <jroesslein@gmail.com>
-
- 30 Dec, 2009 1 commit
-
-
joshthecoder authored
-
- 17 Dec, 2009 6 commits
-
-
Joshua authored
-
Bas Westerbaan authored
Merged from bwesterb/tweepy @5c7a7480de1ee99fae8c4a1eef65c127cb83e619 Signed-off-by:
Joshua <jroesslein@gmail.com>
-
Bas Westerbaan authored
Merged from bwesterb/tweepy @ 4404b178839bcfccbd46cdff4753a9274ae6acd6 Signed-off-by:
Joshua <jroesslein@gmail.com>
-
Joshua authored
-
Bas Westerbaan authored
Added helpers to User model for lists. Merged from bwesterb/tweepy @ f26e000ba04b57761578831792d7a7a1adfc8e41 Signed-off-by:
Joshua <jroesslein@gmail.com>
-
Bas Westerbaan authored
Signed-off-by:
Bas Westerbaan <bas@fsfe.org>
-
- 12 Dec, 2009 3 commits
-
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
- 10 Dec, 2009 8 commits
-
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Joshua Roesslein authored
-
Kumar Appaiah authored
Note: source parameter only works with identi.ca API. Twitter ignores this parameter. Signed-off-by:
Joshua Roesslein <jroesslein@gmail.com>
-
- 09 Dec, 2009 1 commit
-
-
Joshua Roesslein authored
This method now properly returns the user timeline specifed by User.id
-
- 08 Dec, 2009 1 commit
-
-
Joshua Roesslein authored
-