From 0ba9cbc93f6593afc4f8aed022d9da688270294d Mon Sep 17 00:00:00 2001 From: ryanmcgrath Date: Mon, 13 Sep 2010 02:21:58 -0700 Subject: [PATCH] Migrated from overview-intro v6 --- Overview-(Intro).textile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Overview-(Intro).textile b/Overview-(Intro).textile index 43de836..30e1a5b 100644 --- a/Overview-(Intro).textile +++ b/Overview-(Intro).textile @@ -11,17 +11,13 @@ Twython was designed to be quick and easy to use. Before you can use any of the import twython # Using no authentication -twitter = twython.setup() +twitter = twython.core.setup() # Using Basic Authentication -twitter = twython.setup(authtype="Basic", username="example", password="example") - -# Using OAuth Authentication (Coming soon) -auth_keys = {"consumer_key": "yourconsumerkey", "consumer_secret": "yourconsumersecret"} -twitter = twython.setup(username="example", password="example", oauth_keys=auth_keys) +twitter = twython.core.setup(username="example", password="example") # Using Basic Authentication and adding custom HTTP Headers -twitter = twython.setup(authtype="Basic", username="example", +twitter = twython.core.setup(username="example", password="example", headers="your_headers_here") \ No newline at end of file