MCPcopy
hub / github.com/locustio/locust / patch

Method patch

locust/contrib/fasthttp.py:349–351  ·  view source on GitHub ↗

Sends a PATCH request

(self, url: str, data: str | dict | None = None, **kwargs: Unpack[PatchKwargs])

Source from the content-addressed store, hash-verified

347 return self.request("OPTIONS", url, **kwargs)
348
349 def patch(self, url: str, data: str | dict | None = None, **kwargs: Unpack[PatchKwargs]) -> ResponseContextManager:
350 """Sends a PATCH request"""
351 return self.request("PATCH", url, data=data, **kwargs)
352
353 def post(
354 self, url: str, data: str | dict | None = None, json: Any = None, **kwargs: Unpack[PostKwargs]

Calls 1

requestMethod · 0.95