1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
Bits of the twitter API that have been implemented and bits that need
implementing in twitter.py
-----------------------------------------------------------------------
o See http://apiwiki.twitter.com/REST+API+Documentation
o API methods are wrapped in the Twitter class in twitter.py. In order to implement
a new one, use a naming scheme such as status_public_timeline or friendship_create
for the method name. The implementing method should accept arguments which mirror
the arguments required in the API docs.
o Status Methods
public_timeline Done
friends_timeline Done
user_timeline Done
show Done
update Done
replies Done
destroy Done
o User Methods
friends Done
followers Done
show Done
o Direct Message Methods
direct_messages Done
sent Done
new Done
destroy Done
o Friendship Methods
create Done
destroy Done
exists Done
o Social Graph Methods
ids (friends) Done
ids (followers) Done
o Account Methods
verify_credentials
end_session
update_location
update_delivery_device
update_profile_colors
update_profile_image
update_profile_background_image
rate_limit_status Done
update_profile
o Favorite Methods
favorites
create
destroy
o Notification Methods
follow
leave
o Block Methods
create Done
destroy Done
o Help Methods
test
downtime_schedule
|