Skip to main content

Easily perform LDAP queries with more than 1000 results

Project description

Summary

ldap_paged_search is a python library to easily perform LDAP queries with more than 1000 results, or to break down queries into smaller result sets to reduce server loads.

Many LDAP servers, such as active directory, will not return more than 1000 results unless paged requests are used. The existing python ldap library does support pageing, but requires some not very intuitive coding to perform it. This library is simply a wrapper to make paged searches easy.

Its interface is also slightly easier to perform queries than the LDAP library it wraps.

Requirements

  • Tested on python 2.8

  • Default python library includes ldap library

Installation

Via pip or easy_install

$ sudo pip install ldap_paged_search   # If you prefer PIP

$ sudo easy_install ldap_paged_search  # If you prefer easy_install

Manual installation

$ git clone https://github.com/neoCrimeLabs/python-ldap_paged_search.git
$ cd python-ldap_paged_search
$ sudo python setup.py install

Usage

Initial setup

from ldap_paged_search import LdapPagedSearch

# Required values
url             = 'ldap://your.ldap.server'
username        = 'username'      # for anything but active directory
username        = 'domain\\user'  # for active directory
password        = 'yourPassword'

baseDN          = 'dc=company,dc=com'
searchFilter    = '(&(objectCategory=user))'

# Optional values
maxPages        = 0     # 0 = everything
maxPages        = 10    # Return first 10 pages only

attributes      = ['*']                         # Return all fields
attributes      = ['FieldName', 'AnotherField'] # Return specific fields only


pageSize        = 1000  # How many records per page
                        # Usual max is 1000; check your LDAP server docs

Defining a callback method

# Using a callback method to process results uses less memory on large queries
# Not using a callback search() will return all results as a single list

def myCallback(dn,record):
    print dn, record

Query using ‘with’

# maxPages, pageSize, attributes, and callback are all OPTIONAL

with LdapPagedSearch(url, username, password, maxPages=2, pageSize=2 ) as l:
    results = l.search(baseDN, searchFilter, attributes = attributes, callback = myCallback)

Alternative query method

# maxPages, pageSize, attributes, and callback are all OPTIONAL

l = LdapPagedSearch(url, username, password, maxPages=2, pageSize=2 )
results = l.search(baseDN, searchFilter, attributes = attributes, callback = myCallback)

Results format

# If you don't set a callback, your results will be returned as follows

[
    ('DistinctName1',
        {  'FieldName':    ['value1', 'value2'],
           'AnotherField': ['value'], }),
    ('DistinctName2',
        {  'FieldName':    ['value1', 'value2'],
           'AnotherField': ['value'], }),
    ...
]

Conditions of Use

I wrote this library for my own use, but realized others may find it useful as there were many forum topics describing this problem.

Unfortunately I cannot guarentee any active support, but will do my best as time permits. That said, I’ll happily accept push requests with suitable changes that address the general audience of this library.

Put simply, use this at your own risk. If it works, great! If not, I may not be able to help you. If you fix anything, however, please push it back and I’ll likely accept it. :-)

Also, if you use this library in your package, tool, or comercial software, let me know, and I’ll list it here!

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_paged_search-0.4.2.tar.gz (14.2 kB view details)

Uploaded Source

File details

Details for the file ldap_paged_search-0.4.2.tar.gz.

File metadata

File hashes

Hashes for ldap_paged_search-0.4.2.tar.gz
Algorithm Hash digest
SHA256 1c1ff1150f4ae3efd5a2784c53661278acf4d7cc00e127199db8c37f98d818ca
MD5 15c15ed08ed0a0b9d162597b9991301b
BLAKE2b-256 daf2e81043a74d4d59387297340eecc5cdb401a7b51990355f46d0a1d1033c0e

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