Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 273 for THE (0.026 sec.)
19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 6960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 、 RFC 2231 などのMIME関連のRFCに対応しています。 The overall structure of the email package can be divi ... components, plus a fourth component that controls the behavior of the other components. The central comp ... onent of the package is an "object model" that represents email ... messages. An application interacts with the package primarily through the object model interfa ...
https://man.plustar.jp/python/library/email.html - [similar]
16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 6931
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... I に合致するように設計されています。 注釈 Whenever the documentation mentions a character it can be speci ... Unicode string or a one-byte byte string. Whenever the documentation mentions a character string it can b ... す。 curses. color_content ( color_number ) ¶ Return the intensity of the red, green, and blue (RGB) compon ... ents in the color color_number , which must be between 0 and C ...
https://man.plustar.jp/python/library/curses.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 6853
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 返します。 inspect. getmodulename ( path ) ¶ Return the name of the module named by the file path , withou ... t including the names of enclosing packages. The file extension is ... checked against all of the entries in importlib.machinery.all_suffixes() . If ... it matches, the final path component is returned with the extensio ...
https://man.plustar.jp/python/library/inspect.html - [similar]
What's New In Python 3.5 — Python 3.6.5 ドキュメント 6833
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... me )) async with lock : print ( 'coro {} : holding the lock' . format ( name )) await asyncio . sleep ( 1 ... ) print ( 'coro {} : releasing the lock' . format ( name )) loop = asyncio . get_even ... op () lock = asyncio . Lock () coros = asyncio . gather ( coro ( 1 , lock ), coro ( 2 , lock )) try : loo ... の出力は: coro 2 : waiting for lock coro 2 : holding the lock coro 1 : waiting for lock coro 2 : releasing ...
https://man.plustar.jp/python/whatsnew/3.5.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 6804
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... sage.Message : Representing an email message using the compat32 API ¶ The Message class is very similar t ... o the EmailMessage class, without the methods added by t ... hat class, and with the default behavior of certain other methods being sl ... ightly different. We also document here some methods that, while supported by the Email ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 6804
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... how to create and send a simple text message (both the text content and the addresses may contain unicode ... characters): # Import smtplib for the actual sending function import smtplib # Import th ... need from email.message import EmailMessage # Open the plain text file whose name is in textfile for read ... ssage () msg . set_content ( fp . read ()) # me == the sender's email address # you == the recipient's em ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 6765
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... turn_value ... instance . method . return_value = 'the result' ... result = some_function () ... assert r ... esult == 'the result' 26.6.1.4. モックに名前をつける ¶ モックに名 ... n also enables a smarter matching of calls made to the mock, regardless of whether some parameters were p ... smarter matching to also work with method calls on the mock, you can use auto-speccing . 任意の属性の参照 ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 6726
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... _ __future__ Future statement definitions __main__ The environment where the top-level script is run. _du ... mmy_thread Drop-in replacement for the _thread module. _thread Low-level threading API. a ... isection algorithms for binary searching. builtins The module that provides the built-in namespace. bz2 I ... orking with calendars, including some emulation of the Unix cal program. cgi Helpers for running Python s ...
https://man.plustar.jp/python/py-modindex.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 6707
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nstead, or let ssl.create_default_context() select the system's trusted CA certificates for you. The chec ... k_hostname parameter is also deprecated; the ssl.SSLContext.check_hostname attribute of context ... Raised if an excessively long line is received in the HTTP protocol from the server. exception http.clie ... Line . Raised by HTTPConnection.getresponse() when the attempt to read the response results in no data re ...
https://man.plustar.jp/python/library/http.client.html - [similar]
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 6687
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... ts. そんなにむずかしくありません、よね? Of course, the current Custom type is pretty uninteresting. It ha ... ubclassed. 注釈 While this documentation showcases the standard distutils module for building C extension ... , it is recommended in real-world use cases to use the newer and better-maintained setuptools library. Do ... out of scope for this document and can be found in the Python Packaging User's Guide . 2.2. 基本のサンプル ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT