Metadata-Version: 2.1
Name: molo.servicedirectory
Version: 11.0.0
Summary: This is the molo.servicedirectory project.
Home-page: https://github.com/praekeltfoundation/molo.servicedirectory
Author: Praekelt Foundation
Author-email: dev@praekeltfoundation.org
License: BSD
Keywords: praekelt,mobi,web,django,molo,servicedirectory
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: molo.core (>=11.0.0)
Requires-Dist: six (<2,>=1)

molo.servicedirectory
=============================

A molo module for calling service directory.

The following keys should be set in the django projects settings file (the values are only examples):

SERVICE_DIRECTORY_API_BASE_URL = 'http://0.0.0.0:8000/api/'

SERVICE_DIRECTORY_API_USERNAME = 'root'
SERVICE_DIRECTORY_API_PASSWORD = 'admin'

GOOGLE_PLACES_API_SERVER_KEY = 'thisisnotarealkeyreplaceitwithyourown'

ideally things like the passwords and api keys should be kept out of the repository and possibly included in the
settings through importing from a secrets file that is ignored by the version control.

eg in settings.py:

try:
    from secrets import *
except ImportError:
    raise


.. image:: https://img.shields.io/travis/praekelt/molo.servicedirectory.svg
        :target: https://travis-ci.org/praekelt/molo.servicedirectory

.. image:: https://img.shields.io/pypi/v/molo.servicedirectory.svg
        :target: https://pypi.python.org/pypi/molo.servicedirectory

.. image:: https://coveralls.io/repos/praekelt/molo.servicedirectory/badge.png?branch=develop
    :target: https://coveralls.io/r/praekelt/molo.servicedirectory?branch=develop
    :alt: Code Coverage

.. image:: https://readthedocs.org/projects/molo.servicedirectory/badge/?version=latest
    :target: https://molo.servicedirectory.readthedocs.org
    :alt: molo.servicedirectory Docs




