New API

Updated Generic Functions (textile)
ryanmcgrath 2010-10-25 19:29:44 -07:00
parent 99fae398ae
commit 25fba94a64

@ -11,11 +11,10 @@ Parameters:
<pre>
<code>
import twython
from twython import Twython
# Shortening URLs requires no authentication, huzzah
twitter = twython.core.setup()
shortURL = twitter.shortenURL("http://www.webs.com/")
shortURL = Twython.shortenURL("http://www.webs.com/")
print shortURL
</code>