Archive pool

Move the pool which you no longer use into archive.

Steps to follow

1. Import Toloka-Kit

Connect the Toloka-Kit library to your script.

import toloka.client as toloka

2. Instantiate TolokaClient

Replace the sample API key with your own one.

toloka_client = toloka.
TolokaClient
('PlaceYourRealApiKey_Here', 'PRODUCTION');

3. Archive pool

Find out the ID of the pool you want to archive. Then call the archive_pool() method.

archived_pool = toloka_client.
archive_pool
('1443992')

4. Print pool ID and status

The archive_pool() request will return the Pool class object. You can use its attributes to print the information you need.

print(archived_pool.id, archived_pool.status)

You should get an output with the pool ID and the updated status which looks like this.

1443992 Status.ARCHIVED

Complete code: Archive pool

import toloka.client as toloka
toloka_client = toloka.TolokaClient('PlaceYourRealApiKey_Here', 'PRODUCTION')
archived_pool = toloka_client.archive_pool('1443992')
print(archived_pool.id, archived_pool.status)
List of classes and methods used in this recipe

See also

Last updated: February 7, 2023

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