Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 178 for This (0.067 sec.)
Argparse チュートリアル — Python 3.6.5 ドキュメント 6132
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argp ... : prog.py [-h] optional arguments: -h, --help show this help message and exit $ python3 prog.py --verbose ... rguments: echo optional arguments: -h, --help show this help message and exit $ python3 prog.py foo foo こ ... g you use here optional arguments: -h, --help show this help message and exit 次は、もっと有益なことをして ... ity VERBOSITY] optional arguments: -h, --help show this help message and exit --verbosity VERBOSITY increa ...
https://man.plustar.jp/python/howto/argparse.html - [similar]
24.3. shlex --- 単純な字句解析 — Python 3.6.5 ドキュメント 6132
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... stream argument is omitted or equal to sys.stdin , this second argument defaults to "stdin". The posix arg ... he behaviour even closer to how real shells parse. This can take a number of values: the default value, Fa ... command line parameters, will also be included in this attribute, and any characters which appear in punc ... f True , tokens will only be split in whitespaces. This is useful, for example, for parsing command lines ...
https://man.plustar.jp/python/library/shlex.html - [similar]
3. setup 設定ファイル (setup configuration file) を書く — Python 3.6.5 ドキュメ... 6076
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... the --inplace option on the command-line to ensure this: python setup.py build_ext --inplace But this requ ... e --inplace . An easier way is to "set and forget" this option, by encoding it in setup.cfg , the configur ... ation file for this distribution: [build_ext] inplace = 1 この設定は、 ... ec" file for creating an RPM distribution. Some of this information comes from the setup script, and some ...
https://man.plustar.jp/python/distutils/configfile.html - [similar]
6.2. re --- 正規表現操作 — Python 3.6.5 ドキュメント 6076
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... umerics are the ones used in Unicode patterns, but this can be changed by using the ASCII flag. Word bound ... when it is not at the beginning or end of a word. This means that r'py\B' matches 'python' , 'py3' , 'py2 ... Unicode alphanumerics or the underscore, although this can be changed by using the ASCII flag. Word bound ... . The current locale does not change the effect of this flag unless the re.LOCALE flag is also used. Corre ...
https://man.plustar.jp/python/library/re.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 6076
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... ter each statement in the interactive interpreter. This only works on debug builds. -X tracemalloc は trac ... d objects for each type when the program finishes. This only works when Python was built with COUNT_ALLOCS ... X でのみ動作します。 PYTHONDONTWRITEBYTECODE ¶ If this is set to a non-empty string, Python won't try to ... write .pyc files on the import of source modules. This is equivalent to specifying the -B option. PYTHONH ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 6021
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... their digest methods require a length. Maximum length is not limited by the SHAKE algorithm. shake. digest ... of the data passed to the update() method so far. This is a bytes object of size length which may contain ... sonalization parameters, however, for convenience, this implementation accepts byte strings of any size up ... ample, b'salt' and b'salt\x00' is the same value. (This is not the case for key .) これらのサイズは以下に述 ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 5976
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... t).parse(fp) # Or for parsing headers in a string (this is an uncommon operation), use: headers = Parser ( ... = args . sender msg . preamble = 'You will not see this in a MIME-aware mail reader. \n ' for filename in ... urious-203718 --Pepé """ ) # Add the html version. This converts the message into a multipart/alternative ... BytesParser # An imaginary module that would make this work and be safe. from imaginary import magic_html ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
18.7. asynchat --- 非同期ソケットコマンド/レスポンスハンドラ — Python 3.6.5 ド... 5920
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ts more() method return the empty bytes object. At this point the async_chat object removes the producer f ... ( ) ¶ Pushes a None on to the producer queue. When this producer is popped off the queue it causes the cha ... 。 async_chat. discard_buffers ( ) ¶ In emergencies this method will discard any data held in the input and ... to the channel's queue to ensure its transmission. This is all you need to do to have the channel write th ...
https://man.plustar.jp/python/library/asynchat.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 5920
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... to the HTTP protocol must be used when writing to this stream in order to achieve successful interoperati ... on with HTTP clients. バージョン 3.6 で変更: This is an io.BufferedIOBase stream. BaseHTTPRequestHan ... tp.client.HTTPMessage になっています。 responses ¶ This attribute contains a mapping of error code integer ... rovided; for unknown codes the default value for both is the string ??? . The body will be empty if the me ...
https://man.plustar.jp/python/library/http.server.html - [similar]
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 5920
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... story file. The write_history_file() function uses this value to truncate the history file, by calling his ... Auto history is enabled by default, and changes to this do not persist across multiple sessions. 6.7.5. 開 ... t before readline starts reading input characters. This function only exists if Python was compiled for a ... to implementing a custom word completion function. This is typically operated by the Tab key, and can sugg ...
https://man.plustar.jp/python/library/readline.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT