Python interface to the POSIX getent family of commands
Project description
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'}
Bugs
Please use the bug tracker at GitHub for bugs or feature requests.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
getent-0.2.tar.gz
(10.2 kB
view details)
File details
Details for the file getent-0.2.tar.gz
.
File metadata
- Download URL: getent-0.2.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cde348284c9840261cfae81c03775d7e25fd0f88dc6f83d061ebc7e5b8e2c2de |
|
MD5 | b777f87ec6b19eb38679e9f602c0f062 |
|
BLAKE2b-256 | e4d3ad4388ca60de7b220d89df32c96a8d4e7b96d53ccf02ad390d7255220ebd |