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

A module containing shared interfaces for HTTP.

 
Modules
       
http

 
Classes
       
abc.ABC(builtins.object)
HeadersMixin

 
class HeadersMixin(abc.ABC)
    HeadersMixin(lines: list[str] = None) -> None
 
A class implementing a mixin for HTTP header fields.
 
 
Method resolution order:
HeadersMixin
abc.ABC
builtins.object

Methods defined here:
__bytes__(self) -> bytes
Get this instances as bytes.
__getitem__(self, key: str) -> str
Get a header key.
__init__(self, lines: list[str] = None) -> None
Initialize this instance.
__setitem__(self, key: str, value: str) -> None
Set a header key.
__str__(self) -> str
Get this response as a string.
from_lines(self, lines: list[str]) -> None
Update this request from line data.
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 defined here:
content_length
Get a value for context length.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Data and other attributes defined here:
__abstractmethods__ = frozenset({'__str__', 'from_lines'})

 
Functions
       
normalize_method(data: Union[str, http.HTTPMethod]) -> http.HTTPMethod
Normalize HTTP method data.

 
Data
        DEFAULT_ENCODING = 'utf-8'
HEADER_LINESEP = '\r\n'
HTTPMethodlike = typing.Union[str, http.HTTPMethod]
Optional = typing.Optional
Union = typing.Union