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

Method get

aiohttp/client.py:379–384  ·  view source on GitHub ↗

Perform HTTP GET request.

(self, url, *, allow_redirects=True, **kwargs)

Source from the content-addressed store, hash-verified

377 return result
378
379 def get(self, url, *, allow_redirects=True, **kwargs):
380 """Perform HTTP GET request."""
381 return _RequestContextManager(
382 self._request(hdrs.METH_GET, url,
383 allow_redirects=allow_redirects,
384 **kwargs))
385
386 def options(self, url, *, allow_redirects=True, **kwargs):
387 """Perform HTTP OPTIONS request."""

Callers 15

_ws_connectMethod · 0.95
test_format_task_getFunction · 0.95
goMethod · 0.95
_requestMethod · 0.45
content_typeMethod · 0.45
charsetMethod · 0.45
content_lengthMethod · 0.45
schemeMethod · 0.45
hostMethod · 0.45
if_modified_sinceMethod · 0.45
cookiesMethod · 0.45
postMethod · 0.45

Calls 2

_requestMethod · 0.95

Tested by 4

test_format_task_getFunction · 0.76
goMethod · 0.76
handle_requestMethod · 0.36
_responseMethod · 0.36