Re: high level API for ldap object handling

2008-04-23 Thread Michael Ströder
Olivier, please follow-up on the python-ldap-dev (Cc:-ed) list because this is certainly of general interest. Olivier Sessink wrote: > 2008/4/23 Michael Ströder <[EMAIL PROTECTED]>: >> Hmm, I'm not sure I would consider this to be very high-level. If a >> higher-level API is ever add to python-

Re: high level API for ldap object handling

2008-04-23 Thread Michael Ströder
Olivier, Olivier Sessink wrote: > > In my use of python-ldap I've often used a self-developed high level > class for ldap-object handling. > > Adding a new ldap entry for example (ld is a python-ldap object): > > lo = LdapOO.LdapObject() > lo.set_dn_attribs(['cn']) > lo.add_attribute_value('cn

high level API for ldap object handling

2008-04-22 Thread Olivier Sessink
Hi all, I've been using python-ldap a lot, thanks for the great work! In my use of python-ldap I've often used a self-developed high level class for ldap-object handling. Adding a new ldap entry for example (ld is a python-ldap object): lo = LdapOO.LdapObject() lo.set_dn_attribs(['cn']) lo.add