Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 65 for files (0.070 sec.)
Python 2 から Python 3 への移植 — Python 3.6.5 ドキュメント 7028
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... ichotomy you also need to be careful about opening files. Unless you have been working on Windows, there is ... g., rb for binary reading). Under Python 3, binary files and text files are clearly distinct and mutually i ... ritten). You should also use io.open() for opening files instead of the built-in open() function as the io ...
https://man.plustar.jp/python/howto/pyporting.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 6956
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... in order to create a very basic webserver serving files relative to the current directory: import http.ser ... ment. Similar to the previous example, this serves files relative to the current directory: python - m http ... ss , server ) ¶ This class is used to serve either files or output of CGI scripts from the current director ...
https://man.plustar.jp/python/library/http.server.html - [similar]
3. Windows で Python を使う — Python 3.6.5 ドキュメント 6956
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... 者資格か承認が必要かもしれません。 Python は Program Files ディレクトリにインストールされます。 Windows の Py ... KEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem@LongPathsEnabled の値を 1 に設定する必要があり ... ためのデフォルトインストール先ディレクトリ。 %ProgramFiles%\Python X.Y または %ProgramFiles(x86)%\Python X.Y ... してデフォルトで GUI に表示される値。 (空) AssociateFiles ランチャもインストールする場合に、ファイルの関連付 ...
https://man.plustar.jp/python/using/windows.html - [similar]
Python モジュールのインストール (旧版) — Python 3.6.5 ドキュメント 6885
ナビゲーション 索引 モジュール | 前へ | Python » 3.6.5 ドキュメント » Python モジュールのインスト ... 、 1.5.2、およびそれ以前のバージョンでは C:\Program Files\Python です。 prefix and exec-prefix stand for the ... on 1.5.2 ではデフォルトのプレフィクスは C:\Program Files\Python であり、Distutils は標準ライブラリの一部では ... は、 Windows 用の標準の Python 1.5.2 では C:\Program Files\Python\distutils\distutils.cfg になります。 Window ... ke the build* commands always forcibly rebuild all files with the following: [build] build-base = blib forc ...
https://man.plustar.jp/python/install/index.html - [similar]
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 6827
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ライズできます: >>> from hashlib import blake2b >>> FILES_HASH_PERSON = b 'MyApp Files Hash' >>> BLOCK_HASH_ ... ash' >>> h = blake2b ( digest_size = 32 , person = FILES_HASH_PERSON ) >>> h . update ( b 'the same content ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 6827
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... kupCount is non-zero, the system will save old log files by appending the extensions '.1', '.2' etc., to th ... ed, it is closed and renamed to app.log.1 , and if files app.log.1 , app.log.2 , etc. exist, then they are ... is set, that does not mean you will always see log files with times (in the filename) separated by a minute ... than once a minute, then you can expect to see log files with times separated by a minute. If, on the other ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 6827
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tokenize() needs to detect the encoding of source files it tokenizes. The function it uses to do this is a ... 8' が返されます。 Use open() to open Python source files: it uses detect_encoding() to detect the file enco ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
27.4. Python プロファイラ — Python 3.6.5 ドキュメント 6756
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 力は stream で指定したストリームに出力されます。 The file selected by the above constructor must have been cr ... this profiler, and there is no compatibility with files produced by other profilers. If several files are ... an be considered in a single report. If additional files need to be combined with data in an existing Stats ...
https://man.plustar.jp/python/library/profile.html - [similar]
28.4. zipapp --- 実行可能な python zip 書庫を管理する — Python 3.6.5 ドキュメン... 6756
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ler. The basic approach relies on the fact that zipfiles can have arbitrary data prepended, and Windows exe ... files can have arbitrary data appended. So by creating a ... itation, as executable code must be present in the filesystem for the OS loader to load it). In this case, ... chive Format ¶ Python has been able to execute zip files which contain a __main__.py file since version 2.6 ...
https://man.plustar.jp/python/library/zipapp.html - [similar]
21.13. ftplib --- FTPプロトコルクライアント — Python 3.6.5 ドキュメント 6684
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... just the string 'LIST' ). LIST retrieves a list of files and information about those files. NLST retrieves ...
https://man.plustar.jp/python/library/ftplib.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT