ProjectSortItems
toloka.client.search_requests.ProjectSortItems
ProjectSortItems(self, items=None)
Parameters for sorting project 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.ProjectSortItems(['-public_name', 'id'])
result = toloka_client.find_projects(status='ACTIVE', sort=sort, limit=50)