Metadata-Version: 2.0
Name: django-ldap-sync
Version: 0.4.2
Summary: A Django application for synchronizing LDAP users and groups
Home-page: https://github.com/jbittel/django-ldap-sync
Author: Jason Bittel
Author-email: jason.bittel@gmail.com
License: BSD
Download-URL: https://github.com/jbittel/django-ldap-sync
Keywords: django,ldap,active directory,synchronize,sync
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Programming Language :: Python
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Systems Administration :: Authentication/Directory
Requires-Dist: python-ldap (>=2.4.13)

django-ldap-sync
================

django-ldap-sync provides a Django management command that synchronizes LDAP
users and groups from an authoritative server. It performs a one-way
synchronization that creates and/or updates the local Django users and groups.

This synchronization is performed each time the management command is run and
can be fired manually on demand, via an automatic cron script or as a periodic
`Celery`_ task.

Quickstart
----------

#. Install the application::

      pip install django-ldap-sync

#. Append it to the installed apps::

      INSTALLED_APPS = (
          # ...
          'ldap_sync',
      )

#. Configure the required `settings`_.

#. Run the synchronization management command::

      manage.py syncldap

For more information on installation and configuration, see the included
documentation or read the documentation online at
`django-ldap-sync.readthedocs.org`_.

.. _Celery: http://www.celeryproject.org
.. _settings: http://django-ldap-sync.readthedocs.org/en/latest/settings.html
.. _django-ldap-sync.readthedocs.org: http://django-ldap-sync.readthedocs.org


