get_tasks

toloka.async_client.client.AsyncTolokaClient.get_tasks | Source code

Finds all tasks that match certain criteria.

get_tasks returns a generator. You can iterate over all found tasks using the generator. Several requests to the Toloka server are possible while iterating.

If you need to sort tasks use the find_tasks method.

Parameters description

ParametersTypeDescription
pool_idOptional[str]

The ID of the pool to get tasks from.

overlapOptional[int]

Tasks with an overlap equal to the specified value.

id_ltOptional[str]

Tasks with IDs less than the specified value.

id_lteOptional[str]

Tasks with IDs less than or equal to the specified value.

id_gtOptional[str]

Tasks with IDs greater than the specified value.

id_gteOptional[str]

Tasks with IDs greater than or equal to the specified value.

created_ltOptional[datetime]

Tasks created before the specified date.

created_lteOptional[datetime]

Tasks created before or on the specified date.

created_gtOptional[datetime]

Tasks created after the specified date.

created_gteOptional[datetime]

Tasks created after or on the specified date.

overlap_ltOptional[int]

Tasks with an overlap less than the specified value.

overlap_lteOptional[int]

Tasks with an overlap less than or equal to the specified value.

overlap_gtOptional[int]

Tasks with an overlap greater than the specified value.

overlap_gteOptional[int]

Tasks with an overlap greater than or equal to the specified value.

batch_sizeOptional[int]

A limit of items returned by each request to Toloka. The maximum allowed value: 100,000. The default value: 50.

Examples:

Getting all tasks from a single pool.

tasks = list(toloka_client.get_tasks(pool_id='1086170'))

Last updated: August 28, 2023

Toloka-Kit
OverviewGetting API keyQuick start
Recipes
Reference
toloka.client
toloka.async_client
toloka.autoquality [autoquality]
toloka.metrics
toloka.streaming