cloup.constraints

Constraints for parameter groups.

New in version v0.5.0.

Classes

If(condition, then[, else_])

Checks one constraint or another depending on the truth value of the condition.

AcceptAtMost(n)

Satisfied if the number of set parameters is <= n.

AcceptBetween(min, max)

Satisfied if the number of set parameters is between min and max (included).

And(*constraints)

It’s satisfied if all operands are satisfied.

Constraint()

A constraint that can be checked against an arbitrary collection of CLI parameters with respect to a specific click.Context (which contains the values assigned to the parameters in ctx.params).

Operator(*constraints)

Base class for all n-ary operators defined on constraints.

Or(*constraints)

It’s satisfied if at least one of the operands is satisfied.

Rephraser(constraint[, help, error])

A Constraint decorator that can override the help and/or the error message of the wrapped constraint.

RequireAtLeast(n)

Satisfied if the number of set parameters is >= n.

RequireExactly(n)

Requires an exact number of parameters to be set.

WrapperConstraint(constraint, **attrs)

Abstract class that wraps another constraint and delegates all methods to it.

ConstraintMixin(*args[, constraints, …])

Provides support to constraints.

BoundConstraintSpec(constraint, params)

A NamedTuple storing a Constraint and the names of the parameters if has check.

AllSet(*param_names)

True if all listed parameters are set.

AnySet(*param_names)

True if any of the listed parameters is set.

Equal(param_name, value)

True if the parameter value equals value.

IsSet(param_name)

True if the parameter is set.

Not(predicate)

Logical NOT of a predicate.

Functions

constraint(constr, params)

Registers a constraint.

Attributes

accept_none

Satisfied if none of the parameters is set. Useful only in conditional constraints.

all_or_none

Satisfied if either all or none of the parameters are set.

mutually_exclusive

Satisfied if at most one of the parameters is set.

require_all

Satisfied if all parameters are set.

Contents

class cloup.constraints.If(condition, then, else_=None)[source]

Bases: cloup.constraints._core.Constraint

A constraint that can be checked against an arbitrary collection of CLI parameters with respect to a specific click.Context (which contains the values assigned to the parameters in ctx.params).

Parameters
help(self, ctx)[source]

A description of the constraint.

Parameters

ctx (click.Context) –

Return type

str

check_consistency(self, params)[source]

Performs some sanity checks that detect inconsistencies between this constraints and the properties of the input parameters (e.g. required).

For example, a constraint that requires the parameters to be mutually exclusive is not consistent with a group of parameters with multiple required options.

These sanity checks are meant to catch developer’s mistakes and don’t depend on the values assigned to the parameters; therefore:

  • they can be performed before any parameter parsing

  • they can be disabled in production (see toggle_consistency_checks())

Parameters

params (Sequence[click.Parameter]) – list of click.Parameter instances

Raises

UnsatisfiableConstraint if the constraint cannot be satisfied independently from the values provided by the user

Return type

None

check_values(self, params, ctx)[source]

Checks that the constraint is satisfied by the input parameters in the given context, which (among other things) contains the values assigned to the parameters in ctx.params.

You probably don’t want to call this method directly. Use check() instead.

Parameters
Raises

ConstraintViolated

__repr__(self)[source]

Return repr(self).

Return type

str

class cloup.constraints.AcceptAtMost(n)[source]

Bases: Constraint

Satisfied if the number of set parameters is <= n.

Parameters

n (int) –

help(self, ctx)[source]

A description of the constraint.

Parameters

ctx (click.Context) –

Return type

str

check_consistency(self, params)[source]

Performs some sanity checks that detect inconsistencies between this constraints and the properties of the input parameters (e.g. required).

For example, a constraint that requires the parameters to be mutually exclusive is not consistent with a group of parameters with multiple required options.

These sanity checks are meant to catch developer’s mistakes and don’t depend on the values assigned to the parameters; therefore:

  • they can be performed before any parameter parsing

  • they can be disabled in production (see toggle_consistency_checks())

