Open a closed pool in Toloka.
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 pool you want to open. Then call the open_pool()
method.
opened_pool = toloka_client.('1442472')
The open_pool()
request will return the Pool class object. You can use its attributes to print the information you need.
print(opened_pool.id, opened_pool.status)
You should get an output with the pool ID and the updated status which looks like this.
1442472 Status.OPEN
import toloka.client as tolokatoloka_client = toloka.TolokaClient('AQC2AGAJgyNSA8CtpdO9MWy_QEB6s6kDjHUoElE', 'PRODUCTION')opened_pool = toloka_client.open_pool('1442472')print(opened_pool.id, opened_pool.status)