Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 130 for No (0.072 sec.)
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 5981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... オブジェクト ¶ class argparse. ArgumentParser ( prog=None , usage=None , description=None , epilog=None , ... rmatter , prefix_chars='-' , fromfile_prefix_chars=None , argument_default=None , conflict_handler='erro ... 引数のヘルプの前に表示されるテキスト (デフォルト: none) epilog - 引数のヘルプの後で表示されるテキスト ( ... デフォルト: none) parents - ArgumentParser オブジェクトのリストで ...
https://man.plustar.jp/python/library/argparse.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 5981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... for parsing headers in a string (this is an uncommon operation), use: headers = Parser ( policy = defaul ... t message \n ' ' \n ' 'Body would go here \n ' ) # Now the header items can be accessed as a dictionary: ... a , maintype = 'image' , subtype = imghdr . what ( None , img_data )) # Send the email via our own SMTP ... ing to your local SMTP server, which then does the normal delivery process. Your local machine must be r ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
19.1.14. email.utils: 多方面のユーティリティ — Python 3.6.5 ドキュメント 5981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... he email.utils module: email.utils. localtime ( dt=None ) ¶ Return local time as an aware datetime objec ... ne database. If dt is naive (that is, dt.tzinfo is None ), it is assumed to be in local time. In this ca ... time (for example, Daylight Saving Time) is or is not (respectively) in effect for the specified time. ... ョン 3.3 で追加. email.utils. make_msgid ( idstring=None , domain=None ) ¶ Returns a string suitable for ...
https://man.plustar.jp/python/library/email.util.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 5981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... に送信します。 class logging. StreamHandler ( stream=None ) ¶ StreamHandler クラスの新たなインスタンスを返 ... ging. FileHandler ( filename , mode='a' , encoding=None , delay=False ) ¶ FileHandler クラスの新たなイン ... 定されなかった場合、 'a' が使われます。 encoding が None でない場合、その値はファイルを開くときのエンコー ... せん。これは本質的には、ライブラリ開発者に使われる 'no-op' ハンドラです。 class logging. NullHandler ¶ Nu ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 5981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tory is enabled by default, and changes to this do not persist across multiple sessions. 6.7.5. 開始フッ ... ll be used as the new hook function; if omitted or None , any function already installed is removed. The ... hook is called with no arguments just before readline prints the first pr ... ll be used as the new hook function; if omitted or None , any function already installed is removed. The ...
https://man.plustar.jp/python/library/readline.html - [similar]
12.3. shelve --- Python オブジェクトの永続化 — Python 3.6.5 ドキュメント 5981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... です。 shelve. open ( filename , flag='c' , protocol=None , writeback=False ) ¶ 永続的な辞書を開きます。指 ... 要となります。 class shelve. Shelf ( dict , protocol=None , writeback=False , keyencoding='utf-8' ) ¶ coll ... ました。 class shelve. BsdDbShelf ( dict , protocol=None , writeback=False , keyencoding='utf-8' ) ¶ Shel ... は、 bsddb.hashopen() , bsddb.btopen() または bsddb.rnopen() のいずれかを呼び出して得られるオブジェクトが条 ...
https://man.plustar.jp/python/library/shelve.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 5981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... をご覧ください。 subprocess. run ( args , * , stdin=None , input=None , stdout=None , stderr=None , shell ... =False , cwd=None , timeout=None , check=False , encoding=None , e ... rrors=None ) ¶ args で指定されたコマンドを実行します。コマン ... rsal_newlines is true. When used, the internal Popen object is automatically created with stdin=PIPE , a ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
29.1. sys --- システムパラメータと関数 — Python 3.6.5 ドキュメント 5981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 境: Windows。 sys. displayhook ( value ) ¶ value が None 以外の時、 repr(value) を sys.stdout に出力し、 ... 擬似コード: def displayhook ( value ): if value is None : return # Set '_' to None to avoid recursion bu ... iltins . _ = None text = repr ( value ) try : sys . stdout . write ... ます。 スタック上で例外が発生していない場合、3 個の None 値のタプルを返します。例外が発生している場合、 ( ...
https://man.plustar.jp/python/library/sys.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 5981
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... t' , 'stop' ], # three allowed values help = 'action on each target' ) # help msg parser . add_argument ... ers positional arguments: {deploy,start,stop} action on each target HOSTNAME url for target machines opt ... conf ) >>> logging . info ( "Transaction completed normally" ) INFO : root : Transaction completed norma ... lly >>> logging . critical ( "Abnormal termination" ) 2011-02-17 11:14:36,694 root CR ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 5872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... rt threading import time def worker ( arg ): while not arg [ 'stop' ]: logging . debug ( 'Hi from myfunc ... ging . getLogger ( '' ) . addHandler ( console ) # Now, we can log to the root logger, or any other logg ... nfo ( 'Jackdaws love my big sphinx of quartz.' ) # Now, define a couple of other loggers which might rep ... です (import は省略): que = queue . Queue ( - 1 ) # no limit on size queue_handler = QueueHandler ( que ) ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT