{
"info": {
"author": "API Hackers",
"author_email": "wagtail-sendinblue@apihackers.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Software Distribution"
],
"description": "Wagtail SendInBlue\n------------------\n\n`Wagtail `_ integration for `SendInblue`_.\n\nInstallation\n************\n\nInstall it with pip:\n\n.. code-block:: shell\n\n pip install wagtail-sendinblue\n \n\n\nAdd `sendinblue` to your `INSTALLED_APPS`:\n\n.. code-block:: python\n\n INSTALLED_APPS = [\n # ...\n 'sendinblue',\n # ...\n ]\n \n\n\nAdd the `sendinblue.urls` to your `urls.py`:\n\n.. code-block:: python\n\n from sendinblue import urls as sendinblue_urls\n \n urlpatterns = [\n # ...\n url(r'', include(sendinblue_urls)),\n url(r'', include(wagtail_urls)),\n ]\n \n\n\nConfiguration\n*************\n\nGo to the Wagtail administration and in `Settings > SendInBlue`\nenter your API Key.\nYou need a `SendInBlue`_ account and\nyou can retrieve it your `SendInBlue administration `_.\n\nAutomation support\n******************\n\nThere is an optionnal support for Automation.\n\nYou need to add the following at the end of your base Django template:\n\n.. code-block:: html+jinja\n\n {% sendinblue %}\n