Skip to content

Getting Started¤

Installation¤

$ pip install meringue

You can connect individual modules as needed (read more in the documentation of the corresponding module):

INSTALLED_APPS = (
    ...
    'meringue.core',
    'meringue.api',
    ...
)

All settings for the library are specified inside the MERINGUE parameter (for more details, see the corresponding section):

MERINGUE = {
    ...
}
Authors: Dmitry Dobrynin