celery.bin.base
¶
Click customizations for Celery.
- class celery.bin.base.CLIContext(app, no_color, workdir, quiet=False)[source]¶
Context Object for the CLI.
- ERROR¶
- OK¶
- class celery.bin.base.CeleryCommand(name, context_settings=None, callback=None, params=None, help=None, epilog=None, short_help=None, options_metavar='[OPTIONS]', add_help_option=True, no_args_is_help=False, hidden=False, deprecated=False)[source]¶
Customized command for Celery.
- class celery.bin.base.CommaSeparatedList[source]¶
Comma separated list argument.
- convert(value, param, ctx)[source]¶
Converts the value. This is not invoked for values that are None (the missing value).
- name = 'comma separated list'¶
the descriptive name of this type
- class celery.bin.base.ISO8601DateTime[source]¶
ISO 8601 Date Time argument.
- convert(value, param, ctx)[source]¶
Converts the value. This is not invoked for values that are None (the missing value).
- name = 'iso-86091'¶
the descriptive name of this type
- class celery.bin.base.ISO8601DateTimeOrFloat[source]¶
ISO 8601 Date Time or float argument.
- convert(value, param, ctx)[source]¶
Converts the value. This is not invoked for values that are None (the missing value).
- name = 'iso-86091 or float'¶
the descriptive name of this type
- class celery.bin.base.Json[source]¶
JSON formatted argument.
- convert(value, param, ctx)[source]¶
Converts the value. This is not invoked for values that are None (the missing value).
- name = 'json'¶
the descriptive name of this type