Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 65 for files (0.039 sec.)
Pythonモジュール索引 — Python 3.6.5 ドキュメント 15330
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... s according to PEP 3119. aifc Read and write audio files in AIFF or AIFC format. argparse Command-line opti ... d binary representations. binhex Encode and decode files in binhex4 format. bisect Array bisection algorith ... pileall Tools for byte-compiling all Python source files in a directory tree. concurrent concurrent.futures ... Write and read tabular data to and from delimited files. ctypes A foreign function library for Python. cur ...
https://man.plustar.jp/python/py-modindex.html - [similar]
22.7. imghdr --- 画像の形式を決定する — Python 3.6.5 ドキュメント 12768
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 形式が認識されます: 値 Image format 'rgb' SGI ImgLib Files 'gif' GIF 87a and 89a Files 'pbm' Portable Bitmap ... Files 'pgm' Portable Graymap Files 'ppm' Portable Pixmap Files 'tiff' TIFF Files 'ras ... t' Sun Raster Files 'xbm' X Bitmap Files 'jpeg' JPEG data in JFIF or E ... xif formats 'bmp' BMP files 'png' Portable Network Graphics 'webp' WebP files ...
https://man.plustar.jp/python/library/imghdr.html - [similar]
11.1. pathlib --- オブジェクト指向のファイルシステムパス — Python 3.6.5 ドキュ... 9518
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... せん: >>> PureWindowsPath ( 'c:/Windows' , '/Program Files' ) PureWindowsPath('c:/Program Files') 誤ったスラッ ... ムパスを表します: >>> PureWindowsPath ( 'c:/Program Files/' ) PureWindowsPath('c:/Program Files') pathsegmen ... ( p ) '/etc' >>> p = PureWindowsPath ( 'c:/Program Files' ) >>> str ( p ) 'c:\\Program Files' 同様に、パスオ ... , 'python3') >>> p = PureWindowsPath ( 'c:/Program Files/PSF' ) >>> p . parts ('c:\\', 'Program Files', 'PS ...
https://man.plustar.jp/python/library/pathlib.html - [similar]
11.5. filecmp --- ファイルおよびディレクトリの比較 — Python 3.6.5 ドキュメント 9447
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... て全キャッシュを削除することが出来ます。 filecmp. cmpfiles ( dir1 , dir2 , common , shallow=True ) ¶ dir1 と ... 標準の設定も filecmp.cmp() と同じです。 例えば、 cmpfiles('a', 'b', ['c', 'd/e']) は a/c を b/c と、 a/d/e を ... および b の両方にあるサブディレクトリです。 common_files ¶ a および b の両方にあるファイルです。 common_fun ... os.stat() がエラーを報告するような名前です。 same_files ¶ クラスのファイル比較オペレータを用いて a と b の ...
https://man.plustar.jp/python/library/filecmp.html - [similar]
3. setup 設定ファイル (setup configuration file) を書く — Python 3.6.5 ドキュメ... 8831
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... modules --build-temp (-t) directory for temporary files (build by-products) --inplace (-i) ignore build-li ... dirs (-I) list of directories to search for header files --define (-D) C preprocessor macros to define --un ... e command-line is spelled foo_bar in configuration files. For example, say you want your extensions to be b ... ly generated by the Distutils (such as the list of files installed). But some of it has to be supplied as o ...
https://man.plustar.jp/python/distutils/configfile.html - [similar]
13.5. zipfile --- ZIP アーカイブの処理 — Python 3.6.5 ドキュメント 8273
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... le refers to an existing ZIP file, then additional files are added to it. If file does not refer to a ZIP f ... at all, it is created. If mode is 'r' or 'a' , the file should be seekable. compression is the ZIP compress ... ip64 is True (the default) zipfile will create ZIP files that use the ZIP64 extensions when the zipfile is ... pwd is the password used to decrypt encrypted ZIP files. open() はコンテクストマネージャでもあるので with ...
https://man.plustar.jp/python/library/zipfile.html - [similar]
29.6. contextlib --- with 文コンテキスト用ユーティリティ — Python 3.6.5 ドキュ... 8001
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 単に扱うことができます: with ExitStack () as stack : files = [ stack . enter_context ( open ( fname )) for fn ... ame in filenames ] # All opened files will automatically be closed at the end of # the w ... ith statement, even if attempts to open files later # in the list raise an exception 各インスタン ... 理を次のように書けます: with ExitStack () as stack : files = [ stack . enter_context ( open ( fname )) for fn ...
https://man.plustar.jp/python/library/contextlib.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 8001
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) msg . preamble = 'Our family reunion' # Open the files in binary mode. Use imghdr to figure out the # MIM ... E subtype for each specific image. for file in pngfiles : with open ( file , 'rb' ) as fp : img_data = fp ... erwise use the current directory. Only the regular files in the directory are sent, and we don't recurse to ... heck for simple things like # gzip'd or compressed files. ctype , encoding = mimetypes . guess_type ( path ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 7858
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ction calls or statements, 2to3 cannot always read files containing the print function. When 2to3 detects t ... ion of an alternate directory for processed output files to be written to. The -n flag is required when usi ... ng this as backup files do not make sense when not overwriting the input f ... e -o option was added. The -W or --write-unchanged-files flag tells 2to3 to always write output files even ...
https://man.plustar.jp/python/library/2to3.html - [similar]
2. setup スクリプトを書く — Python 3.6.5 ドキュメント 7715
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ださい 2.7. 追加のファイルをインストールする ¶ data_files オプションを使うと、モジュール配布物で必要な追加の ... ゴリに収まらない全てのファイルを指定できます。 data_files には、( directory , files ) のペアを以下のように指 ... 定します: setup ( ... , data_files = [( 'bitmaps' , [ 'bm/b1.gif' , 'bm/b2.gif' ]), ( ... できないので注意してください。 各々の ( directory , files ) ペアには、インストール先のディレクトリ名と、その ...
https://man.plustar.jp/python/distutils/setupscript.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT