Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 24 for ZipFile (0.026 sec.)
- 13.5. zipfile --- ZIP アーカイブの処理 — Python 3.6.5 ドキュメント 15813
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
リ » 13. データ圧縮とアーカイブ » 13.5. zipfile --- ZIP アーカイブの処理 ¶ ソースコード: Lib/zipfi...
のモジュールは以下の項目を定義しています: exception zipfile. BadZipFile ¶ 正常ではない ZIP ファイルに対して送出...
されるエラーです。 バージョン 3.2 で追加. exception zipfile. BadZipfile ¶ BadZipFile の別名です。過去のバージョ...
意されています。 バージョン 3.2 で非推奨. exception zipfile. LargeZipFile ¶ ZIP ファイルが ZIP64 の機能を必要と...
- https://man.plustar.jp/python/library/zipfile.html - [similar]
- 索引 — Python 3.6.5 ドキュメント 10175
- ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » 索引 – 記号 ! (pdb command) != 演
...
... <sourceN> tarfile コマンドラインオプション -c <zipfile> <source1> ... <sourceN> zipfile コマンドラインオプ...
<output_dir>] tarfile コマンドラインオプション -e <zipfile> <output_dir> zipfile コマンドラインオプション -e,...
-l <tarfile> tarfile コマンドラインオプション -l <zipfile> zipfile コマンドラインオプション -l, --indentleve...
-t <tarfile> tarfile コマンドラインオプション -t <zipfile> zipfile コマンドラインオプション -t, --time timei...
- https://man.plustar.jp/python/genindex-%E8%A8%98%E5%8F%B7.html - [similar]
- 28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 9207
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
する際、 target がファイルオブジェクトである場合は、 zipfile.ZipFile クラスへ渡されます。必ずクラスが必要とする...
mpiler. The basic approach relies on the fact that zipfiles can have arbitrary data prepended, and Windows ex...
s a C extension, that package cannot be run from a zip file (this is an OS limitation, as executable code mus...
his case, you can exclude that dependency from the zipfile, and either require your users to have it installe...
- https://man.plustar.jp/python/library/zipapp.html - [similar]
- What's New In Python 3.6 — Python 3.6.5 ドキュメント 8557
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
the documentation for more information. A python36.zip file now works as a landmark to infer PYTHONHOME . See...
now specify file paths on top of directories (e.g. zip files). (Contributed by Wolfgang Langner in bpo-26587...
. (Contributed by Serhiy Storchaka in bpo-26885 .) zipfile ¶ A new ZipInfo.from_file() class method allows ma...
(Contributed by Thomas Kluyver in bpo-26039 .) The ZipFile.open() method can now be used to write data into a...
- https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
- 13. データ圧縮とアーカイブ — Python 3.6.5 ドキュメント 8390
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
カスタムフィルタチェインの指定 13.4.5. 使用例 13.5. zipfile --- ZIP アーカイブの処理 13.5.1. ZipFile オブジェク...
ト 13.5.2. PyZipFile オブジェクト 13.5.3. ZipInfo オブジェクト 13.5.4....
- https://man.plustar.jp/python/library/archiving.html - [similar]
- 11. 標準ライブラリミニツアー --- その 2 — Python 3.6.5 ドキュメント 8390
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア
...
ck() といった関数を提供しています。 以下の例では、 zipfile モジュールを使わずに、ZIP ファイルのヘッダ情報を巡...
れるようにする方法を示しています: import threading , zipfile class AsyncZip ( threading . Thread ): def __init_...
ile self . outfile = outfile def run ( self ): f = zipfile . ZipFile ( self . outfile , 'w' , zipfile . ZIP_D...
- https://man.plustar.jp/python/tutorial/stdlib2.html - [similar]
- 13.6. tarfile --- tar アーカイブファイルの読み書き — Python 3.6.5 ドキュメント 8023
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
イブを読み書きできます。 .zip ファイルの読み書きには zipfile モジュールか、あるいは shutil の高水準関数を使用し...
ォルトのフォーマット。現在は GNU_FORMAT です。 参考 zipfile モジュール zipfile 標準モジュールのドキュメント。...
ze などの属性は修正が必要かもしれません。これは、 GzipFile などの属性に当てはまります。 name も修正できるかも...
13.6.6. Unicode に関する問題 前のトピックへ 13.5. zipfile --- ZIP アーカイブの処理 次のトピックへ 14. ファイ...
- https://man.plustar.jp/python/library/tarfile.html - [similar]
- What's New in Python 2.7 — Python 3.6.5 ドキュメント 8023
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
by Antoine Pitrou; bpo-4688 .) gzip モジュールの GzipFile がコンテキストマネージャープロトコルをサポートしま...
した。 with gzip.GzipFile(...) as f: と書くことができます。(contributed by H...
Contributed by Kristján Valur Jónsson; bpo-6267 .) zipfile モジュールの ZipFile は、コンテキストマネジメントプ...
ロトコルをサポートし、 with zipfile.ZipFile(...) as f: と書けるようになりました。 (Con...
- https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
- 11.9. linecache --- テキストラインにランダムアクセスする — Python 3.6.5 ドキュ... 7906
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ールの、つまり、 sys.path でそのファイルを探します。 zipfileやその他のファイルシステムでないimport元に対応するた...
- https://man.plustar.jp/python/library/linecache.html - [similar]
- What's New in Python 2.6 — Python 3.6.5 ドキュメント 7856
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho
...
uted by Riku Lindblad; bpo-2985 ) を処理できます。 zipfile モジュールの ZipFile クラスに extract() メソッドと...
トディレクトリか指定のディレクトリに展開します: z = zipfile . ZipFile ( 'python-251.zip' ) # Unpack a single f...
tributed by Graham Horler; bpo-1775025 .) 最後に、 zipfile がアーカイブするファイルのファイル名として Unicode...
- https://man.plustar.jp/python/whatsnew/2.6.html - [similar]