Income

toloka.client.collectors.Income | Source code

Income(self, *, uuid: Optional[UUID] = None)

Counts Toloker's daily earnings in the pool.

Helpful when you need to:

  • Get responses from as many Tolokers as possible.

The collector can be used with conditions:

The collector can be used with actions:

Parameters description

ParametersTypeDescription
uuidOptional[UUID]

The ID of a collector. Note that when you clone a pool, both pools start using the same collector, because it is not cloned. Usually, it is not an intended behavior. For example, in this case one collector gathers history size from both pools.

Examples:

The example shows how to block Toloker's access to the project for 1 day if their earnings reach 1 dollar.

new_pool = toloka.client.pool.Pool()
new_pool.quality_control.add_action(
collector=toloka.client.collectors.Income(),
conditions=[toloka.client.conditions.IncomeSumForLast24Hours > 1],
action=toloka.client.actions.RestrictionV2(
scope=toloka.client.user_restriction.UserRestriction.PROJECT,
duration=1,
duration_unit='DAYS',
private_comment='Earnings limit is reached',
)
)

Last updated: August 28, 2023

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