From: Greg Reda Date: Mon, 12 May 2014 01:57:31 +0000 (-0500) Subject: Remove documentation for a bunch of deprecated methods X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=c5c142b5372665da35e685d375cc91796c4deed7;p=tweepy.git Remove documentation for a bunch of deprecated methods --- diff --git a/docs/api.rst b/docs/api.rst index e06b728..7d5f443 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -58,20 +58,6 @@ Timeline methods :param map: A boolean indicating whether or not to include tweets that cannot be shown, but with a value of None. Defaults to False. :rtype: list of :class:`Status` objects -.. method:: API.friends_timeline([since_id], [max_id], [count], [page]) - - Returns the 20 most recent statuses posted by the authenticating user - and that user's friends. - - - :param since_id: |since_id| - :param max_id: |max_id| - :param count: |count| - :param page: |page| - :rtype: list of :class:`Status` objects - - Returns: list of :class:`Status` objects - .. method:: API.user_timeline([id/user_id/screen_name], [since_id], [max_id], [count], [page]) @@ -89,41 +75,6 @@ Timeline methods :rtype: list of :class:`Status` objects -.. method:: API.mentions([since_id], [max_id], [count], [page]) - - Returns the 20 most recent mentions (status containing @username) for - the authenticating user. - - :param since_id: |since_id| - :param max_id: |max_id| - :param count: |count| - :param page: |page| - :rtype: list of :class:`Status` objects - - -.. method:: API.retweeted_by_me([since_id], [max_id], [count], [page]) - - Returns the 20 most recent retweets posted by the authenticating user. - - :param since_id: |since_id| - :param max_id: |max_id| - :param count: |count| - :param page: |page| - :rtype: list of :class:`Status` objects - - -.. method:: API.retweeted_to_me([since_id], [max_id], [count], [page]) - - Returns the 20 most recent retweets posted by the authenticating - user's friends. - - :param since_id: |since_id| - :param max_id: |max_id| - :param count: |count| - :param page: |page| - :rtype: list of :class:`Status` objects - - .. method:: API.retweets_of_me([since_id], [max_id], [count], [page]) Returns the 20 most recent tweets of the authenticated user that have @@ -479,30 +430,6 @@ Favorite Methods :rtype: :class:`Status` object -Notification Methods --------------------- - -.. method:: API.enable_notifications(id/screen_name/user_id) - - Enables device notifications for updates from the specified user. - - :param id: |uid| - :param screen_name: |screen_name| - :param user_id: |user_id| - :rtype: :class:`User` object - - -.. method:: API.disable_notifications(id/screen_name/user_id) - - Disables notifications for updates from the specified user to the - authenticating user. - - :param id: |uid| - :param screen_name: |screen_name| - :param user_id: |user_id| - :rtype: :class:`User` object - - Block Methods ------------- @@ -528,16 +455,6 @@ Block Methods :rtype: :class:`User` object -.. method:: API.exists_block(id/screen_name/user_id) - - Checks if the authenticated user is blocking the specified user. - - :param id: |uid| - :param screen_name: |screen_name| - :param user_id: |user_id| - :rtype: True/False - - .. method:: API.blocks([page]) Returns an array of user objects that the authenticating user is @@ -832,13 +749,6 @@ Local Trends Methods :rtype: :class:`JSON` object -.. method:: API.trends_location(woeid) - - Returns the top 10 trending topics for a specific location Twitter has trending topic information for. The response is an array of "trend" objects that encode the name of the trending topic, the query parameter that can be used to search for the topic on Search, and the direct URL that can be issued against Search. This information is cached for five minutes, and therefore users are discouraged from querying these endpoints faster than once every five minutes. Global trends information is also available from this API by using a WOEID of 1. - - :param woeid: * The WOEID of the location to be querying for. - :rtype: :class:`JSON` object - Geo Methods -----------