Skip to content

Latest commit

 

History

History
43 lines (39 loc) · 2.52 KB

toloka.client.search_requests.TrainingSearchRequest.md

File metadata and controls

43 lines (39 loc) · 2.52 KB

TrainingSearchRequest

toloka.client.search_requests.TrainingSearchRequest | Source code

TrainingSearchRequest(
    self,
    status: Optional[Training.Status] = None,
    project_id: Optional[str] = None,
    id_lt: Optional[str] = None,
    id_lte: Optional[str] = None,
    id_gt: Optional[str] = None,
    id_gte: Optional[str] = None,
    created_lt: Optional[datetime] = None,
    created_lte: Optional[datetime] = None,
    created_gt: Optional[datetime] = None,
    created_gte: Optional[datetime] = None,
    last_started_lt: Optional[datetime] = None,
    last_started_lte: Optional[datetime] = None,
    last_started_gt: Optional[datetime] = None,
    last_started_gte: Optional[datetime] = None
)

Parameters for searching training pools.

Parameters Description

Parameters Type Description
status Optional[Training.Status]

Training pool status. Refer to the Training.Status page for more information on the available status values.

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.