ldapp3r

Model Library for ldap3 - Simple Data models with ldap3


Keywords
ldap3, model
License
Other
Install
pip install ldapp3r==0.1.2

Documentation

Ldapper

Model Interface for ldap3 pyhon module

Example Usage

from ldapper import LdapperInterface as Ldapper
conn = Connection(...)

User = Ldapper.define("ou=People,dc=example,dc=com", "uid=%s")

user = User.using(conn).get("user1")

activeUsers = User.using(conn).find(active='TRUE')