getent 0.1
Python interface to the POSIX getent family of commands
Python interface to the POSIX getent family of commands (getpwent, getgrent, getnetent, etc.)
Usage
Here a few examples.
Load the interface:
>>> import getent
Doing a passwd lookup:
>>> print dict(getent.passwd('root'))
{'dir': '/root',
'gecos': 'root',
'gid': 0,
'name': 'root',
'password': 'x',
'shell': '/bin/bash',
'uid': 0}
Doing a group lookup:
>>> print dict(getent.group('root'))
{'gid': 0, 'members': [], 'name': 'root', 'password': 'x'}
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| getent-0.1.tar.gz (md5) | Source | 2011-12-09 | 4KB | 254 | |
- Author: Wijnand Modderman-Lenstra
- Keywords: getent group passwd shadow network alias host
- License: MIT
- Package Index Owner: tehmaze
- DOAP record: getent-0.1.xml
