Migrated from status-methods v1

ryanmcgrath 2010-09-13 02:21:40 -07:00
parent cb676a5684
commit 0f810332f1

20
Status-Methods.textile Normal file

@ -0,0 +1,20 @@
h2. Status methods
The methods below deal with showing, updating, and deleting status messages on Twitter.
h3. showStatus()
* <b>id:</b> (Required) The numerical ID of the status to retrieve.
<pre>
<code>
import tango
# Instantiate with no Auth - Auth might be needed if user is protected
twitter = tango.setup()
status = twitter.showStatus("123")
print status["text"]
</code>
</pre>