This document describes an older version of Celery (2.5). For the latest stable version please go here.

celery.app.defaults

celery.app.defaults

Configuration introspection and defaults.

copyright:
  1. 2009 - 2012 by Ask Solem.
license:

BSD, see LICENSE for more details.

class celery.app.defaults.Option(default=None, *args, **kwargs)
alt = None
deprecate_by = None
remove_by = None
to_python(value)
typemap = {'bool': <function str_to_bool at 0x1d00c80>, 'string': <type 'str'>, 'tuple': <type 'tuple'>, 'int': <type 'int'>, 'dict': <type 'dict'>, 'float': <type 'float'>, 'any': <function <lambda> at 0x1d00d70>}
celery.app.defaults.find(*args, **kwargs)
celery.app.defaults.find_deprecated_settings(source)
celery.app.defaults.flatten(d, ns='')
celery.app.defaults.str_to_bool(term, table={'false': False, 'no': False, '1': True, '0': False, 'yes': True, 'true': True})

Previous topic

celery.app.amqp

Next topic

celery.task

This Page