MCPcopy
hub / github.com/encode/starlette / query_params

Method query_params

starlette/requests.py:139–142  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

137
138 @property
139 def query_params(self) -> QueryParams:
140 if not hasattr(self, "_query_params"): # pragma: no branch
141 self._query_params = QueryParams(self.scope["query_string"])
142 return self._query_params
143
144 @property
145 def path_params(self) -> dict[str, Any]:

Callers

nothing calls this directly

Calls 1

QueryParamsClass · 0.90

Tested by

no test coverage detected