| |
- runtimepy.net.http.common.HeadersMixin(abc.ABC)
-
- RequestHeader
class RequestHeader(runtimepy.net.http.common.HeadersMixin) |
|
RequestHeader(method: Union[str, http.HTTPMethod] = <HTTPMethod.GET>, target: str = '/', major: int = 1, minor: int = 1) -> None
A class implementing an HTTP-request header. |
|
- Method resolution order:
- RequestHeader
- runtimepy.net.http.common.HeadersMixin
- abc.ABC
- builtins.object
Methods defined here:
- __init__(self, method: Union[str, http.HTTPMethod] = <HTTPMethod.GET>, target: str = '/', major: int = 1, minor: int = 1) -> None
- Initialize this instance.
- __str__(self) -> str
- Get this request 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, level: int = 10) -> None
- Log information about this request header.
Readonly properties defined here:
- request_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
| |