Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 10 for multipart (0.011 sec.)
- 19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 13676
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ndicated by the message having a MIME type such as multipart/* or message/rfc822 . The conceptual model provide...
sage objects, for MIME container documents such as multipart/* and message/rfc822 message objects. class email....
bytes object containing the serialized message. is_multipart ( ) ¶ Return True if the message's payload is a li...
lMessage objects, otherwise return False . When is_multipart() returns False , the payload should be a string o...
- https://man.plustar.jp/python/library/email.message.html - [similar]
- 19.1.9. email.message.Message: Representing an email message using the compat32 ... 10225
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ndicated by the message having a MIME type such as multipart/* or message/rfc822 . The conceptual model provide...
essage objects, for MIME container documents (e.g. multipart/* and message/rfc822 ). Message クラスのメソッドは...
オブジェクトを作ります。 バージョン 3.4 で追加. is_multipart ( ) ¶ Return True if the message's payload is a li...
Message objects, otherwise return False . When is_multipart() returns False , the payload should be a string o...
- https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
- 19.1.5. email.errors: 例外及び欠陥クラス — Python 3.6.5 ドキュメント 9189
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ecated and no longer used. exception email.errors. MultipartConversionError ¶ この例外は、 Message オブジェクト...
カラー値で、メッセージの Content-Type メインタイプが multipart でないか見付からない場合に送出されます。 Multipart...
りません。 しかしながら、 attach() メソッドを MIMENonMultipart から派生したインスタンス (たとえば MIMEImage ) に対...
ound, so for example, if a message nested inside a multipart/alternative had a malformed header, that nested me...
- https://man.plustar.jp/python/library/email.errors.html - [similar]
- 19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 8956
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ages, the root object will return True from its is_multipart() method, and the subparts can be accessed via the...
ト解析の際に適用されるいくつかの規約です: Most non- multipart type messages are parsed as a single message objec...
ng payload. These objects will return False for is_multipart() , and iter_parts() will yield an empty list. All...
multipart type messages will be parsed as a container messag...
- https://man.plustar.jp/python/library/email.parser.html - [similar]
- 19.1.10. email.mime: メールと MIME オブジェクトを一から作成 — Python 3.6.5 ドキ... 8384
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
policy keyword-only parameter. class email.mime.nonmultipart. MIMENonMultipart ¶ モジュール: email.mime.nonmult...
ipart MIMEBase のサブクラスで、これは multipart 形式でない MIME メッセージのための中間的な基底クラ...
スです。このクラスのおもな目的は、通常 multipart 形式のメッセージに対してのみ意味をなす attach() メ...
とです。もし attach() メソッドが呼ばれた場合、これは MultipartConversionError 例外を発生します。 class email.mime...
- https://man.plustar.jp/python/library/email.mime.html - [similar]
- 19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 8348
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
( msg , obj , *args , **kw ) ¶ If the maintype is multipart , raise a TypeError ; otherwise look up a handler...
add_ methods, thereby simplifying the creation of multipart messages. email.contentmanager. get_content ( msg...
fc822 parts), or a bytes object (for all other non-multipart types). Raise a KeyError if called on a multipart...
list of EmailMessage objects, set the maintype to multipart , and the subtype to subtype if it is specified, a...
- https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
- 19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 7830
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
or : pass counter = 1 for part in msg . walk (): # multipart/* are just containers if part . get_content_mainty...
pe () == 'multipart' : continue # Applications should really sanitize...
the html version. This converts the message into a multipart/alternative # container, with the original text me...
elif richest [ 'content-type' ] . content_type == 'multipart/related' : body = richest . get_body ( preferencel...
- https://man.plustar.jp/python/library/email.examples.html - [similar]
- 19.1.15. email.iterators: イテレータ — Python 3.6.5 ドキュメント 7723
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
sage_from_file ( somefile ) >>> _structure ( msg ) multipart/mixed text/plain text/plain multipart/digest messa...
- https://man.plustar.jp/python/library/email.iterators.html - [similar]
- 21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — Python 3.6.5 ド... 7633
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ロードの標準仕様では、一つのフィールドから (再帰的な multipart/* エンコーディングを使って) 複数のファイルがアップ...
イテムとなります。複数ファイルかどうかは type 属性が multipart/form-data (または multipart/* にマッチする他の MIM...
は後方互換性のためだけに残されています。 cgi. parse_multipart ( fp , pdict ) ¶ (ファイル入力のための) multipart/...
- https://man.plustar.jp/python/library/cgi.html - [similar]
- 19.1. email --- 電子メールと MIME 処理のためのパッケージ — Python 3.6.5 ドキュ... 7311
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
of the MIME "content types" and how they identify multipart documents. For the most part this knowledge should...
- https://man.plustar.jp/python/library/email.html - [similar]
PREV
1
NEXT