Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 50 for stream (0.027 sec.)
16.9. getpass --- 可搬性のあるパスワード入力機構 — Python 3.6.5 ドキュメント 12633
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 提供します: getpass. getpass ( prompt='Password: ' , stream=None ) ¶ エコーなしでユーザーにパスワードを入力させ ... す。 Unixではプロンプトはファイルに似たオブジェクト stream へ、必要なら置き換えられたエラーハンドラを使って出 ... 力されます。 stream のデフォルトは、制御端末( /dev/tty )か、それが利用 ... エコーなしで入力が利用できない場合は、 getpass() は stream に警告メッセージを出力し、 sys.stdin から読み込み、 ...
https://man.plustar.jp/python/library/getpass.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 10918
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rt redirect_stdout >>> from io import StringIO >>> stream = StringIO () >>> write_to_stream = redirect_stdou ... t ( stream ) >>> with write_to_stream : ... print ( "This is ... written to the stream rather than stdout" ) ... with write_to_stream : . ... .. print ( "This is also written to the stream" ) ... >>> print ( "This is written directly to st ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 10587
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... stdin , stdout and stderr will be opened as binary streams. No encoding or line ending conversion is perform ... ult encoding. Otherwise, they are opened as binary streams. バージョン 3.6 で追加: encoding and errors were ... None , if no data should be sent to the child. If streams were opened in text mode, input must be a string. ... t_data, stderr_data) . The data will be strings if streams were opened in text mode; otherwise, bytes. 子プロ ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 10061
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ternet TCP protocol, which provides for continuous streams of data between the client and server. If bind_an ... he same as for TCPServer . class socketserver. UnixStreamServer ( server_address , RequestHandlerClass , bin ... -+ +------------------+ | TCPServer |------->| UnixStreamServer | +-----------+ +------------------+ | v +-- ... DatagramServer は UDPServer から派生していて、 UnixStreamServer からではないことに注意してください --- IP と ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 9896
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... とを要求します。 rfile ¶ An io.BufferedIOBase input stream, ready to read from the start of the optional inpu ... t data. wfile ¶ Contains the output stream for writing a response back to the client. Proper ... he HTTP protocol must be used when writing to this stream in order to achieve successful interoperation with ... バージョン 3.6 で変更: This is an io.BufferedIOBase stream. BaseHTTPRequestHandler は以下の属性を持っています ...
https://man.plustar.jp/python/library/http.server.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 9550
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の定数が定義されているかもしれません。 socket. SOCK_STREAM ¶ socket. SOCK_DGRAM ¶ socket. SOCK_RAW ¶ socket. ... 義されているかもしれません。 (ほとんどの場合、 SOCK_STREAM と SOCK_DGRAM 以外は必要ありません。) socket. SOCK ... します。 socket. socket ( family=AF_INET , type=SOCK_STREAM , proto=0 , fileno=None ) ¶ アドレスファミリー、ソ ... または AF_RDS を指定します。ソケットタイプには SOCK_STREAM (デフォルト値)、 SOCK_DGRAM 、 SOCK_RAW 、または他 ...
https://man.plustar.jp/python/library/socket.html - [similar]
13.6. tarfile --- tar アーカイブファイルの読み書き — Python 3.6.5 ドキュメント 9384
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 以下のとおりです。 モード 動作 'r|*' tar ブロックの stream を圧縮方法に関して透過的に読み込み用にオープンしま ... す。 'r|' 非圧縮 tar ブロックの stream を読み込み用にオープンします。 'r|gz' gzip 圧縮の ... を読み込み用にオープンします。 'r|bz2' bzip2 圧縮の stream を読み込み用にオープンします。 'r|xz' lzma 圧縮の ... tream を読み込み用にオープンします。 'w|' 非圧縮の stream を書き込み用にオープンします。 'w|gz' gzip 圧縮の ...
https://man.plustar.jp/python/library/tarfile.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 9038
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... sed for both. That is, parsing the serialized byte stream via the BytesParser class and then regenerating th ... e serialized byte stream using BytesGenerator should produce output identic ... n think of this as Generator serializing to an I/O stream that is not "8 bit clean". In other words, most ap ... ialized, but are instead represented in the output stream by a string derived from a template filled in with ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
8.11. pprint --- データ出力の整然化 — Python 3.6.5 ドキュメント 9038
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... PrettyPrinter ( indent=1 , width=80 , depth=None , stream=None , * , compact=False ) ¶ PrettyPrinter インスタ ... トラクタにはいくつかのキーワード引数を設定できます。 stream キーワードで出力ストリームを設定できます;このストリ ... t 引数が追加されました。 pprint. pprint ( object , stream=None , indent=1 , width=80 , depth=None , * , comp ... act=False ) ¶ stream 上に object の書式化された表現、続いて改行を出力し ...
https://man.plustar.jp/python/library/pprint.html - [similar]
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 8873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... indow size logarithm, while producing a raw output stream with no header or trailing checksum. +25 to +31 = ... the window size logarithm. The input must be a raw stream with no header or trailer. +24 to +31 = 16 + (8 to ... ther the zlib or gzip format. When decompressing a stream, the window size must not be smaller than the size ... originally used to compress the stream; using a too-small value may result in an error ex ...
https://man.plustar.jp/python/library/zlib.html - [similar]
PREV 1 2 3 4 5 NEXT