@@ -3,6 +3,7 @@ python-ldap: LDAP client API for Python
33---------------------------------------
44
55What is python-ldap?
6+ ====================
67
78python-ldap provides an object-oriented API to access LDAP
89directory servers from Python programs. Mainly it wraps the
@@ -22,79 +23,85 @@ For module documentation, see:
2223 https://www.python-ldap.org/
2324
2425Quick usage example:
26+ ====================
27+
28+ .. code-block:: python
29+
2530 import ldap
2631 l = ldap.initialize("ldap://my_ldap_server.my_domain")
2732 l.simple_bind_s("","")
2833 l.search_s("o=My Organisation, c=AU", ldap.SCOPE_SUBTREE, "objectclass=*")
2934
30- See directory Demo/ of source distribution package for more
35+ See directory `` Demo/`` of source distribution package for more
3136example code.
3237
3338Author(s) contact and documentation:
39+ ====================================
3440
3541 https://www.python-ldap.org/
3642
37- If you are looking for help, please try the mailing list archives
38- first, then send a question to the mailing list.
39- Be warned that questions will be ignored if they can be
40- trivially answered by referring to the documentation.
43+ If you are looking for help, please try the mailing list archives
44+ first, then send a question to the mailing list.
45+ Be warned that questions will be ignored if they can be
46+ trivially answered by referring to the documentation.
4147
42- If you are interested in helping, please contact the mailing list.
43- If you want new features or upgrades, please check the mailing list
44- archives and then enquire about any progress.
48+ If you are interested in helping, please contact the mailing list.
49+ If you want new features or upgrades, please check the mailing list
50+ archives and then enquire about any progress.
4551
4652Acknowledgements:
53+ =================
4754
48- Thanks to Konstantin Chuguev <Konstantin.Chuguev at dante.org.uk>
49- and Steffen Ries <steffen.ries at sympatico.ca> for working
50- on support for OpenLDAP 2.0.x features.
55+ Thanks to Konstantin Chuguev <Konstantin.Chuguev at dante.org.uk>
56+ and Steffen Ries <steffen.ries at sympatico.ca> for working
57+ on support for OpenLDAP 2.0.x features.
5158
52- Thanks to Michael Stroeder <michael at stroeder.com> for the
53- modules ldif, ldapurl, ldap/schema/*.py, ldap/*.py and ldap/controls/*.py.
59+ Thanks to Michael Stroeder <michael at stroeder.com> for the
60+ modules `` ldif``, `` ldapurl``, `` ldap/schema/*.py``, `` ldap/*.py`` and `` ldap/controls/*.py`` .
5461
55- Thanks to Hans Aschauer <Hans.Aschauer at Physik.uni-muenchen.de>
56- for the C wrapper schema and SASL support.
62+ Thanks to Hans Aschauer <Hans.Aschauer at Physik.uni-muenchen.de>
63+ for the C wrapper schema and SASL support.
5764
58- Thanks to Mauro Cicognini <mcicogni at siosistemi.it> for the
59- WIN32/MSVC6 bits, and the pre-built WIN32 ldap.pyd.
65+ Thanks to Mauro Cicognini <mcicogni at siosistemi.it> for the
66+ WIN32/MSVC6 bits, and the pre-built WIN32 `` ldap.pyd`` .
6067
61- Thanks to Waldemar Osuch <waldemar.osuch at gmail.com> for contributing
62- the new-style docs based on reStructuredText.
68+ Thanks to Waldemar Osuch <waldemar.osuch at gmail.com> for contributing
69+ the new-style docs based on reStructuredText.
6370
64- Thanks to Torsten Kurbad <torsten at tk-webart.de> for the
65- easy_install support.
71+ Thanks to Torsten Kurbad <torsten at tk-webart.de> for the
72+ easy_install support.
6673
67- Thanks to James Andrewartha <jamesa at daa.com.au> for
68- significant contribution to Doc/*.tex.
74+ Thanks to James Andrewartha <jamesa at daa.com.au> for
75+ significant contribution to `` Doc/*.tex`` .
6976
70- Thanks to Rich Megginson <rmeggins at redhat.com> for extending
71- support for LDAPv3 controls and adding support for LDAPv3 extended
72- operations.
77+ Thanks to Rich Megginson <rmeggins at redhat.com> for extending
78+ support for LDAPv3 controls and adding support for LDAPv3 extended
79+ operations.
7380
74- Thanks to Peter Gietz, DAASI for funding some control modules.
81+ Thanks to Peter Gietz, DAASI for funding some control modules.
7582
76- Thanks to Chris Mikkelson for various fixes and ldap.syncrepl.
83+ Thanks to Chris Mikkelson for various fixes and ldap.syncrepl.
7784
78- These very kind people have supplied patches or suggested changes:
85+ These very kind people have supplied patches or suggested changes:
7986
80- Federico Di Gregorio <fog at mixadlive.com>
81- John Benninghoff <johnb at netscape.com>
82- Donn Cave <donn at u.washington.edu>
83- Jason Gunthorpe <jgg at debian.org>
84- gurney_j <gurney_j at 4j.lane.edu>
85- Eric S. Johansson <esj at harvee.billerica.ma.us>
86- David Margrave <davidma at premier1.net>
87- Uche Ogbuji <uche.ogbuji at fourthought.com>
88- Neale Pickett <neale at lanl.gov>
89- Blake Weston <weston at platinum1.cambridge.scr.slb.com>
90- Wido Depping <wido.depping at gmail.com>
91- Deepak Giridharagopal <deepak at arlut.utexas.edu>
92- Ingo Steuwer <steuwer at univention.de>
93- Andreas Hasenack <ahasenack at terra.com.br>
94- Matej Vela <vela at debian.org>
87+ * Federico Di Gregorio <fog at mixadlive.com>
88+ * John Benninghoff <johnb at netscape.com>
89+ * Donn Cave <donn at u.washington.edu>
90+ * Jason Gunthorpe <jgg at debian.org>
91+ * gurney_j <gurney_j at 4j.lane.edu>
92+ * Eric S. Johansson <esj at harvee.billerica.ma.us>
93+ * David Margrave <davidma at premier1.net>
94+ * Uche Ogbuji <uche.ogbuji at fourthought.com>
95+ * Neale Pickett <neale at lanl.gov>
96+ * Blake Weston <weston at platinum1.cambridge.scr.slb.com>
97+ * Wido Depping <wido.depping at gmail.com>
98+ * Deepak Giridharagopal <deepak at arlut.utexas.edu>
99+ * Ingo Steuwer <steuwer at univention.de>
100+ * Andreas Hasenack <ahasenack at terra.com.br>
101+ * Matej Vela <vela at debian.org>
95102
96- Thanks to all the guys on the python-ldap mailing list for
97- their contributions and input into this package.
103+ Thanks to all the guys on the python-ldap mailing list for
104+ their contributions and input into this package.
98105
99106 Thanks! We may have missed someone: please mail us if we have omitted
100107 your name.
0 commit comments