Provides basic authentication using the ldap3 library
Project description
Basic LDAP3
Basic LDAP is a small package that uses the ldap3 library. It can be used to authenticate a user against an LDAP server and can check whether the users is in a specific group. In addition it is possible to get user attributes if the authentication is successful.
Basic example
Import basicldap and define the server
from basicldap import Ldap LDAP_HOST = 'ldap.server.com' LDAP_BASE_DN = 'DC=example,DC=com' conn = Ldap(LDAP_HOST, LDAP_BASE_DN) # Using SSL ssl = {"port": 636, "use_ssl": True} conn = Ldap(LDAP_HOST, LDAP_BASE_DN, ldap3_args=ssl)
Authenticate the user
conn.authenticate(user_name, password)
Get user attributes (requires successful authentication)
# To get all attributes conn.get_attributes() # To get specific attributes conn.get_attributes(['mail', 'cn])
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
basicldap3-0.1.2.tar.gz
(2.7 kB
view hashes)
Built Distribution
Close
Hashes for basicldap3-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc846a2fbe9e19ab9d81869033f9e827016f59c77d3f52a4881aee1a66b5edd1 |
|
MD5 | 888cff9aef5608568f3aa8140417b15d |
|
BLAKE2-256 | c36624aca6f3ee5895bc77d67833e4f4c589d0e8b5987d288c1e08c3f3cf0872 |