PEP8 Edits: Removed Tabs, removed spaces around keywords, linebreaks in lines
longer than 80 chars
This commit is contained in:
parent
fb8cefd823
commit
cf5b382d55
1 changed files with 5 additions and 4 deletions
|
|
@ -1,13 +1,14 @@
|
|||
from twython import Twython
|
||||
|
||||
"""
|
||||
Note: for any method that'll require you to be authenticated (updating things, etc)
|
||||
you'll need to go through the OAuth authentication ritual. See the example
|
||||
Django application that's included with this package for more information.
|
||||
Note: for any method that'll require you to be authenticated (updating
|
||||
things, etc)
|
||||
you'll need to go through the OAuth authentication ritual. See the example
|
||||
Django application that's included with this package for more information.
|
||||
"""
|
||||
twitter = Twython()
|
||||
|
||||
# OAuth ritual...
|
||||
|
||||
|
||||
twitter.updateStatus(status = "See how easy this was?")
|
||||
twitter.updateStatus(status="See how easy this was?")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue