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

Method head

src/core/http_client.py:163–165  ·  view source on GitHub ↗

发送 HEAD 请求

(self, url: str, **kwargs)

Source from the content-addressed store, hash-verified

161 return self.request("DELETE", url, **kwargs)
162
163 def head(self, url: str, **kwargs) -> Response:
164 """发送 HEAD 请求"""
165 return self.request("HEAD", url, **kwargs)
166
167 def options(self, url: str, **kwargs) -> Response:
168 """发送 OPTIONS 请求"""

Callers

nothing calls this directly

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected