Skip to main content

Async ldap library sorta based off ldap3

Project description

https://img.shields.io/pypi/v/aioldap.svg https://img.shields.io/travis/terrycain/aioldap.svg Code coverage Documentation Status Updates

Not entirely ready, literally just started. Might shuffle things around a bit etc…

This was initially going to be a complete “from scratch” LDAP library for asyncio. Having used ldap3 for quite a while I thought: wouldn’t it be nice to have something ldap3-like but using normal asyncio. So I wrote this library which is sort of based around ldap3, it uses ldap3’s encoding and decoding functions and I just dealt with the actual packet handoff. As as for why I made this, well because I can… and because I was bored.

I wouldn’t quite call this production ready yet, and it could do with a bit of cleaning up but if anyone actually finds this library useful, raise an issue with anything you have and I’ll be happy to help out.

In its current form it only supports Python3.6 as I have an async generator in the code, am looking at making it Python3.5 compatible too.

Documentation

Eventually will be on readthedocs

Example

Simple example of using aioboto3 to put items into a dynamodb table

conn = aioldap.LDAPConnection()
await conn.bind(
    bind_dn=ldap_params['user'],
    bind_pw=ldap_params['password'],
    host=ldap_params['host'],
    port=ldap_params['port']
)

dn = user_entry('modify', ldap_params['test_ou1'])
await conn.add(
    dn=dn,
    object_class='inetOrgPerson',
    attributes={'description': 'some desc', 'cn': 'some_user', 'sn': 'some user', 'employeeType': ['type1', 'type2']}
)

await conn.modify(
    dn=dn,
    changes={
        'sn': [('MODIFY_REPLACE', 'some other user')],
        'employeeType': [
            ('MODIFY_ADD', 'type3'),
            ('MODIFY_DELETE', 'type1'),
        ]
    }
)

# Now search for user
async for user in conn.search(dn, search_filter='(uid=*)', search_scope='BASE', attributes='*'):
    assert user['dn'] == dn

Credits

All of the credit goes to @cannatag who literally had done all of the hard work for me.

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

aioldap-0.4.3.tar.gz (25.6 kB view details)

Uploaded Source

File details

Details for the file aioldap-0.4.3.tar.gz.

File metadata

  • Download URL: aioldap-0.4.3.tar.gz
  • Upload date:
  • Size: 25.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.5.0.1 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.8.5

File hashes

Hashes for aioldap-0.4.3.tar.gz
Algorithm Hash digest
SHA256 cc82a6234c67f22eb31c430f8c4b160aa28ed03157d0ffd5a92151d0b5f124a0
MD5 ffff019472e8120d3edc47016ae7d9d6
BLAKE2b-256 e20e45d1dfd9555cae84aca3957ebf53549ca931c091fcd0af9785d9825726cc

See more details on using hashes here.

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