toloka.client.clone_results.CloneResults | Source code
The result of a project deep cloning.
CloneResults is returned by the clone_project method.
| Parameters | Type | Description |
|---|---|---|
project | Project | The cloned project. |
pools | List[Pool] | A list of cloned pools. |
trainings | List[Training] | A list of cloned trainings. |
Examples:
result = toloka_client.clone_project(project_id='92694')print('Project ID:', result.project.id)print('Pools:', len(result.pools))print('Trainings:', len(result.trainings))Last updated: August 28, 2023