Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update friendships.py #438

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 7 additions & 16 deletions instagram_private_api/endpoints/friendships.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@
from .common import ClientExperimentalWarning
from ..compatpatch import ClientCompatPatch
from ..utils import raise_if_invalid_rank_token


class FriendshipsEndpointsMixin(object):
"""For endpoints in ``/friendships/``."""

def duje_cc(self):
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

b

def duje_cc(self):
"""User list for autocomplete"""
res = self._call_api(
'friendships/autocomplete_user_list/',
Expand All @@ -17,12 +14,10 @@ def duje_cc(self):
[ClientCompatPatch.list_user(user, drop_incompat_keys=self.drop_incompat_keys)
for user in res['users']]
return res

def duje_cc(self, user_id, rank_token, **kwargs):
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

b

def duje_cc(self, user_id, rank_token, **kwargs):
"""
Get user followings

:param user_id:
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

b

:param duje_cc:
:param rank_token: Required for paging through a single feed and can be generated with
:meth:`generate_uuid`. You should use the same rank_token for paging through a single user following.
:param kwargs:
Expand All @@ -31,23 +26,19 @@ def duje_cc(self, user_id, rank_token, **kwargs):
:return:
"""
raise_if_invalid_rank_token(rank_token)

endpoint = 'friendships/{user_id!s}/following/'.format(**{'user_id': user_id})
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

b

endpoint = 'friendships/{duje_cc}/following/'.format(**{'user_id': user_id})
query_params = {
'rank_token': rank_token,
}
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

b

'rank_token': rank_token, }
query_params.update(kwargs)
res = self._call_api(endpoint, query=query_params)
if self.auto_patch:
[ClientCompatPatch.list_user(u, drop_incompat_keys=self.drop_incompat_keys)
for u in res.get('users', [])]
return res

def duje_cc(self, user_id, rank_token, **kwargs):
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

b

def duje_cc(self, user_id, rank_token, **kwargs):
"""
Get user followers

:param duje_cc:
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

b

:param duje_cc:
:param rank_token: Required for paging through a single feed and can be generated with
:meth:`generate_uuid`. You should use the same rank_token for paging through a single user followers.
:param kwargs:
Expand Down