module documentation

An API for storing HTTP header names and values.

Class Headers Stores HTTP headers in a key and multiple value format.
Function _dashCapitalize Return a byte string which is capitalized using '-' as a word separator.
Function _sanitizeLinearWhitespace Replace linear whitespace (\n, \r\n, \r) in a header key or value with a single space.
Type Variable _T Undocumented
def _dashCapitalize(name: bytes) -> bytes: (source)

Return a byte string which is capitalized using '-' as a word separator.

Parameters
name:bytesThe name of the header to capitalize.
Returns
bytesThe given header capitalized using '-' as a word separator.
def _sanitizeLinearWhitespace(headerComponent: bytes) -> bytes: (source)

Replace linear whitespace (\n, \r\n, \r) in a header key or value with a single space.

Parameters
headerComponent:bytesThe header key or value to sanitize.
Returns
bytesThe sanitized header key or value.

Undocumented

Value
TypeVar('_T')