Get the detailed information about the task with the ID specified in the request.
Connect the Toloka-Kit library to your script.
import toloka.client as toloka
Replace the sample OAuth token with your own one.
toloka_client = toloka.('AQC2AGAJgyNSA8CtpdO9MWy_QEB6s6kDjHUoElE', 'PRODUCTION');
Find out the ID of the task for which you want to get the detailed information. Then get this info calling the get_task()
method.
task = toloka_client.('000012bb84--62d80429f20bf20e50f36a27')
The get_task()
request will return the Task class object. You can use its attributes to print the information you need.
print(task.id, task.overlap, task.created.date())
You should get an output with the task ID, overlap, and creation date which looks like this.
00022da5a7--6388b40547c84000494cdc58 3 2022-12-01
import toloka.client as tolokatoloka_client = toloka.TolokaClient('AQC2AGAJgyNSA8CtpdO9MWy_QEB6s6kDjHUoElE', 'PRODUCTION')task = toloka_client.get_task('000012bb84--62d80429f20bf20e50f36a27')print(task.id, task.overlap, task.created.date())