MCPcopy Create free account
hub / github.com/pallets/quart / get

Method get

src/quart/testing/client.py:224–230  ·  view source on GitHub ↗

Make a GET request. See :meth:`~quart.testing.QuartClient.open` for argument details.

(self, *args: Any, **kwargs: Any)

Source from the content-addressed store, hash-verified

222 return await self.open(*args, method="DELETE", **kwargs)
223
224 async def get(self, *args: Any, **kwargs: Any) -> Response:
225 """Make a GET request.
226
227 See :meth:`~quart.testing.QuartClient.open` for argument
228 details.
229 """
230 return await self.open(*args, method="GET", **kwargs)
231
232 async def head(self, *args: Any, **kwargs: Any) -> Response:
233 """Make a HEAD request.

Callers 14

__init__Method · 0.45
make_conditionalMethod · 0.45
session_transactionMethod · 0.45
__aexit__Method · 0.45
receiveMethod · 0.45
__aexit__Method · 0.45
as_responseMethod · 0.45
_asgi_receiveMethod · 0.45
__aexit__Method · 0.45
receiveMethod · 0.45
_asgi_receiveMethod · 0.45

Calls 1

openMethod · 0.95

Tested by

no test coverage detected