This document describes the current stable version of Celery (5.0). For development docs, go here.
celery.bin.base¶
Click customizations for Celery.
-
class
celery.bin.base.CLIContext(app, no_color, workdir, quiet=False)[source]¶ Context Object for the CLI.
-
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'¶
-
-
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'¶
-
-
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'¶
-