(self)
| 515 | return commons.webscrape_count(text, "Studios I Curate (", ")") |
| 516 | |
| 517 | def studios_following_count(self): |
| 518 | with requests.no_error_handling(): |
| 519 | text = requests.get( |
| 520 | f"https://scratch.mit.edu/users/{self.username}/studios_following/", |
| 521 | headers=self._headers, |
| 522 | ).text |
| 523 | return commons.webscrape_count(text, "Studios I Follow (", ")") |
| 524 | |
| 525 | def studios(self, *, limit=40, offset=0) -> list[studio.Studio]: |
| 526 | _studios = commons.api_iterative( |