ASPN ActiveState Programmer Network
  ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups | Web Services
SEARCH

Reference
ActivePython 2.5
Python Documentation
Library Reference
16. Unix Specific Services
16.1 posix -- The most common POSIX system calls
16.2 pwd -- The password database
16.3 spwd -- The shadow password database
16.4 grp -- The group database
16.5 crypt -- Function to check Unix passwords
16.6 dl -- Call C functions in shared objects
16.7 termios -- POSIX style tty control
16.8 tty -- Terminal control functions
16.9 pty -- Pseudo-terminal utilities
16.10 fcntl -- The fcntl() and ioctl() system calls
16.11 pipes -- Interface to shell pipelines
16.12 posixfile -- File-like objects with locking support
16.13 resource -- Resource usage information
16.14 nis -- Interface to Sun's NIS (Yellow Pages)
16.15 syslog -- Unix syslog library routines
16.16 commands -- Utilities for running commands

MyASPN >> Reference >> ActivePython 2.5 >> Python Documentation >> Library Reference >> 16. Unix Specific Services
ActivePython 2.5 documentation

16.4 grp -- The group database

Availability: Unix.

This module provides access to the Unix group database. It is available on all Unix versions.

Group database entries are reported as a tuple-like object, whose attributes correspond to the members of the group structure (Attribute field below, see <pwd.h>):

Index Attribute Meaning
0 gr_name the name of the group
1 gr_passwd the (encrypted) group password; often empty
2 gr_gid the numerical group ID
3 gr_mem all the group member's user names

The gid is an integer, name and password are strings, and the member list is a list of strings. (Note that most users are not explicitly listed as members of the group they are in according to the password database. Check both databases to get complete membership information.)

It defines the following items:

getgrgid( gid)
Return the group database entry for the given numeric group ID. KeyError is raised if the entry asked for cannot be found.

getgrnam( name)
Return the group database entry for the given group name. KeyError is raised if the entry asked for cannot be found.

getgrall( )
Return a list of all available group entries, in arbitrary order.

See Also:

Module pwd:
An interface to the user database, similar to this.
Module spwd:
An interface to the shadow password database, similar to this.
See About this document... for information on suggesting changes.

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState 2004 All rights reserved