From: Josh Roesslein Date: Mon, 6 Jul 2009 00:24:59 +0000 (-0500) Subject: Added users_timeline endpoint. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=5e270431000d85348811d428d8190de12ef02f7e;p=tweepy.git Added users_timeline endpoint. --- diff --git a/api.py b/api.py index 373961b..3933623 100644 --- a/api.py +++ b/api.py @@ -31,3 +31,13 @@ class API(object): allowed_param = ['since_id', 'max_id', 'count', 'page'], require_auth = True ) + + """Get user timeline""" + user_timeline = bind_api( + path = '/statuses/user_timeline.json', + parser = parse_statuses, + allowed_param = ['id', 'user_id', 'screen_name', 'since_id', + 'max_id', 'count', 'page'] + ) + +api = API('jitterapp', 'josh1987')