Skip to main content

Simple access to LDAP Directory Information Tree.

Project description

===========
LDAP-Hopper
===========

LDAP-Hopper is a simplistic Python binding for accessing an LDAP Directory
Information Tree(DIT).

#!/usr/bin/env python
from ldap_hopper import Cursor

# access the root-node
server = 'localhost'
base_dn = 'dc=example,dc=org'
bind_dn = 'cn=admin,dc=example,dc=org'
bind_pw = 'secret'
root = Cursor(server, base_dn, bind_dn, bind_pw)

# show attributes of root-node
print root.attrs

# get childs of root
print root.childs

# get subtree of root
print root.subs

# Filter uid objects from all subs
print filter(lambda x: x['uid'], root.subs)

# add child node
new_child = {
'objectClass': ['organizationalUnit'],
'ou': ['padawans'],
}
new_node = root.add_child('ou=node_1,dc=example,dc=org', new_child)
new_node = root.add_child('ou=node_2', new_child) # will auto-expand self.dn
print new_node

# search for an object
root.search('ou', new_node['ou']) # no scope defaults to onelevel
root.search('ou', new_node['ou'], ldap.SCOPE_SUBTREE) # default can be overwritten

# delete child node
node_1.delete()


=========
Resources
=========

Source: https://github.com/baccenfutter/ldap_hopper
PyPi : https://pypi.python.org/pypi/LDAP-Hopper/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

LDAP-Hopper-3.0.1.tar.gz (5.1 kB view details)

Uploaded Source

File details

Details for the file LDAP-Hopper-3.0.1.tar.gz.

File metadata

  • Download URL: LDAP-Hopper-3.0.1.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for LDAP-Hopper-3.0.1.tar.gz
Algorithm Hash digest
SHA256 eafdd8862a73a35cd5291c99dbb62b16ce13e62d385e888d97e62bc89539a3e7
MD5 530719682eed845cefc6d599345f5a71
BLAKE2b-256 f852c23660c8349bf0dda41ce96e2c9cd33e8eac4ff0d858d0cd28608e34f99b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page