MCPcopy
hub / github.com/InstaPy/InstaPy / pick_nonfollowers

Method pick_nonfollowers

instapy/instapy.py:4638–4658  ·  view source on GitHub ↗

Returns Nonfollowers data of a given user

(
        self, username: str = None, live_match: bool = False, store_locally: bool = True
    )

Source from the content-addressed store, hash-verified

4636 return all_unfollowers, active_unfollowers
4637
4638 def pick_nonfollowers(
4639 self, username: str = None, live_match: bool = False, store_locally: bool = True
4640 ):
4641 """Returns Nonfollowers data of a given user"""
4642
4643 message = "Starting to pick Nonfollowers of {}..".format(username)
4644 highlight_print(self.username, message, "feature", "info", self.logger)
4645
4646 # get Nonfollowers
4647 nonfollowers = get_nonfollowers(
4648 self.browser,
4649 self.username,
4650 username,
4651 self.relationship_data,
4652 live_match,
4653 store_locally,
4654 self.logger,
4655 self.logfolder,
4656 )
4657
4658 return nonfollowers
4659
4660 def pick_fans(
4661 self, username: str = None, live_match: bool = False, store_locally: bool = True

Callers

nothing calls this directly

Calls 2

highlight_printFunction · 0.85
get_nonfollowersFunction · 0.85

Tested by

no test coverage detected