From 3493047180f276993f91ef1a80b7358f7ec6f2c5 Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Sun, 14 Jun 2009 20:15:54 -0400 Subject: [PATCH] Examples of user timelines --- tango_examples/get_user_timeline.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tango_examples/get_user_timeline.py diff --git a/tango_examples/get_user_timeline.py b/tango_examples/get_user_timeline.py new file mode 100644 index 0000000..a81c4c1 --- /dev/null +++ b/tango_examples/get_user_timeline.py @@ -0,0 +1,7 @@ +import tango + +# We won't authenticate for this, but sometimes it's necessary +twitter = tango.setup() +user_timeline = twitter.getUserTimeline(id=None, screen_name="ryanmcgrath") + +print user_timeline