MCPcopy Create free account
hub / github.com/TimMcCool/scratchattach / author

Method author

scratchattach/site/project.py:414–419  ·  view source on GitHub ↗

Returns: scratchattach.user.User: An object representing the Scratch user who created this project.

(self)

Source from the content-addressed store, hash-verified

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 """

Callers 1

test_projectFunction · 0.45

Calls 1

_make_linked_objectMethod · 0.45

Tested by 1

test_projectFunction · 0.36