projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8492ec
)
Add parameters to Client.get_liking_users signature in documentation
author
Harmon
<Harmon758@gmail.com>
Sat, 26 Feb 2022 00:25:34 +0000
(18:25 -0600)
committer
Harmon
<Harmon758@gmail.com>
Sat, 26 Feb 2022 00:29:18 +0000
(18:29 -0600)
Add new max_results and pagination_token parameters to Client.get_liking_users signature in documentation
tweepy/client.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/client.py
b/tweepy/client.py
index 6a515066dce7c75dbcfe18c7fdedf0a24f424f5b..aab302e7eb6e3481680f03fae3a1e317a27fa5e9 100644
(file)
--- a/
tweepy/client.py
+++ b/
tweepy/client.py
@@
-308,8
+308,9
@@
class Client(BaseClient):
def get_liking_users(self, id, *, user_auth=False, **params):
"""get_liking_users( \
- id, *, expansions, media_fields, place_fields, poll_fields, \
- tweet_fields, user_fields, user_auth=False \
+ id, *, expansions, max_results, media_fields, pagination_token, \
+ place_fields, poll_fields, tweet_fields, user_fields, \
+ user_auth=False \
)
Allows you to get information about a Tweet’s liking users.