Returns Fans data- all of the usernames who do follow the user WHOM user itself do not follow back
(
self, username: str = None, live_match: bool = False, store_locally: bool = True
)
| 4658 | return nonfollowers |
| 4659 | |
| 4660 | def pick_fans( |
| 4661 | self, username: str = None, live_match: bool = False, store_locally: bool = True |
| 4662 | ): |
| 4663 | """ |
| 4664 | Returns Fans data- all of the usernames who do follow |
| 4665 | the user WHOM user itself do not follow back |
| 4666 | """ |
| 4667 | |
| 4668 | message = "Starting to pick Fans of {}..".format(username) |
| 4669 | highlight_print(self.username, message, "feature", "info", self.logger) |
| 4670 | |
| 4671 | # get Fans |
| 4672 | fans = get_fans( |
| 4673 | self.browser, |
| 4674 | self.username, |
| 4675 | username, |
| 4676 | self.relationship_data, |
| 4677 | live_match, |
| 4678 | store_locally, |
| 4679 | self.logger, |
| 4680 | self.logfolder, |
| 4681 | ) |
| 4682 | |
| 4683 | return fans |
| 4684 | |
| 4685 | def pick_mutual_following( |
| 4686 | self, username: str = None, live_match: bool = False, store_locally: bool = True |
nothing calls this directly
no test coverage detected