toloka.client.TolokaClient.find_trainings
| Source code
Finds trainings that match certain criteria.
The number of returned trainings is limited. To find remaining trainings call find_trainings
with updated search criteria.
To iterate over all matching trainings you may use the get_trainings method.
Parameters | Type | Description |
---|---|---|
status | Optional[Training.Status] | Training pool status. Refer to the Training.Status page for more information on the available |
project_id | Optional[str] | Training pools belonging to the project with the specified ID. |
id_lt | Optional[str] | Training pools with IDs less than the specified value. |
id_lte | Optional[str] | Training pools with IDs less than or equal to the specified value. |
id_gt | Optional[str] | Training pools with IDs greater than the specified value. |
id_gte | Optional[str] | Training pools with IDs greater than or equal to the specified value. |
created_lt | Optional[datetime] | Training pools created before the specified date. |
created_lte | Optional[datetime] | Training pools created before or on the specified date. |
created_gt | Optional[datetime] | Training pools created after the specified date. |
created_gte | Optional[datetime] | Training pools created after or on the specified date. |
last_started_lt | Optional[datetime] | Training pools that were opened last time before the specified date. |
last_started_lte | Optional[datetime] | Training pools that were opened last time before or on the specified date. |
last_started_gt | Optional[datetime] | Training pools that were opened last time after the specified date. |
last_started_gte | Optional[datetime] | Training pools that were opened last time after or on the specified date. |
sort | Union[List[str], TrainingSortItems, None] | Sorting options. Default: |
limit | Optional[int] | Returned trainings limit. The maximum allowed value: 300. |
Returns:
Found trainings and a flag showing whether there are more matching trainings exceeding the limit.
Return type:
Examples:
Finding all trainings in all projects.
find_result = toloka_client.find_trainings()trainings = find_result.items
Finding all opened trainings in all projects.
find_result = toloka_client.find_trainings(status='OPEN')trainings = find_result.items
Finding all opened trainings in a specific project.
find_result = toloka_client.find_trainings(status='OPEN', project_id='92694')trainings = find_result.items
If there are trainings exceeding the limit
, then find_result.has_more
is set to True
.
Last updated: August 28, 2023