Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 241 - 250 of about 274 for IN (0.075 sec.)
Python モジュールのインストール — Python 3.6.5 ドキュメント 4089
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ated Python environment that allows packages to be installed for use by a particular application, rather ... than being installed system wide. venv は仮想環境をつくるため ... ovide venv at all, or aren't able to automatically install pip into created environments. The Python Pac ... kaging Index is a public repository of open source licen ...
https://man.plustar.jp/python/installing/index.html - [similar]
32.11. compileall --- Python ライブラリをバイトコンパイル — Python 3.6.5 ドキュ... 4089
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ディレクトリのリストに加えます。 list が - なら、 stdin の行を読み込みます。 -b ¶ バイトコードファイルを、 ... , force = True ) # Perform same compilation, excluding files in .svn directories. import re compileall . ... 11, 2022 バグを見つけたら ? このドキュメントは Sphinx 1.8.5 を使って作成されました。 ...
https://man.plustar.jp/python/library/compileall.html - [similar]
21.23. http.cookies --- HTTPの状態管理 — Python 3.6.5 ドキュメント 4089
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... く構文解析規則にせざるを得ませんでした。 文字集合 string.ascii_letters 、 string.digits 、 !#$%&'*+-.^_`|~ ... 生する例外です。 class http.cookies. BaseCookie ( [ input ] ) ¶ このクラスはキーが文字列、値が Morsel イン ... 値を含む Morsel に変換されることに注意してください。 input が与えられたときは、そのまま load() メソッドへ渡 ... されます。 class http.cookies. SimpleCookie ( [ input ] ) ¶ このクラスは BaseCookie の派生クラスで、 ...
https://man.plustar.jp/python/library/http.cookies.html - [similar]
21. インターネットプロトコルとサポート — Python 3.6.5 ドキュメント 4089
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... バー 21.18.1. SMTPServer オブジェクト 21.18.2. DebuggingServer オブジェクト 21.18.3. PureProxy オブジェクト ... Telnet Example 21.20. uuid --- UUID objects according to RFC 4122 21.20.1. 使用例 21.21. socketserver - ... tserver.UDPServer の例 21.21.4.3. 非同期処理の Mix-in 21.22. http.server --- HTTP サーバ 21.23. http.coo ... ブジェクト 21.26.2. DateTime オブジェクト 21.26.3. Binary オブジェクト 21.26.4. Fault オブジェクト 21.26. ...
https://man.plustar.jp/python/library/internet.html - [similar]
31.4. runpy --- Python モジュールの位置特定と実行 — Python 3.6.5 ドキュメント 4089
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 関数を提供しています: runpy. run_module ( mod_name , init_globals=None , run_name=None , alter_sys=False ) ... module, then that package is imported and the __main__ submodule within that package is then executed a ... nd the resulting module globals dictionary returned. オプションの辞 ... 書型引数 init_globals はコードを実行する前にモジュールグローバ ...
https://man.plustar.jp/python/library/runpy.html - [similar]
18.4. selectors --- 高水準の I/O 多重化 — Python 3.6.5 ドキュメント 4089
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... されているファイルオブジェクトのタイプは異なります: Windows ではソケットはサポートされますが、パイプはされ ... られた SelectorKey インスタンスにマッピングする Mapping のインスタンスを返します。 class selectors. Defau ... conn , addr = sock . accept () # Should be ready print ( 'accepted' , conn , 'from' , addr ) conn . setb ... locking ( False ) sel . register ( conn , selectors . EVE ...
https://man.plustar.jp/python/library/selectors.html - [similar]
12.3. shelve --- Python オブジェクトの永続化 — Python 3.6.5 ドキュメント 4089
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( dict , protocol=None , writeback=False , keyencoding='utf-8' ) ¶ collections.abc.MutableMapping のサブ ... て閉じる際に長い時間がかかるようになります。 keyencoding パラメータは、shelf の背後にある dict に対して使わ ... 動的に閉じられます。 バージョン 3.2 で変更: keyencoding パラメータを追加; 以前はキーは常に UTF-8 でエンコ ... ( dict , protocol=None , writeback=False , keyencoding='utf-8' ) ¶ Shelf のサブクラスで、 first() , next ...
https://man.plustar.jp/python/library/shelve.html - [similar]
21.19. telnetlib --- Telnet クライアント — Python 3.6.5 ドキュメント 4089
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... Telnet object is a context manager and can be used in a with statement. When the with block ends, the cl ... with Telnet ( 'localhost' , 23 ) as tn : ... tn . interact () ... バージョン 3.6 で変更: Context manage ... れは現在では OSError の別名になっています。 Telnet. interact ( ) ¶ 非常に低機能の telnet クライアントをエ ... ミュレートする対話関数です。 Telnet. mt_interact ( ) ¶ interact() のマルチスレッド版です。 Te ...
https://man.plustar.jp/python/library/telnetlib.html - [similar]
27.6. trace --- Python 文実行のトレースと追跡 — Python 3.6.5 ドキュメント 4089
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... kage / module .cover に書き込まれます。 -m , --missing ¶ 注釈付きリストの生成時に、実行されなかった行に ... 付きリストを生成するような場合に便利です。 -g , --timing ¶ 各行の先頭にプログラム開始からの時間を付けます。 ... , countcallers=0 , ignoremods=() , ignoredirs=() , infile=None , outfile=None , timing=False ) ¶ 文 (sta ... ッケージやモジュールを含むディレクトリのリストです。 infile は保存された集計 (count) 情報を読むファイルの名 ...
https://man.plustar.jp/python/library/trace.html - [similar]
20.6. xml.dom --- 文書オブジェクトモデル (DOM) API — Python 3.6.5 ドキュメント 4089
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ェクトモデル (DOM) API ¶ ソースコード: Lib/xml/dom/__init__.py 文書オブジェクトモデル (Document Object Mod ... Object Model (DOM) Level 1 Specification xml.dom.minidom でサポートされている W3C の DOM に関する勧告。 ... Python Language Mapping Specification このドキュメントでは OMG IDL から P ... して使われます。 xml.dom. XML_NAMESPACE ¶ Namespaces in XML (4 節) で定義されている、予約済みプレフィクス ...
https://man.plustar.jp/python/library/xml.dom.html - [similar]