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

Method remixes

scratchattach/site/project.py:175–181  ·  view source on GitHub ↗

Returns: list : A list containing the remixes of the project, each project is represented by a Project object.

(self, *, limit=40, offset=0)

Source from the content-addressed store, hash-verified

173 return f"{self.url}/embed"
174
175 def remixes(self, *, limit=40, offset=0) -> list[Project]:
176 """
177 Returns:
178 list<scratchattach.project.Project>: A list containing the remixes of the project, each project is represented by a Project object.
179 """
180 response = commons.api_iterative(f"https://api.scratch.mit.edu/projects/{self.id}/remixes", limit=limit, offset=offset)
181 return commons.parse_object_list(response, Project, self._session)
182
183 def is_shared(self):
184 """

Callers 1

test_projectFunction · 0.80

Calls

no outgoing calls

Tested by 1

test_projectFunction · 0.64