TrainingSortItems
toloka.client.search_requests.TrainingSortItems
TrainingSortItems(self, items=None)
Parameters for sorting training pool search results
You can specify multiple parameters. To change the sorting direction (sort in descending order), add a hyphen before the parameter. For example, sort=-id.
Parameters Description
Parameters | Type | Description |
---|---|---|
items |
Optional[List[SortItem]] | Fields by which to sort. Possible values:
|
Examples:
How to specify and use SortItems.
sort = toloka.client.search_requests.TrainingSortItems(['-last_started', 'id'])
result = toloka_client.find_trainings(status='OPEN', sort=sort, limit=50)