Parameters

params (Sequence[click.Parameter]) – list of click.Parameter instances

Raises

UnsatisfiableConstraint if the constraint cannot be satisfied independently from the values provided by the user

Return type

None

check_values(self, params, ctx)[source]

Checks that the constraint is satisfied by the input parameters in the given context, which (among other things) contains the values assigned to the parameters in ctx.params.

You probably don’t want to call this method directly. Use check() instead.

Parameters
Raises

ConstraintViolated

__repr__(self)[source]

Return repr(self).

class cloup.constraints.AcceptBetween(min, max)[source]

Bases: WrapperConstraint

Abstract class that wraps another constraint and delegates all methods to it. Useful when you want to define a parametric constraint combining other existing constraints minimizing the boilerplate.

This is an alternative to defining a function and using Rephraser. Feel free to do that in your code, but cloup will stick to the convention that parametric constraints are defined as classes and written in camel-case.

Parameters
help(self, ctx)[source]

A description of the constraint.

Parameters

ctx (click.Context) –

Return type

str

class cloup.constraints.And(*constraints)[source]

Bases: Operator

It’s satisfied if all operands are satisfied.

Parameters

constraints (cloup.constraints._core.Constraint) –

HELP_SEP =  and
check_values(self, params, ctx)[source]

Checks that the constraint is satisfied by the input parameters in the given context, which (among other things) contains the values assigned to the parameters in ctx.params.

You probably don’t want to call this method directly. Use check() instead.

Parameters
Raises

ConstraintViolated

__and__(self, other)[source]
Return type

And

class cloup.constraints.Constraint[source]

Bases: abc.ABC

A constraint that can be checked against an arbitrary collection of CLI parameters with respect to a specific click.Context (which contains the values assigned to the parameters in ctx.params).

classmethod must_check_consistency(cls)[source]

Returns True if consistency checks are enabled.

Return type

bool

classmethod toggle_consistency_checks(cls, value)[source]

Enables/disables consistency checks. Enabling means that:

Parameters

value (bool) –

classmethod consistency_checks_toggled(cls, value)[source]
Parameters

value (bool) –

abstract help(self, ctx)[source]

A description of the constraint.

Parameters

ctx (click.Context) –

Return type

str

check_consistency(self, params)[source]

Performs some sanity checks that detect inconsistencies between this constraints and the properties of the input parameters (e.g. required).

For example, a constraint that requires the parameters to be mutually exclusive is not consistent with a group of parameters with multiple required options.

These sanity checks are meant to catch developer’s mistakes and don’t depend on the values assigned to the parameters; therefore:

Parameters

params (Sequence[click.Parameter]) – list of click.Parameter instances

Raises

UnsatisfiableConstraint if the constraint cannot be satisfied independently from the values provided by the user

Return type

None

abstract check_values(self, params, ctx)[source]

Checks that the constraint is satisfied by the input parameters in the given context, which (among other things) contains the values assigned to the parameters in ctx.params.

You probably don’t want to call this method directly. Use check() instead.

Parameters
Raises

ConstraintViolated

check(self, params: Sequence[click.Parameter], ctx: Optional[click.Context] = None)None[source]
check(self, params: Iterable[str], ctx: Optional[click.Context] = None)None

Raises an exception if the constraint is not satisfied by the input parameters in the given (or current) context.

This method calls both check_consistency() (if enabled) and check_values().

Tip

By default check_consistency() is called since it shouldn’t have any performance impact. Nonetheless, you can disable it in production passing False to toggle_consistency_checks().

Parameters
Raises

ConstraintViolated UnsatisfiableConstraint

rephrased(self, help=None, error=None)[source]
Parameters
  • help (Union[None, str, HelpRephraser]) –

  • error (Union[None, str, ErrorRephraser]) –

Return type

Rephraser

hidden(self)[source]

Hides this constraint from the command help.

