mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
6 lines
144 B
Python
6 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")
|