Get project details

Get the detailed information about the project with the ID specified in the request.

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. Get project information

Find out the ID of the project for which you want to get the detailed information. Then get this info calling the get_project() method.

project = toloka_client.
get_project
('83859')

4. Print project name and status

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

print(project.public_name, project.status)

You should get an output with the project name and status which looks like this.

Image classification ProjectStatus.ACTIVE

Complete code: Get project details

import toloka.client as toloka
toloka_client = toloka.TolokaClient('PlaceYourRealApiKey_Here', 'PRODUCTION')
project = toloka_client.get_project('83859')
print(project.public_name, project.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