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

Method put

src/core/http_client.py:155–157  ·  view source on GitHub ↗

发送 PUT 请求

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

Source from the content-addressed store, hash-verified

153 return self.request("POST", url, data=data, json=json, **kwargs)
154
155 def put(self, url: str, data: Any = None, json: Any = None, **kwargs) -> Response:
156 """发送 PUT 请求"""
157 return self.request("PUT", url, data=data, json=json, **kwargs)
158
159 def delete(self, url: str, **kwargs) -> Response:
160 """发送 DELETE 请求"""

Callers

nothing calls this directly

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected