Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 214 for FILE (0.087 sec.)
22.5. chunk --- IFFチャンクデータの読み込み — Python 3.6.5 ドキュメント 5285
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 1] このフォーマットは少なくとも、Audio Interchange File Format (AIFF/AIFF-C) とReal Media File Format (RMF ... の例外が発生して失敗します。 class chunk. Chunk ( file , align=True , bigendian=True , inclheader=False ) ... ¶ チャンクを表わすクラス。 file 引数はファイル風オブジェクトであると期待されます。 ... 脚注 [1] "EA IFF 85" Standard for Interchange Format Files, Jerry Morrison, Electronic Arts, January 1985. 関 ...
https://man.plustar.jp/python/library/chunk.html - [similar]
13.2. gzip --- gzip ファイルのサポート — Python 3.6.5 ドキュメント 5285
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 縮は zlib モジュールで提供されています。 gzip は GzipFile クラスと、簡易関数 open() 、 compress() 、および d ... ecompress() を提供しています。 GzipFile クラスは通常の ファイルオブジェクト と同様に gzip ... モジュールは以下の項目を定義しています: gzip. open ( filename , mode='rb' , compresslevel=9 , encoding=None ... ードで開き、 ファイルオブジェクト を返します。 引数 filename には実際のファイル名 ( str または bytes オブジ ...
https://man.plustar.jp/python/library/gzip.html - [similar]
19.9. quopri --- MIME quoted-printable 形式データのエンコードおよびデコード — P... 5285
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... header=False ) ¶ Encode the contents of the input file and write the resulting quoted-printable data to t ... he output file. input and output must be binary file objects . qu ...
https://man.plustar.jp/python/library/quopri.html - [similar]
19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 5243
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... lphabets defined in RFC 3548 (normal, and URL- and filesystem-safe) are supported. The legacy interface do ... de functions for encoding and decoding to and from file objects . It only supports the Base64 standard alp ... ) ¶ Encode bytes-like object s using the URL- and filesystem-safe alphabet, which substitutes - instead o ... s-like object or ASCII string s using the URL- and filesystem-safe alphabet, which substitutes - instead o ...
https://man.plustar.jp/python/library/base64.html - [similar]
11.8. fnmatch --- Unix ファイル名のパターンマッチ — Python 3.6.5 ドキュメント 5243
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... と ? のパターンでマッチします。 fnmatch. fnmatch ( filename , pattern ) ¶ Test whether the filename string ... ァイルを表示しています: import fnmatch import os for file in os . listdir ( '.' ): if fnmatch . fnmatch ( fi ... le , '*.txt' ): print ( file ) fnmatch. fnmatchcase ( filename , pattern ) ¶ Te ... st whether filename matches pattern , returning True or False ; th ...
https://man.plustar.jp/python/library/fnmatch.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 5243
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... この振る舞いは configure のオプションを変更して Makefile を作ることで変更できます。 Windows と Mac OS X では ... ecode ( "hex" ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> LookupError : 'he ... ode ( "rot13" ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> LookupError : 'ro ... oding = "hex" ) Traceback (most recent call last): File "<stdin>" , line 1 , in <module> LookupError : 'he ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
14.2. configparser --- 設定ファイルのパーサー — Python 3.6.5 ドキュメント 5201
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... es' >>> with open ( 'example.ini' , 'w' ) as configfile : ... config . write ( configfile ) ... この例でわ ... config = """ ... [mysqld] ... user = mysql ... pid-file = /var/run/mysqld/mysqld.pid ... skip-external-loc ... に設定された場合、パーサーは単一のソースから ( read_file() , read_string() または read_dict() を使って) 読み ... l receive an error when # attempting to write to a file or when you get it in non-raw mode. Setting # valu ...
https://man.plustar.jp/python/library/configparser.html - [similar]
16.5. getopt --- C 言語スタイルのコマンドラインオプションパーサ — Python 3.6.5 ... 5201
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 様です: >>> s = '--condition=foo --testing --output-file abc.def -x a1 a2' >>> args = s . split () >>> args ... ['--condition=foo', '--testing', '--output-file', 'abc.def', '-x', 'a1', 'a2'] >>> optlist , args ... getopt ( args , 'x' , [ ... 'condition=' , 'output-file=' , 'testing' ]) >>> optlist [('--condition', 'foo ... '), ('--testing', ''), ('--output-file', 'abc.def'), ('-x', '')] >>> args ['a1', 'a2'] ス ...
https://man.plustar.jp/python/library/getopt.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 5201
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 2822 スタイルのヘッダを提供することを要求します。 rfile ¶ An io.BufferedIOBase input stream, ready to read ... from the start of the optional input data. wfile ¶ Contains the output stream for writing a respons ... ped to a directory, the directory is checked for a file named index.html or index.htm (in that order). If ... found, the file's contents are returned; otherwise a directory lis ...
https://man.plustar.jp/python/library/http.server.html - [similar]
34.1. msilib --- Microsoft インストーラーファイルの読み書き — Python 3.6.5 ドキ... 5201
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ブル構造、の四つです。 msilib. FCICreate ( cabname , files ) ¶ 新しい CAB ファイルを cabname という名前で作り ... ます。 files はタプルのリストで、それぞれのタプルはディスク上の ... PEN_TRANSACT のどれか一つで、フラグ MSIDBOPEN_PATCHFILE を含めても構いません。これらのフラグの意味は Micro ... テーブルでなければなりません。例えば、 'Feature' , 'File' , 'Component' , 'Dialog' , 'Control' , などです。 ...
https://man.plustar.jp/python/library/msilib.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT