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

Method get

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

Source from the content-addressed store, hash-verified

10
11class MyView(web.View):
12 async def get(self):
13 return web.json_response(
14 {
15 "method": "get",
16 "args": dict(self.request.query),
17 "headers": dict(self.request.headers),
18 },
19 dumps=functools.partial(json.dumps, indent=4),
20 )
21
22 async def post(self):
23 data = await self.request.post()

Callers 15

run_testsFunction · 0.45
_refresh_access_tokenMethod · 0.45
verify_bearer_tokenMethod · 0.45
run_testsFunction · 0.45
helloFunction · 0.45
handleFunction · 0.45
server_simple.pyFile · 0.45
fetchFunction · 0.45
helloFunction · 0.45
initFunction · 0.45
resolveMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected