Post-Human Interface
 
 
 
Go to file
crudo da40fc6c20 Add vim and emacs swap files to .gitignore 2017-12-17 10:30:28 +01:00
openldap Import 2017-12-16 23:17:01 +01:00
src Import 2017-12-16 23:17:01 +01:00
test Import 2017-12-16 23:17:01 +01:00
.gitignore Add vim and emacs swap files to .gitignore 2017-12-17 10:30:28 +01:00
README.md Import 2017-12-16 23:17:01 +01:00
config.yml Import 2017-12-16 23:17:01 +01:00
setup.py Import 2017-12-16 23:17:01 +01:00

README.md

Phi

Post-Human Interface.

APIs for the Unit hacklab.

Installation

Requirements:

  • Python >= 3.4

Create a new virtualenv and run pip install . inside of it.

LDAP client example

>>> from phi.config import get_config
>>> config_file, config = get_config()
>>> ldap_config = config['ldap']
>>>
>>> from phi.ldap.client import Client
>>> ldap_client = Client(**ldap_config)
>>>
>>> from phi.ldap.connection import open_connection
>>> open_connection(ldap_client.connection)
>>>
>>> from phi.ldap.commands import whoami
>>> whoami(client)