Client side result pagination in python-ldap

Posted on Tue 25 October 2011 in Python • Tagged with code, ldap, python, python-ldapLeave a comment

Sometime I must fighting with monkeys-configured LDAP servers.
This time DIT does not support RFC2696 (Paged Results for LDAP query), the data tree contains over 90000 entries.
Thanks to ldap.resiter is possible to implement client side pagination in ldap scripts.
These simple lines of code explain how to:

import ...
Continue reading