mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
7 lines
144 B
Python
7 lines
144 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import ldap
|
||
|
|
||
|
conn = ldap.initialize('ldap://localhost:389')
|
||
|
conn.simple_bind_s("cn=admin,dc=yunohost,dc=org","secret")
|