Metadata-Version: 1.0
Name: ldapdict
Version: 1.2
Summary: Python package for connecting to LDAP, returning results as dictionary like classes. Results are cached.
Home-page: UNKNOWN
Author: Pieter van Tongeren
Author-email: pkvt.python@gmail.com
License: UNKNOWN
Description: Contains two main modules ,which work together:
        ldapdict and ldapcache
        
        --> ldapdict:
        
        This module ldapdict.py defines classes which wraps an LDAP object in a python dictionary.
        
        The following classes are defined:
        GenericLdapDict      : Readonly class for OpenLDAP Directory, should work with most Directories
        GenericLdapDictWrite : Read / write class for OpenLDAP Directory, should work with most Directories
        ADSLdapDict          : Readonly class for Active Directory
        ADSLdapDictWrite     : Read / write class for Active Directory
        
        For adapting to other Directories like eDirectory the Generic* classes can be easily subclassed.
        See ADSLdapDict for example.
        
        
        --> ldapcache:
        
        Module with shared caching object used by GenericLdapdict objects
        caches connection data and GenericLdapdict objects:
        LdapCache,
        LdapCacheWrite,
        ADSLdapCache,
        ADSLdapCacheWrite
        
        
        Both module are tested with OpenLDAP and ADS.
        
        Documentation and examples can be found in the modules.
Platform: any
