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

Method post

src/quart/testing/client.py:256–262  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

254 return await self.open(*args, method="PATCH", **kwargs)
255
256 async def post(self, *args: Any, **kwargs: Any) -> Response:
257 """Make a POST request.
258
259 See :meth:`~quart.testing.QuartClient.open` for argument
260 details.
261 """
262 return await self.open(*args, method="POST", **kwargs)
263
264 async def put(self, *args: Any, **kwargs: Any) -> Response:
265 """Make a PUT request.

Callers

nothing calls this directly

Calls 1

openMethod · 0.95

Tested by

no test coverage detected