Return type

Rephraser

__call__(self, param_names, ctx=None)[source]
Parameters
Return type

None

__or__(self, other)[source]
Parameters

other (Constraint) –

Return type

Or

__and__(self, other)[source]
Parameters

other (Constraint) –

Return type

And

__repr__(self)[source]

Return repr(self).

class cloup.constraints.Operator(*constraints)[source]

Bases: Constraint, abc.ABC

Base class for all n-ary operators defined on constraints.

Parameters

constraints (cloup.constraints._core.Constraint) –

HELP_SEP :str

Used as separator of all constraints’ help strings.

help(self, ctx)[source]

A description of the constraint.

Parameters

ctx (click.Context) –

Return type

str

check_consistency(self, params)[source]

Performs some sanity checks that detect inconsistencies between this constraints and the properties of the input parameters (e.g. required).

For example, a constraint that requires the parameters to be mutually exclusive is not consistent with a group of parameters with multiple required options.

These sanity checks are meant to catch developer’s mistakes and don’t depend on the values assigned to the parameters; therefore:

  • they can be performed before any parameter parsing

  • they can be disabled in production (see toggle_consistency_checks())

Parameters

params (Sequence[click.Parameter]) – list of click.Parameter instances

Raises

UnsatisfiableConstraint if the constraint cannot be satisfied independently from the values provided by the user

Return type

None

__repr__(self)[source]

Return repr(self).

class cloup.constraints.Or(*constraints)[source]

Bases: Operator

It’s satisfied if at least one of the operands is satisfied.

Parameters

constraints (cloup.constraints._core.Constraint) –

HELP_SEP =  or
check_values(self, params, ctx)[source]

Checks that the constraint is satisfied by the input parameters in the given context, which (among other things) contains the values assigned to the parameters in ctx.params.

You probably don’t want to call this method directly. Use check() instead.

Parameters
Raises

ConstraintViolated

__or__(self, other)[source]
Return type

Or

class cloup.constraints.Rephraser(constraint, help=None, error=None)[source]

Bases: Constraint

A Constraint decorator that can override the help and/or the error message of the wrapped constraint.

This is useful also for defining new constraints. See also WrapperConstraint.

Parameters
help(self, ctx)[source]

A description of the constraint.

Parameters

ctx (click.Context) –

Return type

str

check_consistency(self, params)[source]

Performs some sanity checks that detect inconsistencies between this constraints and the properties of the input parameters (e.g. required).

For example, a constraint that requires the parameters to be mutually exclusive is not consistent with a group of parameters with multiple required options.

These sanity checks are meant to catch developer’s mistakes and don’t depend on the values assigned to the parameters; therefore:

  • they can be performed before any parameter parsing

  • they can be disabled in production (see toggle_consistency_checks())

Parameters

params (Sequence[click.Parameter]) – list of click.Parameter instances

Raises

UnsatisfiableConstraint if the constraint cannot be satisfied independently from the values provided by the user

Return type

None

check_values(self, params, ctx)[source]

Checks that the constraint is satisfied by the input parameters in the given context, which (among other things) contains the values assigned to the parameters in ctx.params.

You probably don’t want to call this method directly. Use check() instead.

Parameters
Raises

ConstraintViolated

__repr__(self)[source]

Return repr(self).

class cloup.constraints.RequireAtLeast(n)[source]

Bases: Constraint

Satisfied if the number of set parameters is >= n.

Parameters

n (int) –

help(self, ctx)[source]

A description of the constraint.

Parameters

ctx (click.Context) –

Return type

str

check_consistency(self, params)[source]

Performs some sanity checks that detect inconsistencies between this constraints and the properties of the input parameters (e.g. required).

For example, a constraint that requires the parameters to be mutually exclusive is not consistent with a group of parameters with multiple required options.

These sanity checks are meant to catch developer’s mistakes and don’t depend on the values assigned to the parameters; therefore:

  • they can be performed before any parameter parsing

  • they can be disabled in production (see toggle_consistency_checks())

