MCPcopy
hub / github.com/aio-libs/aiohttp / put

Method put

aiohttp/client.py:407–412  ·  view source on GitHub ↗

Perform HTTP PUT request.

(self, url, *, data=None, **kwargs)

Source from the content-addressed store, hash-verified

405 **kwargs))
406
407 def put(self, url, *, data=None, **kwargs):
408 """Perform HTTP PUT request."""
409 return _RequestContextManager(
410 self._request(hdrs.METH_PUT, url,
411 data=data,
412 **kwargs))
413
414 def patch(self, url, *, data=None, **kwargs):
415 """Perform HTTP PATCH request."""

Callers 1

test_http_PUTFunction · 0.80

Calls 2

_requestMethod · 0.95

Tested by 1

test_http_PUTFunction · 0.64