Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 23 for policy (0.029 sec.)
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 12483
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... メールと MIME 処理のためのパッケージ » 19.1.4. email.policy : ポリシーオブジェクト ¶ バージョン 3.3 で追加. ソ ... ースコード: Lib/email/policy.py email パッケージの主要な目的は様々なEメールやMI ... 成するときです。 これらのばらばらな用途に対応するためPolicyオブジェクトはEメールパッケージに対して柔軟性を提供し ... ます。 A Policy object encapsulates a set of attributes and method ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 12048
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... rser and the EmailMessage class is embodied in the policy class, so a custom parser can create message objec ... by implementing custom versions of the appropriate policy methods. 19.1.2.1. FeedParser API ¶ The BytesFeedP ... mail.parser. BytesFeedParser ( _factory=None , * , policy=policy.compat32 ) ¶ Create a BytesFeedParser insta ... if not specified use the message_factory from the policy . Call _factory whenever a new message object is n ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 11511
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s are inverses, assuming the same non-transforming policy is used for both. That is, parsing the serialized ... utfp , mangle_from_=None , maxheaderlen=None , * , policy=None ) ¶ Return a BytesGenerator object that will ... ts to the value of the mangle_from_ setting of the policy (which is True for the compat32 policy and False f ... p headers and other message lines according to the policy settings. If policy is specified, use that policy ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
19.1.10. email.mime: メールと MIME オブジェクトを一から作成 — Python 3.6.5 ドキ... 10070
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... l.mime.base. MIMEBase ( _maintype , _subtype , * , policy=compat32 , **_params ) ¶ モジュール: email.mime.ba ... り、これは直接 Message.add_header に渡されます。 If policy is specified, (defaults to the compat32 policy) it ... される) を追加します。 バージョン 3.6 で変更: Added policy keyword-only parameter. class email.mime.nonmultip ... ype='mixed' , boundary=None , _subparts=None , * , policy=compat32 , **_params ) ¶ モジュール: email.mime.mu ...
https://man.plustar.jp/python/library/email.mime.html - [similar]
18.5.2. イベントループ — Python 3.6.5 ドキュメント 9819
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 供するものであり、プロセスの実行前に set_event_loop_policy() を呼び出して設定された代替ポリシーには適用できな ... さい。 asyncio. get_event_loop ( ) ¶ get_event_loop_policy().get_event_loop() の呼び出しと等価です。 asyncio. ... set_event_loop ( loop ) ¶ get_event_loop_policy().set_event_loop(loop) の呼び出しと等価です。 asyn ... cio. new_event_loop ( ) ¶ get_event_loop_policy().new_event_loop() の呼び出しと等価です。 18.5.2.2 ...
https://man.plustar.jp/python/library/asyncio-eventloops.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 9417
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ssage objects. class email.message. EmailMessage ( policy=default ) ¶ If policy is specified use the rules i ... nd serialize the representation of the message. If policy is not set, use the default policy, which follows ... ard \n line endings). For more information see the policy documentation. as_string ( unixfrom=False , maxhea ... derlen=None , policy=None ) ¶ Return the entire message flattened as a ...
https://man.plustar.jp/python/library/email.message.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 8646
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ibes the behavior under the default (for Message ) policy Compat32 . If you are going to use another policy, ... ドは以下のとおりです: class email.message. Message ( policy=compat32 ) ¶ If policy is specified (it must be an ... instance of a policy class) use the rules it specifies to update and se ... rialize the representation of the message. If policy is not set, use the compat32 policy, which maintai ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 8411
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... mail.parser import BytesParser , Parser from email.policy import default # If the e-mail headers are in a fi ... (messagefile, 'rb') as fp: # headers = BytesParser(policy=default).parse(fp) # Or for parsing headers in a s ... is an uncommon operation), use: headers = Parser ( policy = default ) . parsestr ( 'From: Foo Bar <user@exam ... from email.message import EmailMessage from email.policy import SMTP def main (): parser = ArgumentParser ( ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 8378
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... one way or another.) The control component is the policy module. Every EmailMessage , every generator , and ... every parser has an associated policy object that controls its behavior. Usually an appl ... ication only needs to specify the policy when an EmailMessage is created, either by directl ... y parsing an input stream using a parser . But the policy can be changed when the message is serialized usin ...
https://man.plustar.jp/python/library/email.html - [similar]
21.24. http.cookiejar --- HTTP クライアント用の Cookie 処理 — Python 3.6.5 ドキ... 8043
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 提供されています: class http.cookiejar. CookieJar ( policy=None ) ¶ policy は CookiePolicy インターフェイスを ... iejar. FileCookieJar ( filename , delayload=None , policy=None ) ¶ policy は CookiePolicy インターフェイスを ... の連携 節で説明します。 class http.cookiejar. CookiePolicy ¶ このクラスは、あるクッキーをサーバから受け入れる ... を負っています。 class http.cookiejar. DefaultCookiePolicy ( blocked_domains=None , allowed_domains=None , ne ...
https://man.plustar.jp/python/library/http.cookiejar.html - [similar]
PREV 1 2 3 NEXT