MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / patch

Method patch

src/core/http_client.py:171–173  ·  view source on GitHub ↗

发送 PATCH 请求

(self, url: str, data: Any = None, json: Any = None, **kwargs)

Source from the content-addressed store, hash-verified

169 return self.request("OPTIONS", url, **kwargs)
170
171 def patch(self, url: str, data: Any = None, json: Any = None, **kwargs) -> Response:
172 """发送 PATCH 请求"""
173 return self.request("PATCH", url, data=data, json=json, **kwargs)
174
175 def download_file(self, url: str, filepath: str, chunk_size: int = 8192) -> None:
176 """

Callers

nothing calls this directly

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected