Source code for request

from typing import Optional

from pyramid.registry import Registry

from cowbird.typedefs import JSON, HTTPMethod

[docs]class Request:
[docs] accept: Optional[str]
[docs] method: HTTPMethod
[docs] upath_info: str
[docs] url: str
[docs] json_body: JSON
@property
[docs] def registry(self) -> Registry: ...