%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 188.40.95.74 / Your IP : 216.73.216.205 Web Server : Apache System : Linux cp01.striminghost.net 3.10.0-1160.119.1.el7.tuxcare.els13.x86_64 #1 SMP Fri Nov 22 06:29:45 UTC 2024 x86_64 User : vlasotin ( 1054) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/python-docs-2.7.5/html/_sources/library/ |
Upload File : |
:mod:`nis` --- Interface to Sun's NIS (Yellow Pages) ==================================================== .. module:: nis :platform: Unix :synopsis: Interface to Sun's NIS (Yellow Pages) library. .. moduleauthor:: Fred Gansevles <Fred.Gansevles@cs.utwente.nl> .. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il> The :mod:`nis` module gives a thin wrapper around the NIS library, useful for central administration of several hosts. Because NIS exists only on Unix systems, this module is only available for Unix. The :mod:`nis` module defines the following functions: .. function:: match(key, mapname[, domain=default_domain]) Return the match for *key* in map *mapname*, or raise an error (:exc:`nis.error`) if there is none. Both should be strings, *key* is 8-bit clean. Return value is an arbitrary array of bytes (may contain ``NULL`` and other joys). Note that *mapname* is first checked if it is an alias to another name. .. versionchanged:: 2.5 The *domain* argument allows to override the NIS domain used for the lookup. If unspecified, lookup is in the default NIS domain. .. function:: cat(mapname[, domain=default_domain]) Return a dictionary mapping *key* to *value* such that ``match(key, mapname)==value``. Note that both keys and values of the dictionary are arbitrary arrays of bytes. Note that *mapname* is first checked if it is an alias to another name. .. versionchanged:: 2.5 The *domain* argument allows to override the NIS domain used for the lookup. If unspecified, lookup is in the default NIS domain. .. function:: maps([domain=default_domain]) Return a list of all valid maps. .. versionchanged:: 2.5 The *domain* argument allows to override the NIS domain used for the lookup. If unspecified, lookup is in the default NIS domain. .. function:: get_default_domain() Return the system default NIS domain. .. versionadded:: 2.5 The :mod:`nis` module defines the following exception: .. exception:: error An error raised when a NIS function returns an error code.