Returns: scratchattach.user.User: An object representing the Scratch user who created this project.
(self)
| 412 | # -- other -- # |
| 413 | |
| 414 | def author(self) -> user.User: |
| 415 | """ |
| 416 | Returns: |
| 417 | scratchattach.user.User: An object representing the Scratch user who created this project. |
| 418 | """ |
| 419 | return self._make_linked_object("username", self.author_name, user.User, exceptions.UserNotFound) |
| 420 | |
| 421 | def studios(self, *, limit=40, offset=0): |
| 422 | """ |