🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

django-ldap-sync

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-ldap-sync

A Django application for synchronizing LDAP users and groups

0.5.0
PyPI
Maintainers
1

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

Keywords

django

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts