toloka.client.TolokaClient.create_task
| Source code
Creates a new task in Toloka.
You can send a maximum of 100,000 requests of this kind per minute and a maximum of 2,000,000 requests per day.
To create several tasks at once use the create_tasks method.
Parameters | Type | Description |
---|---|---|
task | Task | The task to be created. |
allow_defaults | Optional[bool] | Active overlap setting:
Default value: |
open_pool | Optional[bool] | Open the pool immediately after creating a task suite, if the pool is closed. Default value: |
Returns:
The created task.
Return type:
Examples:
task = toloka.client.Task( input_values={'image': 'https://tlk.s3.yandex.net/dataset/cats_vs_dogs/dogs/048e5760fc5a46faa434922b2447a527.jpg'}, pool_id='1')toloka_client.create_task(task=task, allow_defaults=True)