Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 214 for FILE (0.042 sec.)
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 8075
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ing methods take an optional keyword-only argument file . When the file argument is supplied, it must be e ... ither a file object opened for binary writing, or the name of a ... n on-disk file to be written to. The method will then write any d ... the response line and the terminating dot) to the file; any list of lines, tuples or objects that the met ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
22.3. sunau --- Sun AUファイルの読み書き — Python 3.6.5 ドキュメント 7622
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ジュールは以下の関数を定義しています: sunau. open ( file , mode ) ¶ file が文字列ならその名前のファイルを開 ... AU_write オブジェクトを返します。 sunau. openfp ( file , mode ) ¶ open() と同義。後方互換性のために残され ... は以下のデータアイテムを定義しています: sunau. AUDIO_FILE_MAGIC ¶ big-endianで保存された正規のSun AUファイル ... 文字列 .snd を整数に変換したものです。 sunau. AUDIO_FILE_ENCODING_MULAW_8 ¶ sunau. AUDIO_FILE_ENCODING_LINE ...
https://man.plustar.jp/python/library/sunau.html - [similar]
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 7549
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... てあります。 GNU Readline マニュアルの Readline Init File を参照して、そのファイルの形式や可能な構成、 Readl ... arse_and_bind() が呼ばれます。 readline. read_init_file ( [ filename ] ) ¶ readline 初期化ファイルを実行し ... 名です。これにより下層のライブラリーの rl_read_init_file() が呼ばれます。 6.7.2. 行バッファ ¶ 以下の関数は行 ... 数は履歴ファイルを操作します: readline. read_history_file ( [ filename ] ) ¶ readline 履歴ファイルを読み込み ...
https://man.plustar.jp/python/library/readline.html - [similar]
36.1. optparse --- コマンドラインオプション解析器 — Python 3.6.5 ドキュメント 7380
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... = OptionParser () parser . add_option ( "-f" , "--file" , dest = "filename" , help = "write report to FIL ... E" , metavar = "FILE" ) parser . add_option ( "-q" , "--quiet" , action ... い方」を実行できるようになります: < yourscript > -- file = outfile - q コマンドライン解析の中で、 optparse ... がコマンドライン解析から処理を戻したとき、 options.filename は "outfile" に、 options.verbose は False にな ...
https://man.plustar.jp/python/library/optparse.html - [similar]
28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 7338
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 際、 target がファイルオブジェクトである場合は、 zipfile.ZipFile クラスへ渡されます。必ずクラスが必要とする ... ou have a myapp directory containing a __main__.py file, and any supporting application code. Install all ... ve your project requirements in a requirements.txt file - if not, you can just list the dependencies manua ... or details. It can be shipped to users as a single file. On Unix, the myapp.pyz file is executable as it s ...
https://man.plustar.jp/python/library/zipapp.html - [similar]
12.1. pickle --- Python オブジェクトの直列化 — Python 3.6.5 ドキュメント 7180
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... では以下の関数を提供しています: pickle. dump ( obj , file , protocol=None , * , fix_imports=True ) ¶ obj を ... 化し、すでにオープンしている ファイルオブジェクト file に書き込みます。 Pickler(file, protocol).dump(obj) ... られた場合、 HIGHEST_PROTOCOL が使用されます。 引数 file は、1 バイトの引数一つを受け付ける write() メソッド ... を持たなければなりません。すなわち、 file には、バイナリの書き込み用にオープンされたファイル ...
https://man.plustar.jp/python/library/pickle.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 7096
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... uments. You can pass the parser a bytes, string or file object, and the parser will return to you the root ... age in memory, or if the entire message lives in a file on the file system. FeedParser is more appropriate ... ully contained in a bytes-like object , string, or file, but the BytesParser API may be more convenient fo ... he message are available in a bytes-like object or file. The email.parser module also provides Parser for ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
18.5.9. asyncio での開発 — Python 3.6.5 ドキュメント 6980
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... utine object created at ( most recent call last ): File "test.py" , line 7 , in < module > test () これを修 ... onsumed' ,) > Traceback ( most recent call last ): File "asyncio/tasks.py" , line 237 , in _step result = ... next ( coro ) File "asyncio/coroutines.py" , line 141 , in coro res = ... func ( * args , ** kw ) File "test.py" , line 5 , in bug raise Exception ( "not ...
https://man.plustar.jp/python/library/asyncio-dev.html - [similar]
16.15. errno --- 標準の errno システムシンボル — Python 3.6.5 ドキュメント 6896
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... なファイルまたはディレクトリは存在しません (No such file or directory) errno. ESRCH ¶ 指定したプロセスは存在 ... ) errno. EBADF ¶ ファイル番号が間違っています (Bad file number) errno. ECHILD ¶ 子プロセスがありません (No ... busy) errno. EEXIST ¶ ファイルがすでに存在します (File exists) errno. EXDEV ¶ デバイスをまたいだリンクです ... INVAL ¶ 無効な引数です (Invalid argument) errno. ENFILE ¶ ファイルテーブルがオーバフローしています (File t ...
https://man.plustar.jp/python/library/errno.html - [similar]
12.4. marshal --- 内部使用向けの Python オブジェクト整列化 — Python 3.6.5 ドキ... 6812
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ん (下記参照)。 There are functions that read/write files as well as functions operating on bytes-like obje ... 下の関数が定義されています。 marshal. dump ( value , file [ , version ] ) ¶ Write the value on the open file ... . The value must be a supported type. The file must be a writeable binary file . 値 (または値に含 ... 定します (下記を参照してください)。 marshal. load ( file ) ¶ Read one value from the open file and return i ...
https://man.plustar.jp/python/library/marshal.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT