Metadata-Version: 2.0
Name: pyramid-ldap3
Version: 0.3
Summary: pyramid_ldap3
Home-page: http://pylonsproject.org
Author: Chris McDonough, Christoph Zwerschke
Author-email: pylons-discuss@groups.google.com
License: BSD-derived (http://www.repoze.org/LICENSE.txt)
Keywords: web pyramid pylons ldap auth authentication
Platform: UNKNOWN
Classifier: Framework :: Pylons
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 4 - Beta
Classifier: License :: Repoze Public License
Requires-Dist: ldap3 (>=2.0)
Requires-Dist: pyramid (>=1.3)
Provides-Extra: docs
Requires-Dist: Sphinx; extra == 'docs'
Provides-Extra: sampleapp
Requires-Dist: pyramid-debugtoolbar; extra == 'sampleapp'
Requires-Dist: waitress; extra == 'sampleapp'
Provides-Extra: testing
Requires-Dist: coverage; extra == 'testing'
Requires-Dist: nose; extra == 'testing'

``pyramid_ldap3``
=================

``pyramid_ldap3`` provides LDAP authentication services for your Pyramid
application.  It is a fork of the ``pyramid_ldap`` package with the goal
of eliminating the dependency on ``python-ldap`` and ``ldappool``,
replacing it with a dependency on ``ldap3``, which is a pure Python package
that supports both Python 2 and Python 3.

See the documentation at
http://pyramid-ldap3.readthedocs.org/en/latest/
for more information.



0.3
---

- Adaptations to changes in ldap3 version 2, including changed constant names.
- This version is intended to support the newer ldap3 versions >= 2.0 only.


0.2.5
-----

- Explicitly requires ldap3 < version 2.0 for compatibility reasons.
- This version is intended to support the older ldap3 versions < 2.0 only.


0.2.4
-----

- The pool lifetime is now configurable



0.2.3
-----

- Account for renaming of python3-ldap to ldap3
- Proper unbinding of Connections
- Do not fill cache if caching has been disabled
- Release as source package and universal wheel


0.2.2
------

- Support server pools
- Ignore results without a dn instead of raising an error
- Escape special characters when querying for groups
- Do not cache invalid responses
- Added documentation on recursive group queries


0.2.1
------

- Use implicit binding and proper unbinding of connections.


0.2
---

- Made return values of pyramid_ldap3 compatible with pyramid_ldap.


0.1
---

-  Initial version


