Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 11 for passwd (0.029 sec.)
35.2. pwd --- パスワードデータベースへのアクセスを提供する — Python 3.6.5 ドキ... 12927
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... プルのようなオブジェクトで提供され、それぞれの属性は passwd 構造体のメンバに対応しています(下の属性欄については ... : インデックス 属性 意味 0 pw_name ログイン名 1 pw_passwd 暗号化されたパスワード(optional)) 2 pw_uid ユーザI ... KeyError が発生します。 注釈 伝統的なUnixでは、 pw_passwd フィールドはDES由来のアルゴリズムで暗号化されたパス ... とよばれる仕組みを利用しています。この場合には pw_passwd フィールドにはアスタリスク( '*' )か、 'x' という一 ...
https://man.plustar.jp/python/library/pwd.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 10864
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... default port >>> ftp . login () # user anonymous, passwd anonymous@ '230 Login successful.' >>> ftp . cwd ( ... しています: class ftplib. FTP ( host='' , user='' , passwd='' , acct='' , timeout=None , source_address=None ... is given, additionally the method call login(user, passwd, acct) is made (where passwd and acct default to t ... ました。 class ftplib. FTP_TLS ( host='' , user='' , passwd='' , acct='' , keyfile=None , certfile=None , cont ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
11.1. pathlib --- オブジェクト指向のファイルシステムパス — Python 3.6.5 ドキュ... 10455
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Error を送出します。 >>> p = PurePosixPath ( '/etc/passwd' ) >>> p . as_uri () 'file:///etc/passwd' >>> p = ... なります: >>> PurePosixPath ( '/etc' ) . joinpath ( 'passwd' ) PurePosixPath('/etc/passwd') >>> PurePosixPath ... ( '/etc' ) . joinpath ( PurePosixPath ( 'passwd' )) PurePosixPath('/etc/passwd') >>> PurePosixPath ... rror が送出されます: >>> p = PurePosixPath ( '/etc/passwd' ) >>> p . relative_to ( '/' ) PurePosixPath('etc/ ...
https://man.plustar.jp/python/library/pathlib.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 9495
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... asswordMgr オブジェクト 節を参照してください。もし passwd_mgr が is_authenticated と update_authenticated メ ... TPPasswordMgr. add_password ( realm , uri , user , passwd ) ¶ uri は単一の URI でも複数の URI からなるシーケ ... ンスでもかまいません。 realm 、 user および passwd は文字列でなくてはなりません。このメソッドによって ... realm と与えられた URI の上位 URI に対して (user, passwd) が認証トークンとして使われるようになります。 HTTP ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
35.6. termios --- POSIX スタイルの端末制御 — Python 3.6.5 ドキュメント 8801
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ios . tcsetattr ( fd , termios . TCSADRAIN , new ) passwd = input ( prompt ) finally : termios . tcsetattr ( ... fd , termios . TCSADRAIN , old ) return passwd 関連キーワード: termios , 端末 , 関数 , キュー , 出 ...
https://man.plustar.jp/python/library/termios.html - [similar]
35.4. grp --- グループデータベースへのアクセス — Python 3.6.5 ドキュメント 8126
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... : インデックス 属性 意味 0 gr_name グループ名 1 gr_passwd (暗号化された) グループパスワード; しばしば空文字列 ...
https://man.plustar.jp/python/library/grp.html - [similar]
14.1. csv --- CSV ファイルの読み書き — Python 3.6.5 ドキュメント 7841
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ow ) 別の書式での読み込み: import csv with open ( 'passwd' , newline = '' ) as f : reader = csv . reader ( f ... = ':' , quoting = csv . QUOTE_NONE ) with open ( 'passwd' , newline = '' ) as f : reader = csv . reader ( f ...
https://man.plustar.jp/python/library/csv.html - [similar]
26.4. unittest --- ユニットテストフレームワーク — Python 3.6.5 ドキュメント 7290
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ning , 'unsafe frobnicating' ): frobnicate ( '/etc/passwd' ) バージョン 3.2 で追加. バージョン 3.3 で変更: コ ...
https://man.plustar.jp/python/library/unittest.html - [similar]
What's New in Python 2.4 — Python 3.6.5 ドキュメント 7290
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... でリストに変換してください: >>> input = open ( '/etc/passwd' , 'r' ) >>> for line in reversed ( list ( input ) ...
https://man.plustar.jp/python/whatsnew/2.4.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 7290
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ァイルオブジェクトがその一例です: with open ( '/etc/passwd' , 'r' ) as f : for line in f : print line ... mor ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
PREV 1 2 NEXT