├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.rst ├── flask_ldapconn ├── __init__.py ├── attribute.py ├── entry.py └── query.py ├── requirements.txt ├── setup.py └── test_flask_ldapconn.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/README.rst -------------------------------------------------------------------------------- /flask_ldapconn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/flask_ldapconn/__init__.py -------------------------------------------------------------------------------- /flask_ldapconn/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/flask_ldapconn/attribute.py -------------------------------------------------------------------------------- /flask_ldapconn/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/flask_ldapconn/entry.py -------------------------------------------------------------------------------- /flask_ldapconn/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/flask_ldapconn/query.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask>=0.12 2 | ldap3>=2.3 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/setup.py -------------------------------------------------------------------------------- /test_flask_ldapconn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rroemhild/flask-ldapconn/HEAD/test_flask_ldapconn.py --------------------------------------------------------------------------------