Get all the skills available in your Toloka account.
Connect the Toloka-Kit library to your script.
import toloka.client as toloka
Replace the sample API key with your own one.
toloka_client = toloka.TolokaClient('PlaceYourRealApiKey_Here', 'PRODUCTION');
Iterate through all the skills calling the get_skills()
method.
for skill in toloka_client.get_skills():
print(skill.id, skill.name, skill.private_comment)
You should get an output with the skill IDs, names, and private comments which looks like this.
12648 Programmer Got at least 5 right responses on control tasks with C++ or Python37825 product search relevance56673 my skill
import toloka.client as tolokatoloka_client = toloka.TolokaClient('PlaceYourRealApiKey_Here', 'PRODUCTION')for skill in toloka_client.get_skills(): print(skill.id, skill.name, skill.private_comment)
Last updated: February 7, 2023