A simple connector pool for python-ldap. Current version 3.0.0 (released 2021). Provides a pool of LDAP connections to reuse, reducing overhead of creating new connections. Stable release cadence, maintenance mode.
pip install ldappoolNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Create a pool and get a connection. Connection object is a python-ldap connection with reset() method to return to pool.
Always call conn.reset() or use context manager (with manager.connection() as conn:).
Use 'from ldappool import ConnectionManager' instead.
Set strategy='round_robin' instead of round_robin=True.