Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 50 for stream (0.055 sec.)
19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 8692
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... akes the serialized version of an email message (a stream of bytes) and converts it into a tree of EmailMess ... ilMessage and turns it back into a serialized byte stream. (The parser and generator also handle streams of ... sage to create a new email, or by parsing an input stream using a parser . But the policy can be changed whe ...
https://man.plustar.jp/python/library/email.html - [similar]
20.8. xml.dom.pulldom --- 部分的な DOM ツリー構築のサポート — Python 3.6.5 ドキ... 8692
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... なわち文章中の任意の点の場所を記憶する) か、 DOMEventStream.expandNode() メソッドを使用して DOM 関連の処理に切 ... andler のサブクラスです。 xml.dom.pulldom. parse ( stream_or_string , parser=None , bufsize=None ) ¶ 与えられ ... た入力から DOMEventStream を返します。 stream_or_string はファイル名かファイ ... parser=None ) ¶ (ユニコード) string を表す DOMEventStream を返します。 xml.dom.pulldom. default_bufsize ¶ pa ...
https://man.plustar.jp/python/library/xml.dom.pulldom.html - [similar]
7.2. codecs --- codec レジストリと基底クラス — Python 3.6.5 ドキュメント 8527
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... れます。 class codecs. CodecInfo ( encode , decode , streamreader=None , streamwriter=None , incrementalencode ... は、ステート (内部状態) を保持することができます。 streamwriter ¶ streamreader ¶ ストリームライターとリーダー ... ラスまたはファクトリ関数です。これらは、基底クラスの StreamWriter と StreamReader が定義するインターフェースを ... 与えられたエンコーディングに対する codec を検索し、 StreamReader クラスまたはファクトリ関数を返します。 エンコ ...
https://man.plustar.jp/python/library/codecs.html - [similar]
ソケットプログラミング HOWTO — Python 3.6.5 ドキュメント 8181
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソケ ... 率でいうとソケットの 99% 以上はこれだ。さらに中でも STREAM (すなわち TCP) ソケットに話題を絞ろうと思う - 自分 ... 限り (分かってるならこの HOWTO なんて要らないだろ!)、STREAM ソケットが一番分かりやすく、一番性能が出るのだ。そ ... って次のようなことをしたのである: # create an INET, STREAMing socket s = socket . socket ( socket . AF_INET , ... socket . SOCK_STREAM ) # now connect to the web server on port 80 - the ...
https://man.plustar.jp/python/howto/sockets.html - [similar]
18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 8181
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... コルーチンベースの API) ¶ ソースコード: Lib/asyncio/streams.py 18.5.5.1. ストリーム関数 ¶ 注釈 このモジュール ... eader, writer) ペアを返します。 返されたリーダーは StreamReader のインスタンスで、ライターは StreamWriter の ... は使用するイベントループインスタンスを、 limit には StreamReader に渡すバッファーリミットを設定します。 この関 ... という 2 個の引数で呼び出されます。 client_reader は StreamReader オブジェクトで、 client_writer は StreamWrit ...
https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
28.3. venv --- 仮想環境の作成 — Python 3.6.5 ドキュメント 7835
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... hich are obtained by reading lines from the output streams of a subprocess which is used to install the app. ... self . install_pip ( context ) def reader ( self , stream , context ): """ Read lines from a subprocess' out ... put stream and either pass to a progress callable (if specifi ... r. """ progress = self . progress while True : s = stream . readline () if not s : break if progress is not ...
https://man.plustar.jp/python/library/venv.html - [similar]
codec レジストリとサポート関数 — Python 3.6.5 ドキュメント 7670
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ecoder オブジェクトを返します。 PyObject * PyCodec_StreamReader ( const char *encoding , PyObject *stream , ... const char *errors ) ¶ 与えられた encoding の StreamReader ファクトリ関数を返します。 PyObject * PyCode ... c_StreamWriter ( const char *encoding , PyObject *stream , ... const char *errors ) ¶ 与えられた encoding の StreamWriter ファクトリ関数を返します。 Unicode エラーハン ...
https://man.plustar.jp/python/c-api/codec.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 7504
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 供されています。なお、これらのハンドラのうち、3 つ ( StreamHandler , FileHandler および NullHandler ) は、実際 ... ハンドラと一緒にここでドキュメント化します。 16.8.1. StreamHandler ¶ logging コアパッケージに含まれる StreamHa ... ト) といったストリームに送信します。 class logging. StreamHandler ( stream=None ) ¶ StreamHandler クラスの新た ... なインスタンスを返します。 stream が指定された場合、インスタンスはログ出力先として指 ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
16.6. logging --- Python 用ロギング機能 — Python 3.6.5 ドキュメント 7324
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... onfig ( **kwargs ) ¶ デフォルトの Formatter を持つ StreamHandler を生成してルートロガーに追加し、ロギングシス ... 引数がサポートされます。 フォーマット 説明 filename StreamHandler ではなく指定された名前で FileHandler が作ら ... Set the root logger level to the specified level. stream Use the specified stream to initialize the StreamH ... this argument is incompatible with 'filename' or 'stream' - if both are present, a ValueError is raised. バ ...
https://man.plustar.jp/python/library/logging.html - [similar]
26.1. typing --- 型ヒントのサポート — Python 3.6.5 ドキュメント 7324
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eturnType に None を設定してください: def infinite_stream ( start : int ) -> Generator [ int , None , None ] ... でアノテーションをつけることもできます: def infinite_stream ( start : int ) -> Iterator [ int ]: while True : ... なら、 SendType を None にします: async def infinite_stream ( start : int ) -> AsyncGenerator [ int , None ]: ... 戻り値型を持つとアノテートします: async def infinite_stream ( start : int ) -> AsyncIterator [ int ]: while Tr ...
https://man.plustar.jp/python/library/typing.html - [similar]
PREV 1 2 3 4 5 NEXT