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)