Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 11 for EmailMessage (0.024 sec.)
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 11540
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... [1] The central class in the email package is the EmailMessage class, imported from the email.message module. It ... is the base class for the email object model. EmailMessage provides the core functionality for setting and qu ... for creating or modifying structured messages. An email message consists of headers and a payload (which is also ... ssage/rfc822 . The conceptual model provided by an EmailMessage object is that of an ordered dictionary of headers ...
https://man.plustar.jp/python/library/email.message.html - [similar]
19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 11309
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... f the package is an "object model" that represents email messages. An application interacts with the package prima ... model interface. That is, following the nature of email messages and their MIME subcomponents, the email object m ... s a tree structure of objects that all provide the EmailMessage API. The other two major components of the package ... or . The parser takes the serialized version of an email message (a stream of bytes) and converts it into a tree o ...
https://man.plustar.jp/python/library/email.html - [similar]
19.1.9. email.message.Message: Representing an email message using the compat32 ... 9868
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... » 19.1.9. email.message.Message : Representing an email message using the compat32 API ¶ The Message class is ver ... y similar to the EmailMessage class, without the methods added by that class, an ... ent here some methods that, while supported by the EmailMessage class, are not recommended unless you are dealing ... ing to use another policy, you should be using the EmailMessage class instead. An email message consists of header ...
https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 9868
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... f the part as either a string (for text parts), an EmailMessage object (for message/rfc822 parts), or a bytes obje ... None ) email.contentmanager. set_content ( msg , <'EmailMessage'> , cte=None , disposition=None , filename=None , ... r raise a TypeError if they are not specified. For EmailMessage objects, set the maintype to message , and set the ... l parts). For <'list'> , which should be a list of EmailMessage objects, set the maintype to multipart , and the s ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 9868
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... email modules we'll need from email.message import EmailMessage # Open the plain text file whose name is in textfi ... file ) as fp : # Create a text/plain message msg = EmailMessage () msg . set_content ( fp . read ()) # me == the s ... ckage modules we'll need from email.message import EmailMessage # Create the container email message. msg = EmailM ... se import ArgumentParser from email.message import EmailMessage from email.policy import SMTP def main (): parser ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 9424
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... s to generate the flat (serialized) version of the email message represented by a message object structure. You wi ... rds-compliant way, should handle MIME and non-MIME email messages just fine, and is designed so that the bytes-ori ... 1] . (On the other hand, using the generator on an EmailMessage constructed by program may result in changes to th ... e EmailMessage object as defaults are filled in.) The Generator c ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
19.1.4. email.policy: ポリシーオブジェクト — Python 3.6.5 ドキュメント 8410
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... kage. This default value for the policy keyword to EmailMessage is the EmailPolicy policy, via its pre-defined ins ... tance default . When a Message or EmailMessage object is created, it acquires a policy. If the me ... ample, the following code could be used to read an email message from a file on disk and pass it to the system sen ... の数を返します。 Called when a header is added to an EmailMessage or Message object. If the returned value is not 0 ...
https://man.plustar.jp/python/library/email.policy.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 8090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... hey can be created from whole cloth by creating an EmailMessage object, adding headers using the dictionary interf ... ated by parsing a serialized representation of the email message. The email package provides a standard parser tha ... object, and the parser will return to you the root EmailMessage instance of the object structure. For simple, non- ... t block waiting for more input (such as reading an email message from a socket). The FeedParser can consume and pa ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
19.1.11. email.header: 国際化されたヘッダ — Python 3.6.5 ドキュメント 6632
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ed transparently by the dictionary-like API of the EmailMessage class. In addition to uses in legacy code, this mo ...
https://man.plustar.jp/python/library/email.header.html - [similar]
What's New In Python 3.4 — Python 3.6.5 ドキュメント 6419
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... tmanager が追加され、また、 Message のサブクラス ( EmailMessage ) が追加されました。これは MIME 処理を簡単にします ... 追加と併せて、 Message の対となる二つのサブクラス ( EmailMessage と MIMEPart ) が追加されました。 全てのドキュメント ...
https://man.plustar.jp/python/whatsnew/3.4.html - [similar]
PREV 1 2 NEXT