Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 140 for Use (0.039 sec.)
Logging クックブック — Python 3.6.5 ドキュメント 5707
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... INFO ) # set a format which is simpler for console use formatter = logging . Formatter ( ' %(name)-12s : ... evelname)-8s %(message)s ' ) # tell the handler to use this format console . setFormatter ( formatter ) # ... rd ( self , record ): # if a name is specified, we use the named logger rather than the one # implied by ... ame ) # N.B. EVERY record gets logged. This is because Logger.handle # is normally called AFTER logger-le ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
Python モジュールのインストール — Python 3.6.5 ドキュメント 5707
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... vironment that allows packages to be installed for use by a particular application, rather than being ins ... decessor) to. It allows virtual environments to be used on versions of Python prior to 3.4, which either ... f open source licensed packages made available for use by other Python users. Python Packaging Authority ... venv の使用をお勧めします。 参考 Python Packaging User Guide: Creating and using virtual environments 基 ...
https://man.plustar.jp/python/installing/index.html - [similar]
18.5.3. タスクとコルーチン — Python 3.6.5 ドキュメント 5707
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rator-based coroutines. This enables the generator use yield from to call async def coroutines, and also ... in the future. If such a function is needed to be used in a callback-style code, wrap its result with en ... e () 参考 The Hello World with call_soon() example uses the AbstractEventLoop.call_soon() method to sched ... display the current date with call_later() example uses a callback with the AbstractEventLoop.call_later( ...
https://man.plustar.jp/python/library/asyncio-task.html - [similar]
14.2. configparser --- 設定ファイルのパーサー — Python 3.6.5 ドキュメント 5707
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... pressionLevel = 9 ForwardX11 = yes [bitbucket.org] User = hg [topsecret.server.com] Port = 50022 ForwardX ... ucket.org' ] = {} >>> config [ 'bitbucket.org' ][ 'User' ] = 'hg' >>> config [ 'topsecret.server.com' ] = ... ' in config False >>> config [ 'bitbucket.org' ][ 'User' ] 'hg' >>> config [ 'DEFAULT' ][ 'Compression' ] ... y in config [ 'bitbucket.org' ]: print ( key ) ... user compressionlevel serveraliveinterval compression ...
https://man.plustar.jp/python/library/configparser.html - [similar]
36.1. optparse --- コマンドラインオプション解析器 — Python 3.6.5 ドキュメント 5707
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... onGroup ( parser , "Dangerous Options" , "Caution: use these options at your own risk. " "It is believed ... default: intermediate] Dangerous Options: Caution: use these options at your own risk. It is believed tha ... onGroup ( parser , "Dangerous Options" , "Caution: use these options at your own risk. " "It is believed ... default: intermediate] Dangerous Options: Caution: use these options at your own risk. It is believed tha ...
https://man.plustar.jp/python/library/optparse.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 5707
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... PEP 238 : An expression like 1/2 returns a float. Use 1//2 to get the truncating behavior. (The latter s ... ules were removed. Some, like gopherlib (no longer used) and md5 (replaced by hashlib ), were already dep ... selected for removal in Python 3.0 due to lack of use or because a better replacement exists. See PEP 31 ... 的に保守されています。 Some modules were renamed because their old name disobeyed PEP 8 , or for various ot ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
32.2. ast --- 抽象構文木 — Python 3.6.5 ドキュメント 5636
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ession(expr body) -- not really an actual node but useful in Jython's typesystem. | Suite(stmt* body) stm ... rget, expr annotation, expr? value, int simple) -- use 'orelse' because else is a keyword in target langu ... tem* items, stmt* body) | Raise(expr? exc, expr? cause) | Try(stmt* body, excepthandler* handlers, stmt* ... t is the byte offset in the utf8 string the parser uses attributes (int lineno, int col_offset) -- BoolOp ...
https://man.plustar.jp/python/library/ast.html - [similar]
18.6. asyncore --- 非同期ソケットハンドラ — Python 3.6.5 ドキュメント 5636
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... じるまで継続します。 asyncore. loop ( [ timeout [ , use_poll [ , map [ , count ] ] ] ] ) ¶ ポーリングループ ... 、秒単位で指定します。デフォルト値は 30 秒です。引数 use_poll が真の場合、 select() ではなく poll() が使われ ... ルを参照のこと。) ソケットを再利用可能にする ( SO_REUSEADDR オプションを設定する) には、 dispatcher オブジ ... ェクトの set_reuse_addr() メソッドを呼び出してください。 accept ( ) ¶ ...
https://man.plustar.jp/python/library/asyncore.html - [similar]
24.2. cmd --- 行指向のコマンドインタープリタのサポート — Python 3.6.5 ドキュメ... 5636
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 引数に渡した stdin を使いたい場合は、インスタンスの use_rawinput 属性を False にセットしてください。そうし ... 行が表示されません。デフォルトでは、 '=' です。 Cmd. use_rawinput ¶ フラグで、デフォルトでは真です。真ならば ...
https://man.plustar.jp/python/library/cmd.html - [similar]
16.6. logging --- Python 用ロギング機能 — Python 3.6.5 ドキュメント 5636
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... er is created, the level is set to NOTSET (which causes all messages to be processed when the logger is t ... てください: FORMAT = ' %(asctime)-15s %(clientip)s %(user)-8s %(message)s ' logging . basicConfig ( format ... = FORMAT ) d = { 'clientip' : '192.168.0.1' , 'user' : 'fbloggs' } logger = logging . getLogger ( 'tc ... ら、少し注意が必要です。上の例では、 'clientip' と 'user' が LogRecord の属性辞書に含まれていることを期待し ...
https://man.plustar.jp/python/library/logging.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT