Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 16 for writer (0.003 sec.)
- 33.1. formatter --- 汎用の出力書式化機構 — Python 3.6.5 ドキュメント 13810
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...タフェースと、formatter インタフェースに必要なされる writer インタフェースです。 formatter オブジェクトはある抽...象化された書式イベントの流れを writer オブジェクト上の特定の出力イベントに変換します。fo...rmatter はいくつかのスタック構造を管理することで、writer オブジェクトの様々な属性を変更したり復元したりでき...るようにしています; このため、writer は相対的な変更や "元に戻す" 操作を処理できなくても... - https://man.plustar.jp/python/library/formatter.html - [similar]
- 14.1. csv --- CSV ファイルの読み書き — Python 3.6.5 ドキュメント 11714
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...することができます。 csv モジュールの reader および writer オブジェクトはシーケンス型を読み書きします。プログ...ラマは DictReader や DictWriter クラスを使うことで、データを辞書形式で読み書きする...Baked Beans Spam, Lovely Spam, Wonderful Spam csv. writer ( csvfile , dialect='excel' , **fmtparams ) ¶ ユー...換し、与えられたファイルオブジェクトに書き込むための writer オブジェクトを返します。 csvfile は write() メソッ... - https://man.plustar.jp/python/library/csv.html - [similar]
- 18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 10397
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...kwds ) ¶ create_connection() のラッパーで (reader, writer) ペアを返します。 返されたリーダーは StreamReader...のインスタンスで、ライターは StreamWriter のインスタンスです。 引数は protocol_factory を除き...client_connected_cb 引数は client_reader と client_writer という 2 個の引数で呼び出されます。 client_reader...は StreamReader オブジェクトで、 client_writer は StreamWriter オブジェクトです。 client_connecte... - https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
- 33. 各種サービス — Python 3.6.5 ドキュメント 8958
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...tter インタフェース 33.1.2. formatter 実装 33.1.3. writer インタフェース 33.1.4. writer 実装 関連キーワード:...ュメント , 出力 , Foundation , Software , トピック , writer , 実装 前のトピックへ 32.13. pickletools --- pickl... - https://man.plustar.jp/python/library/misc.html - [similar]
- 20.7. xml.dom.minidom --- 最小限の DOM の実装 — Python 3.6.5 ドキュメント 8040
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...e ) as dom : ... # Work with dom. Node. writexml ( writer , indent="" , addindent="" , newl="" ) ¶ XML を wr...iter オブジェクトに書き込みます。 writer は、ファイルオブジェクトインタフェースの write() に... - https://man.plustar.jp/python/library/xml.dom.minidom.html - [similar]
- 18.5.2. イベントループ — Python 3.6.5 ドキュメント 7971
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...で 512 ソケットに制限される add_reader() および add_writer() はソケットのファイル記述子受け取るだけです パイプ...point() (UDP) は未サポート add_reader() および add_writer() は未サポート Windows のモノトニック時計の時間分解... - https://man.plustar.jp/python/library/asyncio-eventloops.html - [similar]
- 7.2. codecs --- codec レジストリと基底クラス — Python 3.6.5 ドキュメント 7919
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...Info ( encode , decode , streamreader=None , streamwriter=None , incrementalencoder=None , incrementaldecode...ステート (内部状態) を保持することができます。 streamwriter ¶ streamreader ¶ ストリームライターとリーダーのクラ...たはファクトリ関数です。これらは、基底クラスの StreamWriter と StreamReader が定義するインターフェースをそれぞ...つからなければ LookupError を送出します。 codecs. getwriter ( encoding ) ¶ 与えられたエンコーディングに対する... - https://man.plustar.jp/python/library/codecs.html - [similar]
- 14. ファイルフォーマット — Python 3.6.5 ドキュメント 7919
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...書式化パラメータ 14.1.3. reader オブジェクト 14.1.4. writer オブジェクト 14.1.5. 使用例 14.2. configparser ---... - https://man.plustar.jp/python/library/fileformats.html - [similar]
- 18.5.1. 基底イベントループ — Python 3.6.5 ドキュメント 7763
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...tion() はプロトコルではなく ( StreamReader , StreamWriter ) のペアの取得に使用できます。 coroutine AbstractE...参考 関数 start_server() は ( StreamReader , StreamWriter ) のペアを作成し、このペアで関数を再度呼び出します...ル記述子の監視を停止します。 AbstractEventLoop. add_writer ( fd , callback , *args ) ¶ 書き込み可能なファイル...al を使用してください 。 AbstractEventLoop. remove_writer ( fd ) ¶ 書き込み可能なファイル記述子の監視を停止し... - https://man.plustar.jp/python/library/asyncio-eventloop.html - [similar]
- 16.2. io --- ストリームを扱うコアツール — Python 3.6.5 ドキュメント 7763
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...にバッファ処理を追加します。そのサブクラスの BufferedWriter , BufferedReader , BufferedRWPair では、 それぞれ読...IOBase 実装は RawIOBase 実装を継承せずに、 BufferedWriter と BufferedReader がするようにこれをラップすべきで...ムの読み込みが一回呼び出されます。 class io. BufferedWriter ( raw , buffer_size=DEFAULT_BUFFER_SIZE ) ¶ 書き込...om オブジェクトに対して) 呼び出されたとき; BufferedWriter オブジェクトが閉じられたり破棄されたりしたとき。 こ... - https://man.plustar.jp/python/library/io.html - [similar]
