RETIRED, further work has moved to Debian project infrastructure
Go to file
stroeder 4248683934 ldap.controls: Truly optional import of PyAsn1Error exception 2013-05-29 20:27:32 +00:00
Build Contributed by Mauro Cicognini via e-mail 2005-01-25 18:54:46 +00:00
Demo White-space cleaning 2013-05-27 08:05:46 +00:00
Doc Fixed class names 2012-08-09 07:19:30 +00:00
Lib ldap.controls: Truly optional import of PyAsn1Error exception 2013-05-29 20:27:32 +00:00
Modules Fixed memory leak reported by David Malcolm 2012-01-11 10:04:48 +00:00
Tests ldap.modlist.modifyModlist(): New key-word argument 2011-06-06 13:07:38 +00:00
.cvsignore *** empty log message *** 2002-06-30 21:07:56 +00:00
INSTALL Updated/completed dependencies 2011-04-02 22:30:55 +00:00
MANIFEST.in Added PKG-INFO 2009-10-31 20:00:40 +00:00
PKG-INFO Empty file must be there 2011-07-21 18:29:14 +00:00
README Abandon old mailing list name 2011-10-26 18:43:21 +00:00
TODO Another note about LDAPError instances 2012-01-25 19:24:40 +00:00
setup.cfg Hopefully smoother... 2012-02-21 17:17:16 +00:00
setup.py Added ldap.syncrepl 2011-10-26 19:42:25 +00:00

README

---------------------------------------
python-ldap: LDAP client API for Python
---------------------------------------

What is python-ldap?

python-ldap provides an object-oriented API to access LDAP
directory servers from Python programs. Mainly it wraps the
OpenLDAP client libs for that purpose.

Additionally the package contains modules for other LDAP-related
stuff (e.g. processing LDIF, LDAPURLs, LDAPv3 sub-schema, etc.).

Not included: Direct BER support

See INSTALL for version compability

See TODO for planned features. Contributors welcome.

For module documentation, see:

	http://www.python-ldap.org/

Quick usage example:
    import ldap
    l = ldap.initialize("ldap://my_ldap_server.my_domain")
    l.simple_bind_s("","")
    l.search_s("o=My Organisation, c=AU", ldap.SCOPE_SUBTREE, "objectclass=*")

See directory Demo/ of source distribution package for more
example code.

Author(s) contact and documentation:

   http://www.python-ldap.org/

   If you are looking for help, please try the mailing list archives
   first, then send a question to the mailing list.
   Be warned that questions will be ignored if they can be
   trivially answered by referring to the documentation.

   If you are interested in helping, please contact the mailing list.
   If you want new features or upgrades, please check the mailing list
   archives and then enquire about any progress.

Acknowledgements:

   Thanks to Konstantin Chuguev <Konstantin.Chuguev at dante.org.uk>
   and Steffen Ries <steffen.ries at sympatico.ca> for working
   on support for OpenLDAP 2.0.x features.

   Thanks to Michael Stroeder <michael at stroeder.com> for the
   modules ldif, ldapurl, ldap/schema/*.py, ldap/*.py and ldap/controls/*.py.

   Thanks to Hans Aschauer <Hans.Aschauer at Physik.uni-muenchen.de>
   for the C wrapper schema and SASL support.

   Thanks to Mauro Cicognini <mcicogni at siosistemi.it> for the
   WIN32/MSVC6 bits, and the pre-built WIN32 ldap.pyd.

   Thanks to Waldemar Osuch <waldemar.osuch at gmail.com> for contributing
   the new-style docs based on reStructuredText.

   Thanks to Torsten Kurbad <torsten at tk-webart.de> for the
   easy_install support.

   Thanks to James Andrewartha <jamesa at daa.com.au> for
   significant contribution to Doc/*.tex.

   Thanks to Rich Megginson <rmeggins at redhat.com> for extending
   support for LDAPv3 controls and adding support for LDAPv3 extended
   operations.

   Thanks to Peter Gietz, DAASI for funding some control modules.

   Thanks to Chris Mikkelson for various fixes and ldap.syncrepl.

   These very kind people have supplied patches or suggested changes:

       Federico Di Gregorio <fog at mixadlive.com>
       John Benninghoff <johnb at netscape.com>
       Donn Cave <donn at u.washington.edu>
       Jason Gunthorpe <jgg at debian.org>
       gurney_j <gurney_j at 4j.lane.edu>
       Eric S. Johansson <esj at harvee.billerica.ma.us>
       David Margrave <davidma at premier1.net>
       Uche Ogbuji <uche.ogbuji at fourthought.com>
       Neale Pickett <neale at lanl.gov>
       Blake Weston <weston at platinum1.cambridge.scr.slb.com>
       Wido Depping <wido.depping at gmail.com>
       Deepak Giridharagopal <deepak at arlut.utexas.edu>
       Ingo Steuwer <steuwer at univention.de>
       Andreas Hasenack <ahasenack at terra.com.br>
       Matej Vela <vela at debian.org>

   Thanks to all the guys on the python-ldap mailing list for
   their contributions and input into this package.

   Thanks! We may have missed someone: please mail us if we have omitted
   your name.

$Id: README,v 1.25 2011/10/26 18:43:21 stroeder Exp $