Parameters

params (Sequence[click.Parameter]) – list of click.Parameter instances

Raises

UnsatisfiableConstraint if the constraint cannot be satisfied independently from the values provided by the user

Return type

None

check_values(self, params, ctx)[source]

Checks that the constraint is satisfied by the input parameters in the given context, which (among other things) contains the values assigned to the parameters in ctx.params.

You probably don’t want to call this method directly. Use check() instead.

Parameters
Raises

ConstraintViolated

__repr__(self)[source]

Return repr(self).

class cloup.constraints.RequireExactly(n)[source]

Bases: WrapperConstraint

Requires an exact number of parameters to be set.

Parameters

n (int) –

help(self, ctx)[source]

A description of the constraint.

Parameters

ctx (click.Context) –

Return type

str

check_values(self, params, ctx)[source]

Checks that the constraint is satisfied by the input parameters in the given context, which (among other things) contains the values assigned to the parameters in ctx.params.

You probably don’t want to call this method directly. Use check() instead.

Parameters
Raises

ConstraintViolated

class cloup.constraints.WrapperConstraint(constraint, **attrs)[source]

Bases: Constraint

Abstract class that wraps another constraint and delegates all methods to it. Useful when you want to define a parametric constraint combining other existing constraints minimizing the boilerplate.

This is an alternative to defining a function and using Rephraser. Feel free to do that in your code, but cloup will stick to the convention that parametric constraints are defined as classes and written in camel-case.

Parameters

constraint (cloup.constraints._core.Constraint) –

help(self, ctx)[source]

A description of the constraint.

Parameters

ctx (click.Context) –

Return type

str

check_consistency(self, params)[source]

Performs some sanity checks that detect inconsistencies between this constraints and the properties of the input parameters (e.g. required).

For example, a constraint that requires the parameters to be mutually exclusive is not consistent with a group of parameters with multiple required options.

These sanity checks are meant to catch developer’s mistakes and don’t depend on the values assigned to the parameters; therefore:

  • they can be performed before any parameter parsing

  • they can be disabled in production (see toggle_consistency_checks())

Parameters

params (Sequence[click.Parameter]) – list of click.Parameter instances

Raises

UnsatisfiableConstraint if the constraint cannot be satisfied independently from the values provided by the user

Return type

None

check_values(self, params, ctx)[source]

Checks that the constraint is satisfied by the input parameters in the given context, which (among other things) contains the values assigned to the parameters in ctx.params.

You probably don’t want to call this method directly. Use check() instead.

Parameters
Raises

ConstraintViolated

__repr__(self)[source]

Return repr(self).

cloup.constraints.accept_none

Satisfied if none of the parameters is set. Useful only in conditional constraints.

cloup.constraints.all_or_none

Satisfied if either all or none of the parameters are set.

cloup.constraints.mutually_exclusive

Satisfied if at most one of the parameters is set.

cloup.constraints.require_all

Satisfied if all parameters are set.

class cloup.constraints.ConstraintMixin(*args, constraints=(), show_constraints=None, **kwargs)[source]

Provides support to constraints.

Parameters
parse_args(self, ctx, args)[source]
get_param_by_name(self, name)[source]
Parameters

name (str) –

Return type

click.Parameter

get_params_by_name(self, names)[source]
Parameters

names (Iterable[str]) –

Return type

Sequence[click.Parameter]

format_constraints(self, ctx, formatter)[source]
Return type

None

format_help(self, ctx, formatter)[source]
Parameters

formatter (click.HelpFormatter) –

Return type

None

cloup.constraints.constraint(constr, params)[source]

Registers a constraint.

Parameters
class cloup.constraints.BoundConstraintSpec[source]

Bases: NamedTuple

A NamedTuple storing a Constraint and the names of the parameters if has check.

