Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 273 for THE (0.117 sec.)
31.2. pkgutil --- パッケージ拡張ユーティリティ — Python 3.6.5 ドキュメント 4991
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s None , a PEP 302 finder is created that searches the current sys.path , plus any modules that are froze ... loader ( fullname ) ¶ Retrieve a module loader for the given fullname . これは後方互換性のために提供してい ... get_importer ( path_item ) ¶ Retrieve a finder for the given path_item . The returned finder is cached in ... porters ( fullname='' ) ¶ Yield finder objects for the given module name. If fullname contains a '.', the ...
https://man.plustar.jp/python/library/pkgutil.html - [similar]
31.4. runpy --- Python モジュールの位置特定と実行 — Python 3.6.5 ドキュメント 4991
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 定され、まっさらなモジュール名前空間で実行されます。 The mod_name argument should be an absolute module nam ... e. If the module name refers to a package rather than a norm ... al module, then that package is imported and the __main__ submodu ... le within that package is then executed and the resulting module globals diction ...
https://man.plustar.jp/python/library/runpy.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 4991
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... バリデーションツールを提供します。 https://wsgi.readthedocs.org/ に、WSGIに関するさらなる情報と、チュートリ ... y simple WSGI application. It's going to print out the # environment dictionary after being updated by se ... FileWrapper # We're using a StringIO-buffer for as the file-like object filelike = StringIO ( "This is an ... serve_forever () # Alternative: serve one request, then exit httpd . handle_request () wsgiref.simple_ser ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 4981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ました。 注釈 If you want to send configurations to the listener which don't disable existing loggers, you ... will need to use a JSON format for the configuration, which will use dictConfig() for con ... ou to specify disable_existing_loggers as False in the configuration you send. logging.config. stopListen ... 'h1' goes here formatter : brief h2 : #This is another id # configuration of handler with id 'h2' goes h ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 4962
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... type = int , nargs = '+' , help = 'an integer for the accumulator' ) parser . add_argument ( '--sum' , d ... const' , const = sum , default = max , help = 'sum the integers (default: find the max)' ) args = parser ... e integers. positional arguments: N an integer for the accumulator optional arguments: -h, --help show th ... is help message and exit --sum sum the integers (default: find the max) 適切な引数を与えて ...
https://man.plustar.jp/python/library/argparse.html - [similar]
変更履歴 — Python 3.6.5 ドキュメント 4942
Filter entries by content:', ' ', ' ' ].join('\n')); function dofilter() { try { var query = new ... ; // not a valid regex (yet) } // find headers for the versions (What's new in Python X.Y.Z?) $('#changel ... ent(); var sections_found = 0; // find headers for the sections (Core, Library, etc.) h2_parent.find('h3' ... $(h3).parent(); var entries_found = 0; // find all the entries h3_parent.find('li').each(function(index3, ... li) { var li = $(li); // check if the query matches the entry if (query.test(li.text())) ...
https://man.plustar.jp/python/whatsnew/changelog.html - [similar]
What's New In Python 3.1 — Python 3.6.5 ドキュメント 4932
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... rett Cannon.) 最適化 ¶ 大きな性能向上がありました: The new I/O library (as defined in PEP 3116 ) was most ... oblematic bottleneck in Python 3.0. In Python 3.1, the I/O library has been entirely rewritten in C and i ... s 2 to 20 times faster depending on the task at hand. The pure Python version is still ava ... ilable for experimentation purposes through the _pyio module. (Contributed by Amaury Forgeot d'Arc ...
https://man.plustar.jp/python/whatsnew/3.1.html - [similar]
18.5.2. イベントループ — Python 3.6.5 ドキュメント 4913
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ers of asyncio , policies never have to be dealt with explicitly, since the default global policy is suff ... icient (see below). The module-level functions get_event_loop() and set_ev ... rovide convenient access to event loops managed by the default policy. 18.5.2.5. イベントループポリシーイ ... 得します。 Returns an event loop object implementing the AbstractEventLoop interface. 現在のコンテキストに設 ...
https://man.plustar.jp/python/library/asyncio-eventloops.html - [similar]
urllib パッケージを使ってインターネット上のリソースを取得するには — Python 3.6.... 4884
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » urll ... ースを取得するのに以下の記事が役に立ちます: Basic Authentication Basic 認証 についてのチュートリアルで Pyt ... tore it in a temporary location, you can do so via the urlretrieve() function: import urllib.request loca ... h urllib . request . urlopen ( req ) as response : the_page = response . read () urllib.request は同じリク ... h urllib . request . urlopen ( req ) as response : the_page = response . read () 他のエンコーディングが必 ...
https://man.plustar.jp/python/howto/urllib2.html - [similar]
デスクリプタ HowTo ガイド — Python 3.6.5 ドキュメント 4864
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » デス ... turns values normally and prints a message logging their access. """ def __init__ ( self , initval = None ... ar "x" >>> m . x Retrieving var "x" 20 >>> m . y 5 The protocol is simple and offers exciting possibiliti ... es. Several use cases are so common that they have been packaged into individual function calls ... static methods, and class methods are all based on the descriptor protocol. プロパティ ¶ property() を呼び ...
https://man.plustar.jp/python/howto/descriptor.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT