Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.

Commit 6206f5e

Browse files
committed
updates docs for muting users to be included in 3.1 release
1 parent 86a77fb commit 6206f5e

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

doc/changelog.rst

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,19 @@ ____________
99

1010
* :py:func:`twitter.api.Api.PostMediaMetadata()` Method allows the posting of alt text (hover text) to a photo on Twitter. Note that it appears that you have to call this method prior to attaching the photo to a status.
1111

12-
* Updated examples, specifically ``examples/twitter-to-xhtml.py``, ``examples/view_friends.py``, ``examples/shorten_url.py``
13-
14-
* Updated ``get_access_token.py`` script to be python3 compatible.
15-
1612
* A couple new methods have been added related to showing the connections between two users:
1713

1814
* :py:func:`twitter.api.Api.ShowFriendship()` shows the connection between two users (i.e., are they following each other?)
1915
* :py:func:`twitter.api.Api.IncomingFriendship()` shows all of the authenticated user's pending follower requests (if the user has set their account to private).
2016
* :py:func:`twitter.api.Api.OutgoingFriendship()` shows the authenticated user's request to follow other users (i.e. the user has attempted to follow a private account).
2117

18+
* Several methods were added related to muting users:
19+
20+
* :py:func:`twitter.api.Api.GetMutes()` returns **all** users the currently authenticated user is muting (as ``twitter.models.User`` objects).
21+
* :py:func:`twitter.api.Api.GetMutesPaged()` returns a page of ``twitter.models.User`` objects.
22+
* :py:func:`twitter.api.Api.GetMutesIDs()` returns **all** of the users the currently authenticated user is muting as integers.
23+
* :py:func:`twitter.api.Api.GetMutesIDsPaged()` returns a single page of the users the currently authenticated user is muting as integers.
24+
2225

2326
What's Changed
2427
______________
@@ -33,4 +36,8 @@ ______________
3336

3437
* :py:class:`twitter.models.Media` now has an attribute ``ext_alt_text`` for alt (hover) text for images posted to Twitter.
3538

36-
* :py:class:`twitter.models.Status` no longer has the properties ``relative_created_at``, ``now``, or ``Now``.
39+
* :py:class:`twitter.models.Status` no longer has the properties ``relative_created_at``, ``now``, or ``Now``. If you require a relative time, we suggest using a third-party library.
40+
41+
* Updated examples, specifically ``examples/twitter-to-xhtml.py``, ``examples/view_friends.py``, ``examples/shorten_url.py``
42+
43+
* Updated ``get_access_token.py`` script to be python3 compatible.

0 commit comments

Comments
 (0)