diff --git a/Overview-(Intro).textile b/Overview-(Intro).textile index 1fe34cf..43de836 100644 --- a/Overview-(Intro).textile +++ b/Overview-(Intro).textile @@ -1,27 +1,27 @@ -h1. Tango Documentation +h1. Twython Documentation -Tango covers Twitter's API in (what is hopefully) full. It should be fairly self explanatory; documentation is split up in parts relating to each set of functions. Tango's API documentation tries to mirror "Twitter's API documentation":http://apiwiki.twitter.com/Twitter-API-Documentation in some manner. With that said, before using Tango, it's worth reading through Twitters "guide on things every Twitter developer should know":http://apiwiki.twitter.com/Things-Every-Developer-Should-Know. +Twython covers Twitter's API in (what is hopefully) full. It should be fairly self explanatory; documentation is split up in parts relating to each set of functions. Twython's API documentation tries to mirror "Twitter's API documentation":http://apiwiki.twitter.com/Twitter-API-Documentation in some manner. With that said, before using Twython, it's worth reading through Twitters "guide on things every Twitter developer should know":http://apiwiki.twitter.com/Things-Every-Developer-Should-Know. -h1. The basics of using Tango +h1. The basics of using Twython -Tango was designed to be quick and easy to use. Before you can use any of the API methods, though, you need to create an instance of Tango. When creating an instance of Tango to reference, there's a few things worth noting. You can choose to instantiate Tango with no Authentication, OAuth-based Authentication, or Basic (HTTP) Authentication. There's also an extra debug parameter that you can pass, which will provide header information on failed requests. +Twython was designed to be quick and easy to use. Before you can use any of the API methods, though, you need to create an instance of Twython. When creating an instance of Twython to reference, there's a few things worth noting. You can choose to instantiate Twython with no Authentication, OAuth-based Authentication (soon), or Basic (HTTP) Authentication.
 
-import tango
+import twython
 
 # Using no authentication
-twitter = tango.setup()
+twitter = twython.setup()
 
 # Using Basic Authentication
-twitter = tango.setup(authtype="Basic", username="example", password="example")
+twitter = twython.setup(authtype="Basic", username="example", password="example")
 
-# Using OAuth Authentication (Note: OAuth is the default, specify Basic if needed)
+# Using OAuth Authentication (Coming soon)
 auth_keys = {"consumer_key": "yourconsumerkey", "consumer_secret": "yourconsumersecret"}
-twitter = tango.setup(username="example", password="example", oauth_keys=auth_keys)
+twitter = twython.setup(username="example", password="example", oauth_keys=auth_keys)
 
 # Using Basic Authentication and adding custom HTTP Headers
-twitter = tango.setup(authtype="Basic", username="example", 
+twitter = twython.setup(authtype="Basic", username="example", 
     password="example", headers="your_headers_here")
 
 
\ No newline at end of file