Parameters
constraint :cloup.constraints._core.Constraint
params :Sequence[str]
class cloup.constraints.AllSet(*param_names)[source]

Bases: Predicate

True if all listed parameters are set.

New in version 0.8.0.

Parameters

param_names (str) –

negated_description(self, ctx)[source]

Succint description of the negation of this predicate (alias: neg_desc).

Parameters

ctx (click.Context) –

Return type

str

description(self, ctx)[source]

Succint description of the predicate (alias: desc).

Parameters

ctx (click.Context) –

Return type

str

__call__(self, ctx)[source]

Evaluate the predicate on the given context.

Parameters

ctx (click.Context) –

Return type

bool

__and__(self, other)[source]
Parameters

other (Predicate) –

class cloup.constraints.AnySet(*param_names)[source]

Bases: Predicate

True if any of the listed parameters is set.

New in version 0.8.0.

Parameters

param_names (str) –

negated_description(self, ctx)[source]

Succint description of the negation of this predicate (alias: neg_desc).

Parameters

ctx (click.Context) –

Return type

str

description(self, ctx)[source]

Succint description of the predicate (alias: desc).

Parameters

ctx (click.Context) –

Return type

str

__call__(self, ctx)[source]

Evaluate the predicate on the given context.

Parameters

ctx (click.Context) –

Return type

bool

__or__(self, other)[source]
Parameters

other (Predicate) –

class cloup.constraints.Equal(param_name, value)[source]

Bases: Predicate

True if the parameter value equals value.

Parameters
  • param_name (str) –

  • value (Any) –

description(self, ctx)[source]

Succint description of the predicate (alias: desc).

Parameters

ctx (click.Context) –

Return type

str

negated_description(self, ctx)[source]

Succint description of the negation of this predicate (alias: neg_desc).

Parameters

ctx (click.Context) –

Return type

str

__call__(self, ctx)[source]

Evaluate the predicate on the given context.

Parameters

ctx (click.Context) –

Return type

bool

class cloup.constraints.IsSet(param_name)[source]

Bases: Predicate

True if the parameter is set.

Parameters

param_name (str) –

description(self, ctx)[source]

Succint description of the predicate (alias: desc).

Parameters

ctx (click.Context) –

Return type

str

negated_description(self, ctx)[source]

Succint description of the negation of this predicate (alias: neg_desc).

Parameters

ctx (click.Context) –

Return type

str

__call__(self, ctx)[source]

Evaluate the predicate on the given context.

Parameters

ctx (click.Context) –

Return type

bool

__and__(self, other)[source]
Parameters

other (Predicate) –

__or__(self, other)[source]
Parameters

other (Predicate) –

class cloup.constraints.Not(predicate)[source]

Bases: Predicate, Generic[P]

Logical NOT of a predicate.

description(self, ctx)[source]

Succint description of the predicate (alias: desc).

Parameters

ctx (click.Context) –

Return type

str

negated_description(self, ctx)[source]

Succint description of the negation of this predicate (alias: neg_desc).

Parameters

ctx (click.Context) –

Return type

str

__call__(self, ctx)[source]

Evaluate the predicate on the given context.

Parameters

ctx (click.Context) –

Return type

bool

__invert__(self)[source]
Return type

P

__repr__(self)[source]

Return repr(self).

Return type

str

exception cloup.constraints.ConstraintViolated(message, ctx=None)[source]

Bases: click.UsageError

An internal exception that signals a usage error. This typically aborts any further handling.

Parameters
  • message – the error message to display.

  • ctx – optionally the context that caused this error. Click will fill in the context automatically in some situations.

classmethod default(cls, params, desc, ctx=None)[source]
Parameters
Return type

ConstraintViolated

exception cloup.constraints.UnsatisfiableConstraint(constraint, params, reason)[source]

Bases: Exception

Raised if a constraint cannot be satisfied by a group of parameters independently from their values at runtime; e.g. mutually_exclusive cannot be satisfied if multiple of the parameters are required.