Returns Nonfollowers data of a given user
(
self, username: str = None, live_match: bool = False, store_locally: bool = True
)
| 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 |
nothing calls this directly
no test coverage detected