Returns: list : A list containing the remixes of the project, each project is represented by a Project object.
(self, *, limit=40, offset=0)
| 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 | """ |