Metadata-Version: 2.4
Name: lldap-py
Version: 0.1.0
Summary: Python tool for managing LLDAP servers
Home-page: https://github.com/luca2618/lldap-py
Author: Lucas Sylvester
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28.0
Requires-Dist: toml>=0.10.2
Requires-Dist: click>=8.0.0
Requires-Dist: ldap3>=2.9.0
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# lldap-py

Python client library for managing LLDAP servers  [lldap/lldap](https://github.com/lldap/lldap)

## Usage

This package provides a Python interface to interact with LLDAP servers for user and group management. The idea is that it would be used in an onboarding/offboarding automation script and make similar automation tasks easier.

## Requirements
- Python 3.8+
- requests
- ldap3
- toml
- click

## TODO
- Maybe improve error handling and passing of graphql errors to the user.
- Add more examples and documentation.
- Check coverage of tests
- Add support for direct LDAP operations alongside GraphQL(Mainly for password management, to be used for initial random password generation).
- Test against https (and ldaps connections for above point).
- Add support for costum user and group attributes.

## Credit
This project is heavely inspired by and uses alot of code from [Zepmann/lldap-cli](https://github.com/Zepmann/lldap-cli) and [JaidenW/LLDAP-Discord](https://github.com/JaidenW/LLDAP-Discord)


## License

MIT
