runtimepy.net.http.response
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/net/http/response.py

A module implementing HTTP-response interfaces.

 
Modules
       
http
logging

 
Classes
       
runtimepy.net.http.common.HeadersMixin(abc.ABC)
ResponseHeader

 
class ResponseHeader(runtimepy.net.http.common.HeadersMixin)
    ResponseHeader(major: int = 1, minor: int = 1, status: http.HTTPStatus = <HTTPStatus.OK: 200>, reason: str = '', content_type: str = 'application/octet-stream') -> None
 
A class implementing an HTTP-response header.
 
 
Method resolution order:
ResponseHeader
runtimepy.net.http.common.HeadersMixin
abc.ABC
builtins.object

Methods defined here:
__init__(self, major: int = 1, minor: int = 1, status: http.HTTPStatus = <HTTPStatus.OK: 200>, reason: str = '', content_type: str = 'application/octet-stream') -> None
Initialize this instance.
__str__(self) -> str
Get this response as a string.
from_lines(self, lines: list[str]) -> None
Update this request from line data.
log(self, logger: Union[logging.Logger, logging.LoggerAdapter[Any]], out: bool) -> None
Log information about this response header.

Readonly properties defined here:
status_line
Get this response's status line.

Data and other attributes defined here:
__abstractmethods__ = frozenset()

Methods inherited from runtimepy.net.http.common.HeadersMixin:
__bytes__(self) -> bytes
Get this instances as bytes.
__getitem__(self, key: str) -> str
Get a header key.
__setitem__(self, key: str, value: str) -> None
Set a header key.
get(self, key: str, default: str = None) -> Optional[str]
Get a possible header value.
write_field_lines(self, stream: <class 'TextIO'>) -> None
Write field lines to a stream.

Readonly properties inherited from runtimepy.net.http.common.HeadersMixin:
content_length
Get a value for context length.

Data descriptors inherited from runtimepy.net.http.common.HeadersMixin:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

 
Data
        DEFAULT_MAJOR = 1
DEFAULT_MINOR = 1
HEADER_LINESEP = '\r\n'
LoggerType = typing.Union[logging.Logger, logging.LoggerAdapter[typing.Any]]