`toloka.client.filter.Skill` | [Source code](https://github.com/Toloka/toloka-kit/blob/v1.2.1/src/client/filter.py#L227) ```python Skill( self, key: str, operator: CompareOperator = CompareOperator.EQ, value: Optional[float] = None ) ``` Filtering Tolokers by skills. Pass the ID of a skill to the filter constructor. To select Tolokers without a skill, compare created filter with `None`.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add Toloka/docs --skill reference --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Reference?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/toloka-reference-ad2e6e83)More formats (shields.io, HTML) on the badges page.
# Skill
`toloka.client.filter.Skill` | [Source code](https://github.com/Toloka/toloka-kit/blob/v1.2.1/src/client/filter.py#L227)
```python
Skill(
self,
key: str,
operator: CompareOperator = CompareOperator.EQ,
value: Optional[float] = None
)
```
Filtering Tolokers by skills.
Pass the ID of a skill to the filter constructor.
To select Tolokers without a skill, compare created filter with `None`.
## Parameters Description
| Parameters | Type | Description |
| :----------| :----| :-----------|
`key`|**str**|<p>The ID of a skill.</p>
`operator`|**[CompareOperator](toloka.client.primitives.operators.CompareOperator.md)**|<p>An operator in the condition.</p>
`value`|**Optional\[float\]**|<p>A value to compare the skill with.</p>
**Examples:**
Selecting Tolokers with a skill with ID '224' greater than 70.
```python
filter = toloka.client.filter.Skill('224') > 70
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!