Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
tweepy
Commits
55633082
Commit
55633082
authored
Apr 16, 2010
by
Joshua Roesslein
Browse files
Added retweeted_by and retweeted_by_ids methods.
parent
b571c972
Changes
1
Hide whitespace changes
Inline
Side-by-side
tweepy/api.py
View file @
55633082
...
...
@@ -70,6 +70,22 @@ class API(object):
require_auth
=
True
)
"""/statuses/:id/retweeted_by.format"""
retweeted_by
=
bind_api
(
path
=
'/statuses/{id}/retweeted_by.json'
,
payload_type
=
'status'
,
payload_list
=
True
,
allowed_param
=
[
'id'
,
'count'
,
'page'
],
require_auth
=
True
)
"""/statuses/:id/retweeted_by/ids.format"""
retweeted_by_ids
=
bind_api
(
path
=
'/statuses/{id}/retweeted_by/ids.json'
,
payload_type
=
'ids'
,
allowed_param
=
[
'id'
,
'count'
,
'page'
],
require_auth
=
True
)
""" statuses/retweeted_by_me """
retweeted_by_me
=
bind_api
(
path
=
'/statuses/retweeted_by_me.json'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment