From: Jeff Hull Date: Tue, 14 May 2013 14:18:08 +0000 (-0500) Subject: remove endpoint as referenced by @joshthecoder in #288 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=78795ce15a51509c591045b915f2978a254531a6;p=tweepy.git remove endpoint as referenced by @joshthecoder in #288 --- diff --git a/tweepy/api.py b/tweepy/api.py index 1eaaf91..cca7f4c 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -249,13 +249,6 @@ class API(object): require_auth = True ) - """ friendships/exists """ - exists_friendship = bind_api( - path = '/friendships/exists.json', - payload_type = 'json', - allowed_param = ['user_a', 'user_b'] - ) - """ friendships/show """ show_friendship = bind_api( path = '/friendships/show.json', @@ -264,7 +257,6 @@ class API(object): 'target_id', 'target_screen_name'] ) - """ Perform bulk look up of friendships from user ID or screenname """ def lookup_friendships(self, user_ids=None, screen_names=None): return self._lookup_friendships(list_to_csv(user_ids), list_to_csv(screen_names))