Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 17 for dest (0.029 sec.)
36.1. optparse --- コマンドラインオプション解析器 — Python 3.6.5 ドキュメント 14863
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nParser () parser . add_option ( "-f" , "--file" , dest = "filename" , help = "write report to FILE" , met ... tion ( "-q" , "--quiet" , action = "store_false" , dest = "verbose" , default = True , help = "don't print ... で便利なコマンドライン文法を備えています: cp SOURCE DEST cp SOURCE ... DEST - DIR まだあります。ほとんどの ... は、最も重要な四つのオプション属性: action , type , dest (destination), help についてしか触れません。このう ...
https://man.plustar.jp/python/library/optparse.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 10914
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e accumulator' ) parser . add_argument ( '--sum' , dest = 'accumulate' , action = 'store_const' , const = ... cumulator' ) >>> parser . add_argument ( '--sum' , dest = 'accumulate' , action = 'store_const' , ... cons ... 引数の値の表示名に type 引数の値を使用します (通常は dest の値が使用されます): >>> parser = argparse . Argum ... ices ] [ , required ] [ , help ] [ , metavar ] [ , dest ] ) ¶ 1つのコマンドライン引数がどう解析されるかを定 ...
https://man.plustar.jp/python/library/argparse.html - [similar]
28.3. venv --- 仮想環境の作成 — Python 3.6.5 ドキュメント 8966
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tools' , default = False , action = 'store_true' , dest = 'nodist' , help = "Don't install setuptools or p ... o-pip' , default = False , action = 'store_true' , dest = 'nopip' , help = "Don't install pip in the virtu ... kages' , default = False , action = 'store_true' , dest = 'system_site' , help = 'Give the virtual environ ... , default = use_symlinks , action = 'store_true' , dest = 'symlinks' , help = 'Try to use symlinks rather ...
https://man.plustar.jp/python/library/venv.html - [similar]
35.8. pty --- 擬似端末ユーティリティ — Python 3.6.5 ドキュメント 8483
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . ArgumentParser () parser . add_argument ( '-a' , dest = 'append' , action = 'store_true' ) parser . add_ ... argument ( '-p' , dest = 'use_python' , action = 'store_true' ) parser . ...
https://man.plustar.jp/python/library/pty.html - [similar]
18.9. mmap --- メモリマップファイル — Python 3.6.5 ドキュメント 8138
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... す。呼び出しが失敗すると例外が送出されます。 move ( dest , src , count ) ¶ オフセット src から始まる count ... バイトをインデックス dest の位置へコピーします。もし mmap が ACCESS_READ で作 ...
https://man.plustar.jp/python/library/mmap.html - [similar]
16.8. logging.handlers --- ロギングハンドラ — Python 3.6.5 ドキュメント 8069
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ァイル名。 バージョン 3.3 で追加. rotate ( source , dest ) ¶ ローテートが行われる時、現在のログをローテート ... lable だった場合、その callable を呼んで source と dest 引数を渡します。属性が callable でない場合 (デフォ ... ルトは None です)、単に source が destination に改名されます。 パラメータ: source -- ソー ... 常ベースファイル名 、例えば 'test.log' となります。 dest -- 変更先ファイル名。これは通常ソースファイルをロー ...
https://man.plustar.jp/python/library/logging.handlers.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 8069
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... er . add_argument ( '-v' , action = 'store_true' , dest = 'is_verbose' , help = 'produce verbose output' ) ... parser . add_argument ( '-o' , action = 'store' , dest = 'output' , metavar = 'FILE' , help = 'direct out ... _argument ( '-C' , action = 'store' , type = int , dest = 'context' , metavar = 'NUM' , default = 0 , help ... . add_argument ( nargs = '*' , action = 'store' , dest = 'inputs' , help = 'input filenames (default is s ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
16.5. getopt --- C 言語スタイルのコマンドラインオプションパーサ — Python 3.6.5 ... 8017
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... '-o' , '--output' ) parser . add_argument ( '-v' , dest = 'verbose' , action = 'store_true' ) args = parse ...
https://man.plustar.jp/python/library/getopt.html - [similar]
16. 汎用オペレーティングシステムサービス — Python 3.6.5 ドキュメント 7948
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... uired 16.4.3.9. help 16.4.3.10. metavar 16.4.3.11. dest 16.4.3.12. Action クラス 16.4.4. parse_args() メソ ...
https://man.plustar.jp/python/library/allos.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 7948
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... = 'append' , metavar = 'RECIPIENT' , default = [], dest = 'recipients' , help = 'A To: header value (at le ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
PREV 1 2 NEXT