36. Unix Specific Services¶
https://docs.python.org/2/library/unix.html
The modules described in this chapter provide interfaces to features that are unique to the Unix operating system, or in some cases to some or many variants of it. Here’s an overview:
- 1.
posix
— The most common POSIX system calls - 2.
pwd
— The password database - 3.
spwd
— The shadow password database - 4.
grp
— The group database - 5.
crypt
— Function to check Unix passwords - 6. (deprecated)
dl
— Call C functions in shared objects - 7.
termios
— POSIX style tty control - 8.
tty
— Terminal control functions - 9.
pty
— Pseudo-terminal utilities - 10.
fcntl
— Thefcntl
andioctl
system calls - 11.
pipes
— Interface to shell pipelines - 12.
posixfile
— File-like objects with locking support - 13.
resource
— Resource usage information - 14.
nis
— Interface to Sun’s NIS (Yellow Pages) - 15.
syslog
— Unix syslog library routines - 16. (deprecated)
commands
— Utilities for running commands