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

Method delete

src/quart/testing/client.py:216–222  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

214 return self.websocket_connection_class(self.app, scope)
215
216 async def delete(self, *args: Any, **kwargs: Any) -> Response:
217 """Make a DELETE request.
218
219 See :meth:`~quart.testing.QuartClient.open` for argument
220 details.
221 """
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.

Callers

nothing calls this directly

Calls 1

openMethod · 0.95

Tested by

no test coverage detected