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.