Skip to main content

A Pure-Python Twisted library for LDAP

Project description

Travis (.com) Codecov Read the Docs GitHub Actions PyPI

Ldaptor is a pure-Python library that implements:

  • LDAP client logic

  • separately-accessible LDAP and BER protocol message generation/parsing

  • ASCII-format LDAP filter generation and parsing

  • LDIF format data generation

  • Samba password changing logic

Also included is a set of LDAP utilities for use from the command line.

Verbose documentation can be found on ReadTheDocs.

Quick Usage Example

from twisted.internet import reactor, defer
from ldaptor.protocols.ldap import ldapclient, ldapsyntax, ldapconnector

@defer.inlineCallbacks
def example():
    # The following arguments may be also specified as unicode strings
    # but it is recommended to use byte strings for ldaptor objects
    serverip = b'192.168.128.21'
    basedn = b'dc=example,dc=com'
    binddn = b'bjensen@example.com'
    bindpw = b'secret'
    query = b'(cn=Babs*)'
    c = ldapconnector.LDAPClientCreator(reactor, ldapclient.LDAPClient)
    overrides = {basedn: (serverip, 389)}
    client = yield c.connect(basedn, overrides=overrides)
    yield client.bind(binddn, bindpw)
    o = ldapsyntax.LDAPEntry(client, basedn)
    results = yield o.search(filterText=query)
    for entry in results:
        print(entry.getLDIF())

if __name__ == '__main__':
    df = example()
    df.addErrback(lambda err: err.printTraceback())
    df.addCallback(lambda _: reactor.stop())
    reactor.run()

Installation

Ldaptor can be installed using the standard command line method:

python setup.py install

or using pip from PyPI:

pip install ldaptor

Linux distributions may also have ready packaged versions of Ldaptor and Twisted. Debian and Ubuntu have quality Ldaptor packages that can be installed e.g., by:

apt-get install python-ldaptor

To run the LDAP server (bind port 38942) from a repo checkout with the project installed:

twistd -n --pidfile=ldapserver.pid --logfile=ldapserver.log \
    -y test-ldapserver.tac

Dependencies:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ldaptor-20.0.0.tar.gz (302.9 kB view details)

Uploaded Source

Built Distribution

ldaptor-20.0.0-py2.py3-none-any.whl (182.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file ldaptor-20.0.0.tar.gz.

File metadata

  • Download URL: ldaptor-20.0.0.tar.gz
  • Upload date:
  • Size: 302.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for ldaptor-20.0.0.tar.gz
Algorithm Hash digest
SHA256 cc17f240388cf0d229836b519bcbfa0f5bbc92e7c9ce216096bb44956a28be8e
MD5 9ef1fc56f8d1b34aedeb912cf3d16b9c
BLAKE2b-256 ddf81c923f34717ddde4e11172aab62dbc9c6fd3ce52396a212b5746cb3d0f64

See more details on using hashes here.

Provenance

File details

Details for the file ldaptor-20.0.0-py2.py3-none-any.whl.

File metadata

  • Download URL: ldaptor-20.0.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 182.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6

File hashes

Hashes for ldaptor-20.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6a54ef248b3a7ba853850d835bf2e7faabc3ef71f1ea27b210d87b972c2e86a1
MD5 af8bf5968b80adf0fad6248609ed9a10
BLAKE2b-256 4cbccc4b92af239a2ff40c4acb3bbf5ce73778fbcdc749bed9a284aecd701adb

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page