MCPcopy Index your code
hub / github.com/Tencent/CodeAnalysis / get

Method get

server/projects/analysis/util/httpclient.py:42–44  ·  view source on GitHub ↗
(self, path, params=None, headers=None, **kwargs)

Source from the content-addressed store, hash-verified

40 return self._http_client.request(method, path, fields=params, headers=headers, body=data, **kwargs)
41
42 def get(self, path, params=None, headers=None, **kwargs):
43 result = self.session("GET", path, params=params, headers=headers, **kwargs)
44 return result
45
46 def post(self, path, params=None, data=None, json_data=None, headers=None):
47 result = self.session("POST", path, params=params, data=data, json_data=json_data, headers=headers)

Callers 8

sessionMethod · 0.45
get_orderingMethod · 0.45
__init__Method · 0.45
get_fileMethod · 0.45
download_fileMethod · 0.45
renderMethod · 0.45
format_exception_handlerFunction · 0.45

Calls 1

sessionMethod · 0.95

Tested by

no test coverage detected