🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

ldaphelper

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldaphelper

Wanna make ldap handling a little easier

0.2.0
Maintainers
1

ldaphelper

Build Status codecov

Wanna try to make it a little easier

from ldaphelper import LdapConnection(), User

user = 'cn=directory manager'
password = 'amazingpassword'

con = LdapConnection(user,password)
ldp_user = User(con)

user = {
    "uuid" : "johndoe",
    "password" : "strongpassword,
    "mail" : "john.doe@ldaphelper.org",
    "givenName" : "John",
    "sn" : "Doe"
}

added_user = ldp_user.add_user(user)

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts