Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 51 for header (0.039 sec.)
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 7883
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... r. BytesGenerator ( outfp , mangle_from_=None , maxheaderlen=None , * , policy=None ) ¶ Return a BytesGenera ... and WHY THE CONTENT-LENGTH FORMAT IS BAD ). If maxheaderlen is not None , refold any header lines that are ... longer than maxheaderlen , or if 0 , do not rewrap any headers. If manhe ... aderlen is None (the default), wrap headers and other message lines according to the policy s ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 7733
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のサブクラスです。 exception http.client. CannotSendHeader ¶ ImproperConnectionState のサブクラスです。 excep ... TPConnection. request ( method , url , body=None , headers={} , * , encode_chunked=False ) ¶ このメソッドは、 ... is specified, the specified data is sent after the headers are finished. It may be a str , a bytes-like obje ... le are sent as is until the iterable is exhausted. headers 引数は要求と同時に送信される拡張 HTTP ヘッダの内容 ...
https://man.plustar.jp/python/library/http.client.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 7733
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ジョン文字列が入っています。例えば 'HTTP/1.0' です。 headers ¶ MessageClass クラス変数で指定されたクラスのイン ... ッダを解釈し、管理しています。 http.client の parse_headers() 関数がヘッダを解釈するために使われ、 HTTP リクエ ... 答に、正確な値を持つ Content-Length ヘッダを ( send_header() を使って) 含め なければなりません 。以前のバージ ... mat attribute and emitted, after a complete set of headers, as the response body. The responses attribute ho ...
https://man.plustar.jp/python/library/http.server.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 7703
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ンスタンスとして返します。 ( Quick Reference to HTTP Headers を参照してください) getcode() -- レスポンスの HTT ... class urllib.request. Request ( url , data=None , headers={} , origin_req_host=None , unverifiable=False , ... rables. If no Content-Length nor Transfer-Encoding header field has been provided, HTTPHandler will set thes ... e headers according to the type of data . Content-Length wi ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
19.1.5. email.errors: 例外及び欠陥クラス — Python 3.6.5 ドキュメント 7658
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... lass is also used internally by the parser used by headerregistry . exception email.errors. HeaderParseError ... er some error conditions when parsing the RFC 5322 headers of a message, this class is derived from MessageP ... content type is unknown when the method is called. Header may raise this error for certain base64 decoding e ... rrors, and when an attempt is made to create a header that appears to contain an embedded header (that i ...
https://man.plustar.jp/python/library/email.errors.html - [similar]
21.24. http.cookiejar --- HTTP クライアント用の Cookie 処理 — Python 3.6.5 ドキ... 7628
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 2109 cookies (ie. cookies received in a Set-Cookie header with a version cookie-attribute of 1) are treated ... ようなメソッドを持っています: CookieJar. add_cookie_header ( request ) ¶ request に正しい Cookie ヘッダを追加 ... ) , get_host() , get_type() , unverifiable() , has_header() , get_header() , header_items() , add_unredirect ... ed_header() and origin_req_host attribute as documented by u ...
https://man.plustar.jp/python/library/http.cookiejar.html - [similar]
21.23. http.cookies --- HTTPの状態管理 — Python 3.6.5 ドキュメント 7628
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ければなりません。 BaseCookie. output ( attrs=None , header='Set-Cookie:' , sep='\r\n' ) ¶ HTTPヘッダ形式の文字 ... 列表現を返します。 attrs と header はそれぞれ Morsel の output() メソッドに送られます ... かどうかを判定します。 Morsel. output ( attrs=None , header='Set-Cookie:' ) ¶ MoselをHTTPヘッダ形式の文字列表現 ... 指定する場合、属性をリストで渡さなければなりません。 header のデフォルトは "Set-Cookie:" です。 Morsel. js_out ...
https://man.plustar.jp/python/library/http.cookies.html - [similar]
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 7433
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e cloth by creating an EmailMessage object, adding headers using the dictionary interface, and adding payloa ... dule also provides Parser for parsing strings, and header-only parsers, BytesHeaderParser and HeaderParser , ... which can be used if you're only interested in the headers of the message. BytesHeaderParser and HeaderParse ... aults to the policy message_factory . parse ( fp , headersonly=False ) ¶ Read all the data from the binary f ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
19.8. binascii --- バイナリデータと ASCII データとの間での変換 — Python 3.6.5 ... 7358
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... newline を追加しました。 binascii. a2b_qp ( data , header=False ) ¶ quoted-printable 形式のデータをバイナリに ... 行以上のデータを渡すことができます。オプション引数 header が与えられており、かつその値が真であれば、アンダー ... i. b2a_qp ( data , quotetabs=False , istext=True , header=False ) ¶ Convert binary data to a line(s) of ASCI ... itespace will be encoded. If the optional argument header is present and true, spaces will be encoded as und ...
https://man.plustar.jp/python/library/binascii.html - [similar]
19.1.10. email.mime: メールと MIME オブジェクトを一から作成 — Python 3.6.5 ドキ... 7358
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... キーと値を格納した辞書であり、これは直接 Message.add_header に渡されます。 If policy is specified, (defaults t ... EText object created will have both a Content-Type header with a charset parameter, and a Content-Transfer-E ... ncoding header. This means that a subsequent set_payload call wil ... behavior by deleting the Content-Transfer-Encoding header, after which a set_payload call will automatically ...
https://man.plustar.jp/python/library/email.mime.html - [similar]
PREV 1 2 3 4 5 6 NEXT