New package structure; twython is now separated out into core/oauth/streaming. To maintain compatibility with older Twython versions, simply import twython like: 'import twython.core as twython' - this will allow for easier oauth/streaming development, and should hopefully fix a lot of the installation issues people kept running into with easy_install
This commit is contained in:
parent
fc5aaebda3
commit
a3edbb2348
26 changed files with 35 additions and 34 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import twython
|
||||
import twython.core as twython
|
||||
|
||||
# Instantiate Twython with Basic (HTTP) Authentication
|
||||
twitter = twython.setup(authtype="Basic", username="example", password="example")
|
||||
twitter = twython.setup(username="example", password="example")
|
||||
twitter.updateProfileImage("myImage.png")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue