(self)
| 379 | return [user.username for user in self.unfollowers()] |
| 380 | |
| 381 | def follower_count(self): |
| 382 | with requests.no_error_handling(): |
| 383 | text = requests.get( |
| 384 | f"https://scratch.mit.edu/users/{self.username}/followers/", |
| 385 | headers=self._headers, |
| 386 | ).text |
| 387 | return commons.webscrape_count(text, "Followers (", ")") |
| 388 | |
| 389 | def following_count(self): |
| 390 | with requests.no_error_handling(): |