MCPcopy
hub / github.com/aio-libs/aiohttp / post

Function post

aiohttp/client.py:717–719  ·  view source on GitHub ↗
(url, **kwargs)

Source from the content-addressed store, hash-verified

715
716
717def post(url, **kwargs):
718 warnings.warn("Use ClientSession().post() instead", DeprecationWarning)
719 return request(hdrs.METH_POST, url, **kwargs)
720
721
722def put(url, **kwargs):

Callers

nothing calls this directly

Calls 1

requestFunction · 0.70

Tested by

no test coverage detected