X Tutup
Skip to content

Commit c2f7e8a

Browse files
committed
updates migration information for GetUserStream
1 parent 6716982 commit c2f7e8a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

doc/migration_v30.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,20 @@ GetFollowersPaged():
1919
* The third value of the tuple returned by this method is now a list of twitter.User objects in accordance with its doc string rather than the raw data from API. Closes #277
2020
* The kwarg `include_user_entities` now defaults to True. This was set to False previously, but would not be included in query parameters sent to Twitter. Without the query parameter in the URL, Twitter would default to returning user_entities, so this change makes this behavior explicit and consistent with the previously ambiguous behavior.
2121

22-
GetSeach():
22+
GetSearch():
2323
* You can now specify a user for whom you wish to limit the search. For example, to only get tweets from the user `twitterapi`, you can call `GetSearch(who='twitterapi')` and only that account's tweets will be returned.
2424

25+
GetUserStream():
26+
* Parameter 'stall_warning' is now 'stall_warnings' in line with GetStreamFilter and Twitter's naming convention.
27+
28+
29+
Deprecation
30+
===========
31+
2532
PostMedia():
2633
* This endpoint is deprecated by Twitter. Python-twitter will throw a warning about using the method and advise you to use PostUpdate() instead. There is no schedule for when this will be removed from Twitter.
2734

35+
2836
New Methods
2937
===========
3038

0 commit comments

Comments
 (0)
X Tutup