Metadata-Version: 2.1
Name: ldaphelper
Version: 0.2.0
Summary: Wanna make ldap handling a little easier
Home-page: https://github.com/christian-hawk/ldaphelper
Author: Christian Eland
Author-email: eland.christian@gmail.com
License: UNKNOWN
Description: # ldaphelper
        [![Build Status](https://travis-ci.org/christian-hawk/ldaphelper.svg?branch=master)](https://travis-ci.org/christian-hawk/ldaphelper) [![codecov](https://codecov.io/gh/christian-hawk/ldaphelper/branch/master/graph/badge.svg)](https://codecov.io/gh/christian-hawk/ldaphelper)
        
        
        Wanna try to make it a little easier
        
        ```python
        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)
        
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
