MCPcopy Create free account
hub / github.com/aio-libs/aiohttp / post

Method post

examples/web_classview.py:22–32  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

20 )
21
22 async def post(self):
23 data = await self.request.post()
24 return web.json_response(
25 {
26 "method": "post",
27 "args": dict(self.request.query),
28 "data": dict(data),
29 "headers": dict(self.request.headers),
30 },
31 dumps=functools.partial(json.dumps, indent=4),
32 )
33
34
35async def index(request):

Callers 3

run_testsFunction · 0.45
_refresh_access_tokenMethod · 0.45
run_testsFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected