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

Method put

src/quart/testing/client.py:264–270  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

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.
266
267 See :meth:`~quart.testing.QuartClient.open` for argument
268 details.
269 """
270 return await self.open(*args, method="PUT", **kwargs)
271
272 async def trace(self, *args: Any, **kwargs: Any) -> Response:
273 """Make a TRACE request.

Callers 10

sendMethod · 0.45
send_completeMethod · 0.45
disconnectMethod · 0.45
_asgi_sendMethod · 0.45
sendMethod · 0.45
closeMethod · 0.45
disconnectMethod · 0.45
_asgi_sendMethod · 0.45
startupMethod · 0.45
shutdownMethod · 0.45

Calls 1

openMethod · 0.95

Tested by

no test coverage detected