Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 214 for FILE (0.049 sec.)
21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — Python 3.6.5 ド... 5074
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... れません。アップロードされたファイルがあるかどうかは filename 属性および file 属性のいずれかで調べられます。 ... レクションの一部として自動的に閉じられるまでの間に、 file 属性から以下のようにデータを読み込むことができます ... ) および readline() メソッドはバイト列を返します): fileitem = form [ "userfile" ] if fileitem . file : # I ... t's an uploaded file; count lines linecount = 0 while True : line = fil ...
https://man.plustar.jp/python/library/cgi.html - [similar]
27.4. Python プロファイラ — Python 3.6.5 ドキュメント 5074
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... » 27.4. Python プロファイラ ¶ ソースコード: Lib/profile.py と Lib/pstats.py 27.4.1. プロファイラとは ¶ cPr ... ofile と profile は 決定論的プロファイリング (determinis ... tic profiling) を行います。 プロファイル (profile) とは、プログラムの各部分がどれだけ頻繁に呼ばれたか ... を提供するプロファイラの実装を2つ提供しています: cProfile はほとんどのユーザーに推奨されるモジュールです。 C ...
https://man.plustar.jp/python/library/profile.html - [similar]
32.7. tokenize --- Pythonソースのためのトークナイザ — Python 3.6.5 ドキュメント 5074
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... me interface as the io.IOBase.readline() method of file objects. Each call to the function should return o ... 。 tokenize() determines the source encoding of the file by looking for a UTF-8 BOM or encoding cookie, acc ... tokenize() needs to detect the encoding of source files it tokenizes. The function it uses to do this is ... ding that should be used to decode a Python source file. It requires one argument, readline, in the same w ...
https://man.plustar.jp/python/library/tokenize.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 5074
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t. urlopen ( url , data=None , [ timeout , ] * , cafile=None , capath=None , cadefault=False , context=Non ... 細は HTTPSConnection を参照してください。 任意引数 cafile および capath には HTTPS リクエストのための CA 証明 ... 書のセットを指定します。 cafile には CA 証明書のリストを含む 1 個のファイルを指定し ... トを使用して取得できます。 バージョン 3.2 で変更: cafile および capath が追加されました。 バージョン 3.2 で ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
Python モジュールの配布 (レガシーバージョン) — Python 3.6.5 ドキュメント 5043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ッグする 3. setup 設定ファイル (setup configuration file) を書く 4. ソースコード配布物を作成する 4.1. 配布す ... util --- ディレクトリツリーの操作 10.10. distutils.file_util --- 1ファイルの操作 10.11. distutils.util --- ... -- 標準 getopt モジュールのラッパ 10.17. distutils.filelist --- FileList クラス 10.18. distutils.log --- シ ... sconfig --- システム設定情報 10.21. distutils.text_file --- TextFile クラス 10.22. distutils.version --- バ ...
https://man.plustar.jp/python/distutils/index.html - [similar]
Unicode HOWTO — Python 3.6.5 ドキュメント 5043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Unic ... /input.txt' , 'r' ) as f : ... except OSError : # 'File not found' error message. print ( "Fichier non tro ... は以下の2つです: Nick Coghlan による Processing Text Files in Python 3 Ned Batchelder による PyCon 2012 での ... for you: the built-in open() function can return a file-like object that assumes the file's contents are i ... フォルトエンコーディングは UTF-8 になります。 sys.getfilesystemencoding() 関数は現在のシステムで利用するエン ...
https://man.plustar.jp/python/howto/unicode.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 5043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... び出せます。 バージョン 3.2 で追加. logging.config. fileConfig ( fname , defaults=None , disable_existing_l ... それはファイルのようなオブジェクトと仮定され、 read_file() で読み込まれます; そうでない場合、それはファイル ... な設定ファイルの使用。 ファイルから設定を読み込み、 fileConfig に通す前に(例えばコマンドラインパラメータやラ ... が使用されます。ロギング設定は dictConfig() あるいは fileConfig() で処理できるファイルとして送信されます。 T ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
34.3. winreg --- Windows レジストリへのアクセス — Python 3.6.5 ドキュメント 5043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 必要はありません。 winreg. LoadKey ( key , sub_key , file_name ) ¶ 指定されたキーの下にサブキーを生成し、サブ ... 。 sub_key は記録先のサブキーを指定する文字列です。 file_name はレジストリデータを読み出すためのファイル名で ... ConnectRegistry() によって返されたハンドルの場合、 file_name に指定されたパスはリモートコンピュータに対する ... ーブルを参照してください。) winreg. SaveKey ( key , file_name ) ¶ 指定されたキーと、そのサブキー全てを指定し ...
https://man.plustar.jp/python/library/winreg.html - [similar]
10. 完全な文法仕様 — Python 3.6.5 ドキュメント 5043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... single_input is a single interactive statement; # file_input is a module or sequence of commands read fro ... m an input file; # eval_input is the input for the eval() function ... ut : NEWLINE | simple_stmt | compound_stmt NEWLINE file_input : ( NEWLINE | stmt ) * ENDMARKER eval_input ...
https://man.plustar.jp/python/reference/grammar.html - [similar]
5. インポートシステム — Python 3.6.5 ドキュメント 5043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... いモジュールは __path__ 属性を持ってはいけません。 __file__ ¶ __cached__ ¶ __file__ はオプションです。もし設 ... タベースからロードされた場合) インポートシステムは __file__ を未設定のままにしても構いません。 もし __file__ ... ない場所を示しているだけです ( PEP 3147 を参照)。 __file__ が設定されない場合にも __cached__ を設定すること ... ナリオはかなり変則的です。究極的には、ローダーとは __file__ と __cached__ のどちらかまたは両方を利用するもの ...
https://man.plustar.jp/python/reference/import.html - [similar]