Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 10 for subtype (0.005 sec.)
- 19.1.10. email.mime: メールと MIME オブジェクトを一から作成 — Python 3.6.5 ドキ... 12746
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
です: class email.mime.base. MIMEBase ( _maintype , _subtype , * , policy=compat32 , **_params ) ¶ モジュール:...
の主形式 (maintype) であり ( text や image など)、 _subtype は Content-Type の副形式 (subtype) です ( plain や...
Message . MIMEBase クラスはつねに ( _maintype 、 _subtype 、および _params にもとづいた) Content-Type ヘッダ...
ます。 class email.mime.multipart. MIMEMultipart ( _subtype='mixed' , boundary=None , _subparts=None , * , pol...
- https://man.plustar.jp/python/library/email.mime.html - [similar]
- 19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 12031
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
t one found: 完全な MIME 型を表す文字列 ( maintype/subtype ) maintype を表す文字列 空の文字列 If none of thes...
mail.contentmanager. set_content ( msg , <'str'> , subtype="plain" , charset='utf-8' cte=None , disposition=N...
anager. set_content ( msg , <'bytes'> , maintype , subtype , cte="base64" , disposition=None , filename=None...
ail.contentmanager. set_content ( msg , <'list'> , subtype='mixed' , disposition=None , filename=None , cid=N...
- https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
- 19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 8974
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
n binary mode. Use imghdr to figure out the # MIME subtype for each specific image. for file in pngfiles : wi...
. add_attachment ( img_data , maintype = 'image' , subtype = imghdr . what ( None , img_data )) # Send the em...
ype. ctype = 'application/octet-stream' maintype , subtype = ctype . split ( '/' , 1 ) with open ( path , 'rb...
d_attachment ( fp . read (), maintype = maintype , subtype = subtype , filename = filename ) # Now send or st...
- https://man.plustar.jp/python/library/email.examples.html - [similar]
- 19.1.15. email.iterators: イテレータ — Python 3.6.5 ドキュメント 8724
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
. typed_subpart_iterator ( msg , maintype='text' , subtype=None ) ¶ このイテレータは msg 中のすべてのサブパー...
たどり、それらの中で指定されたMIME 形式 maintype と subtype をもつようなパートのみを返します。 subtype は省略可...
lain , パート , iterators , maintype , structure , subtype , パッケージ , 形式 , 省略 前のトピックへ 19.1.14....
- https://man.plustar.jp/python/library/email.iterators.html - [similar]
- 19.1.9. email.message.Message: Representing an email message using the compat32 ... 8062
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
返します。返された文字列は強制的に小文字で maintype/subtype の形式に変換されます。メッセージ中に Content-Type...
って返される文字列の maintype 部分です。 get_content_subtype ( ) ¶ そのメッセージの副 content-type (sub content...
-type、subtype) を返します。これは get_content_type() によって返さ...
れる文字列の subtype 部分です。 get_default_type ( ) ¶ デフォルトの con...
- https://man.plustar.jp/python/library/email.compat32-message.html - [similar]
- 19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 7919
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
t type, coerced to lower case of the form maintype/subtype . If there is no Content-Type header in the messag...
って返される文字列の maintype 部分です。 get_content_subtype ( ) ¶ そのメッセージの副 content-type (sub content...
-type、subtype) を返します。これは get_content_type() によって返さ...
れる文字列の subtype 部分です。 get_default_type ( ) ¶ デフォルトの con...
- https://man.plustar.jp/python/library/email.message.html - [similar]
- 19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 7758
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
pe -- 非 text 型 subpart の MIME 主形式 (maintype) subtype -- 非 text 型 subpart の MIME 副形式 (subtype) fil...
- https://man.plustar.jp/python/library/email.generator.html - [similar]
- 19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 7705
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
pe ¶ The content type string, in the form maintype/subtype . maintype ¶ subtype ¶ class email.headerregistry....
- https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
- 19.5. mimetypes --- ファイル名を MIME 型へマップする — Python 3.6.5 ドキュメン... 7705
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
いは、 MIME content-type ヘッダ に利用できる、 'type/subtype' の形の文字列です。 encoding は、符合化方式がない場...
先頭の dot ( '.' ) を含むファイル名拡張子を、 'type/subtype' の形の文字列にマッピングする辞書として返されます。...
- https://man.plustar.jp/python/library/mimetypes.html - [similar]
- 型オブジェクト — Python 3.6.5 ドキュメント 7669
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
は次のとおりです PyObject * tp_new ( PyTypeObject * subtype , PyObject * args , PyObject * kwds ) subtype 引数...
ではない) サブタイプのこともあります。 tp_new 関数は subtype->tp_alloc(subtype, nitems) を呼び出してオブジェクト...
- https://man.plustar.jp/python/c-api/typeobj.html - [similar]
PREV
1
NEXT