From e13d371fefc9c6a67dfe7461cadf67909d210e97 Mon Sep 17 00:00:00 2001 From: Erik Scheffers Date: Thu, 3 Feb 2011 18:03:42 +0800 Subject: [PATCH] Added API calls "/friendships/incoming" and "/friendships/outgoing" --- twython/twitter_endpoints.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/twython/twitter_endpoints.py b/twython/twitter_endpoints.py index 4581c92..c789446 100644 --- a/twython/twitter_endpoints.py +++ b/twython/twitter_endpoints.py @@ -73,6 +73,14 @@ api_table = { 'url': '/followers/ids.json', 'method': 'GET', }, + 'getIncomingFriendshipIDs': { + 'url': '/friendships/incoming.json', + 'method': 'GET', + }, + 'getOutgoingFriendshipIDs': { + 'url': '/friendships/outgoing.json', + 'method': 'GET', + }, # Retweets 'reTweet': {