From e2a1ecacf94fd54a71d9eb61bde180a4bef72805 Mon Sep 17 00:00:00 2001 From: ryanmcgrath Date: Mon, 13 Sep 2010 02:21:37 -0700 Subject: [PATCH] Migrated from overview-intro v3 --- Overview-(Intro).textile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Overview-(Intro).textile b/Overview-(Intro).textile index ebf1035..405fdee 100644 --- a/Overview-(Intro).textile +++ b/Overview-(Intro).textile @@ -10,13 +10,13 @@ Tango was designed to be quick and easy to use. Before you can use any of the AP import tango -# Using no authentication and specifying Debug -twitter = tango.setup(debug=True) +# Using no authentication +twitter = tango.setup() # Using Basic Authentication twitter = tango.setup(authtype="Basic", username="example", password="example") -# Using OAuth Authentication (Note: OAuth is the default, specify Basic if needed) +# Using OAuth Authentication (Note: OAuth is the default, specify Basic if needed) Currently in development auth_keys = {"consumer_key": "yourconsumerkey", "consumer_secret": "yourconsumersecret"} twitter = tango.setup(username="example", password="example", oauth_keys=auth_keys)