MCPcopy
hub / github.com/wechatpy/wechatpy / get

Method get

wechatpy/client/base.py:168–173  ·  view source on GitHub ↗
(self, url, **kwargs)

Source from the content-addressed store, hash-verified

166 return result if not result_processor else result_processor(result)
167
168 def get(self, url, **kwargs):
169 return self._request(
170 method='get',
171 url_or_endpoint=url,
172 **kwargs
173 )
174
175 def _get(self, url, **kwargs):
176 warnings.warn('`_get` method of `WeChatClient` is deprecated, will be removed in 1.6,'

Callers 6

_getMethod · 0.95
__init__Method · 0.45
_requestMethod · 0.45
_handle_resultMethod · 0.45
_fetch_access_tokenMethod · 0.45
access_tokenMethod · 0.45

Calls 1

_requestMethod · 0.95

Tested by

no test coverage detected