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

A module implementing an HTTP-message processing interface.

 
Package Contents
       
common
header
request_target
response
state
version

 
Classes
       
builtins.object
HttpMessageProcessor

 
class HttpMessageProcessor(builtins.object)
    HttpMessageProcessor() -> None
 
A class implementing HTTP/1.1 (RFC 9112) message processing from a byte
stream.
 
  Methods defined here:
__init__(self) -> None
Initialize this instance.
ingest(self, data: bytes, kind: type[~T]) -> Iterator[tuple[~T, Optional[bytes]]]
Process a binary frame.

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

 
Data
        Iterator = typing.Iterator
Optional = typing.Optional
T = ~T