Settings

ADAPTER

Classpath of the adapter class. Defaults to 'databuild.adapters.locmem.models.LocMemBook'.

LANGUAGES

A dict mapping languages to Environments. Default to:

LANGUAGES = {
    'python': 'databuild.environments.python.PythonEnvironment',
}

FUNCTION_MODULES

A tuple of module paths to import Functions from. Defaults to:

FUNCTION_MODULES = (
    'databuild.functions.data',
)

OPERATION_MODULES

A tuple of module paths to import Operation Functions from. Defaults to:

OPERATION_MODULES = (
    "databuild.operations.sheets",
    "databuild.operations.columns",
    "databuild.operations.operations",
)