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