toloka.client.filter.Skill
| Source code
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 | Type | Description |
---|---|---|
key | str | The ID of a skill. |
operator | CompareOperator | An operator in the condition. |
value | Optional[float] | A value to compare the skill with. |
Examples:
Selecting Tolokers with a skill with ID '224' greater than 70.
filter = toloka.client.filter.Skill('224') > 70