MCPcopy
hub / github.com/wechatpy/wechatpy / post

Method post

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

Source from the content-addressed store, hash-verified

179 return self.get(url, **kwargs)
180
181 def post(self, url, **kwargs):
182 return self._request(
183 method='post',
184 url_or_endpoint=url,
185 **kwargs
186 )
187
188 def _post(self, url, **kwargs):
189 warnings.warn('`_post` method of `WeChatClient` is deprecated, will be removed in 1.6,'

Callers 3

_postMethod · 0.95
_postMethod · 0.45
upload_fileMethod · 0.45

Calls 1

_requestMethod · 0.95

Tested by

no test coverage detected