Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 22 for reader (0.031 sec.)
14.1. csv --- CSV ファイルの読み書き — Python 3.6.5 ドキュメント 15167
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... SV 形式を定義することができます。 csv モジュールの reader および writer オブジェクトはシーケンス型を読み書き ... します。プログラマは DictReader や DictWriter クラスを使うことで、データを辞書形式 ... csv モジュールでは以下の関数を定義しています: csv. reader ( csvfile , dialect='excel' , **fmtparams ) ¶ 与え ... られた csvfile 内の行を反復処理するような reader オブジェクトを返します。 csvfile はイテレータ( ite ...
https://man.plustar.jp/python/library/csv.html - [similar]
18.5.5. ストリーム (コルーチンベースの API) — Python 3.6.5 ドキュメント 11582
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... one , **kwds ) ¶ create_connection() のラッパーで (reader, writer) ペアを返します。 返されたリーダーは Strea ... mReader のインスタンスで、ライターは StreamWriter のインス ... するイベントループインスタンスを、 limit には StreamReader に渡すバッファーリミットを設定します。 この関数は ... r() と同じです。 client_connected_cb 引数は client_reader と client_writer という 2 個の引数で呼び出されます ...
https://man.plustar.jp/python/library/asyncio-stream.html - [similar]
18.5.1. 基底イベントループ — Python 3.6.5 ドキュメント 8686
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 関数 open_connection() はプロトコルではなく ( StreamReader , StreamWriter ) のペアの取得に使用できます。 coro ... ートされました。 参考 関数 start_server() は ( StreamReader , StreamWriter ) のペアを作成し、このペアで関数を再 ... ソッドはサポートされません。 AbstractEventLoop. add_reader ( fd , callback , *args ) ¶ 読み込み可能なファイル ... al を使用してください 。 AbstractEventLoop. remove_reader ( fd ) ¶ 読み込み可能なファイル記述子の監視を停止し ...
https://man.plustar.jp/python/library/asyncio-eventloop.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 8366
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nsfer Protocol. It can be used to implement a news reader or poster, or automated news processors. It is com ... TP ( host , port=119 , user=None , password=None , readermode=None , usenetrc=False [ , timeout ] ) ¶ Return ... icate the user to the server. If the optional flag readermode is true, then a mode reader command is sent be ... fore authentication is performed. Reader mode is sometimes necessary if you are connecting ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
12.1. pickle --- Python オブジェクトの直列化 — Python 3.6.5 ドキュメント 8299
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... kle 化する振る舞いの変更手順を紹介しています。 TextReader クラスはテキストファイルをオープンし、 readline() ... 呼ばれると、その度に行番号と行の内容を返します。 TextReader インスタンスが pickle 化されるとき、ファイルオブジ ... よび __getstate__() メソッドを使用します。 class TextReader : """Print and number lines in a text file.""" def ... file = file 使用例は以下のようになるでしょう: >>> reader = TextReader ( "hello.txt" ) >>> reader . readline ...
https://man.plustar.jp/python/library/pickle.html - [similar]
18.5.2. イベントループ — Python 3.6.5 ドキュメント 8114
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... いるのはソケットのみで 512 ソケットに制限される add_reader() および add_writer() はソケットのファイル記述子受 ... create_datagram_endpoint() (UDP) は未サポート add_reader() および add_writer() は未サポート Windows のモノト ...
https://man.plustar.jp/python/library/asyncio-eventloops.html - [similar]
28.3. venv --- 仮想環境の作成 — Python 3.6.5 ドキュメント 8114
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... self . nodist : self . install_pip ( context ) def reader ( self , stream , context ): """ Read lines from a ... PE , cwd = binpath ) t1 = Thread ( target = self . reader , args = ( p . stdout , 'stdout' )) t1 . start () ... t2 = Thread ( target = self . reader , args = ( p . stderr , 'stderr' )) t2 . start () ...
https://man.plustar.jp/python/library/venv.html - [similar]
7.2. codecs --- codec レジストリと基底クラス — Python 3.6.5 ドキュメント 8063
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... class codecs. CodecInfo ( encode , decode , streamreader=None , streamwriter=None , incrementalencoder=None ... 態) を保持することができます。 streamwriter ¶ streamreader ¶ ストリームライターとリーダーのクラスまたはファク ... 数です。これらは、基底クラスの StreamWriter と StreamReader が定義するインターフェースをそれぞれ提供する必要が ... ートしなければ LookupError を送出します。 codecs. getreader ( encoding ) ¶ 与えられたエンコーディングに対する ...
https://man.plustar.jp/python/library/codecs.html - [similar]
14. ファイルフォーマット — Python 3.6.5 ドキュメント 8063
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ツ 14.1.2. Dialect クラスと書式化パラメータ 14.1.3. reader オブジェクト 14.1.4. writer オブジェクト 14.1.5. 使 ...
https://man.plustar.jp/python/library/fileformats.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 7878
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ます: import csv input = open ( 'datafile' , 'rb' ) reader = csv . reader ( input ) for line in reader : prin ... t line reader() 関数はたくさんのオプションを取ります。フィールド ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
PREV 1 2 3 NEXT