From 08c5eb3ef7a82bc108f4a1032485bac066ed30a7 Mon Sep 17 00:00:00 2001 From: michaelhelmick Date: Thu, 4 Oct 2012 13:58:46 -0700 Subject: [PATCH] Fixes #119 --- Timeline-Access.textile | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/Timeline-Access.textile b/Timeline-Access.textile index 919364d..6d7f9fb 100644 --- a/Timeline-Access.textile +++ b/Timeline-Access.textile @@ -1,22 +1,5 @@ Listed below are the various ways to access Twitter's different timeline permutations. Some require Authentication at certain points, so pay attention. -h2. getPublicTimeline() - -Returns the public timeline. This is easily one of the simplest methods for getting data in all of Twython. - -
-
-from twython import Twython
-
-# Getting the public timeline requires no authentication, huzzah
-twitter = Twython()
-public_timeline = twitter.getPublicTimeline()
-
-for tweet in public_timeline:
-    print tweet["text"]
-
-
- h2. getFriendsTimeline() Returns a timeline for all the users the authenticating user is following. This (obviously) requires authentication.