Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 54 for content (0.043 sec.)
21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — Python 3.6.5 ド... 7090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... めの Python のコードは以下のようなものです: print ( "Content-Type: text/html" ) # HTML is following print () # ... キュメントの HEAD セクション中の META タグ、あるいは Content-Type ヘッダーに含まれています。これは、標準入力また ... に true を指定してください。 例えば、以下のコード ( Content-Type ヘッダと空行はすでに出力された後とします) は ... 型の入力を解釈します。引数は入力ファイルを示す fp と Content-Type ヘッダ内の他のパラメタを含む辞書 pdict です。 ...
https://man.plustar.jp/python/library/cgi.html - [similar]
18.9. mmap --- メモリマップファイル — Python 3.6.5 ドキュメント 7090
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... file mm = mmap . mmap ( f . fileno (), 0 ) # read content via standard file methods print ( mm . readline () ... ) # prints b"Hello Python!\n" # read content via slice notation print ( mm [: 5 ]) # prints b"H ... ello" # update content using slice notation; # note that new content must ...
https://man.plustar.jp/python/library/mmap.html - [similar]
19.5. mimetypes --- ファイル名を MIME 型へマップする — Python 3.6.5 ドキュメン... 6971
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のため)推定できない場合は、 None を、あるいは、 MIME content-type ヘッダ に利用できる、 'type/subtype' の形の文 ... とえば、 compress あるいは gzip )です。符号化方式は Content-Encoding ヘッダとして使うのに適しており、 Content- ... ール , 辞書 , リスト , マップ , マッピング Table of Contents 19.5. mimetypes --- ファイル名を MIME 型へマップす ...
https://man.plustar.jp/python/library/mimetypes.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 6927
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... faults ( environ ) status = '200 OK' headers = [( 'Content-type' , 'text/plain; charset=utf-8' )] start_respo ... 場合に使われます。)使い方の例は: h . add_header ( 'content-disposition' , 'attachment' , filename = 'bud.gif' ... ) 上記はこのようなヘッダを追加します: Content - Disposition : attachment ; filename = "bud.gif" ... e ): status = '200 OK' # HTTP Status headers = [( 'Content-type' , 'text/plain' )] # HTTP Headers start_respo ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
Download — Python 3.6.5 ドキュメント 6882
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Download Python 3.6.5 Documentati ... wnload (ca. 5.5 MB) These archives contain all the content in the documentation. HTML Help ( .chm ) files are ...
https://man.plustar.jp/python/download.html - [similar]
18.7. asynchat --- 非同期ソケットコマンド/レスポンスハンドラ — Python 3.6.5 ド... 6838
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 類がPOSTであればデータが入力ストリームに流れるため、 Content-Length: ヘッダの値を数値として終了条件に指定し、適 ... == b "POST" : clen = self . headers . getheader ( "content-length" ) self . set_terminator ( int ( clen )) el ... , チャネル , asyncore , メソッド , 非同期 Table of Contents 18.7. asynchat --- 非同期ソケットコマンド/レスポン ...
https://man.plustar.jp/python/library/asynchat.html - [similar]
20.10. xml.sax.handler --- SAX ハンドラの基底クラス — Python 3.6.5 ドキュメント 6838
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 装されるようにしてください。 class xml.sax.handler. ContentHandler ¶ アプリケーションにとって最も重要なメインの ... operties ¶ 既知の全プロパティ名のリスト。 20.10.1. ContentHandler オブジェクト ¶ ContentHandler はアプリケーシ ... り、それぞれに対応する以下のメソッドを呼び出します: ContentHandler. setDocumentLocator ( locator ) ¶ アプリケー ... 間だけです。それ以外のときは使用すべきでありません。 ContentHandler. startDocument ( ) ¶ ドキュメントの開始通知 ...
https://man.plustar.jp/python/library/xml.sax.handler.html - [similar]
変更履歴 — Python 3.6.5 ドキュメント 6838
Filter entries by content:', ' ', ' ' ].join('\n')); function dofilter() { try { var query = new ...
https://man.plustar.jp/python/whatsnew/changelog.html - [similar]
19.1.12. email.charset: 文字集合の表現 — Python 3.6.5 ドキュメント 6808
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ncoding ( ) ¶ メッセージ本体のエンコードに使われる content-transfer-encoding の値を返します。 この値は使用して ... 取るような関数である必要があります。この関数は変換後 Content-Transfer-Encoding ヘッダ自体を、なんであれ適切な値 ...
https://man.plustar.jp/python/library/email.charset.html - [similar]
19.1.15. email.iterators: イテレータ — Python 3.6.5 ドキュメント 6764
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... False ) ¶ Prints an indented representation of the content types of the message object structure. For example ...
https://man.plustar.jp/python/library/email.iterators.html - [similar]
PREV 1 2 3 4 5 6 NEXT