Class MIMEApplicationHTTP (1.22.0)

MIMEApplicationHTTP(method, uri, headers, body)

MIME type for application/http.

Constructs payload from headers and body

Parameters

NameDescription
method str

HTTP method

uri str

URI for HTTP request

headers dict

HTTP headers

body str

(Optional) HTTP payload

Methods

MIMEApplicationHTTP

MIMEApplicationHTTP(method, uri, headers, body)

Create an application/* type MIME document.

_data is a string containing the raw application data.

_subtype is the MIME content type subtype, defaulting to 'octet-stream'.

_encoder is a function which will perform the actual encoding for transport of the application data, defaulting to base64 encoding.

Any additional keyword arguments are passed to the base class constructor, which turns them into parameters on the Content-Type header.