Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/aio-libs/aiohttp
/ functions
Functions
5,569 in github.com/aio-libs/aiohttp
⨍
Functions
5,569
◇
Types & classes
450
↳
Endpoints
67
↓ 1 callers
Function
main
(loop)
examples/lowlevel_srv.py:10
↓ 1 callers
Function
main
(loop)
examples/fake_server.py:100
↓ 1 callers
Function
main
()
examples/basic_auth_middleware.py:179
↓ 1 callers
Function
main
()
examples/combined_middleware.py:308
↓ 1 callers
Function
main
()
examples/digest_auth_qop_auth.py:34
↓ 1 callers
Function
main
()
examples/logging_middleware.py:157
↓ 1 callers
Function
make_app
()
tests/test_run_app.py:749
↓ 1 callers
Function
make_client
()
tests/test_test_utils.py:82
↓ 1 callers
Function
make_conn
()
tests/test_client_session.py:35
↓ 1 callers
Function
make_connector
()
tests/test_client_session.py:426
↓ 1 callers
Function
make_handler
(appname)
tests/test_web_functional.py:1656
↓ 1 callers
Method
make_handler
( self, *, loop: asyncio.AbstractEventLoop | None = None, access_log_class: ty
aiohttp/web_app.py:439
↓ 1 callers
Function
make_last_modified_header
()
tests/test_benchmarks_web_fileresponse.py:90
↓ 1 callers
Function
make_mocked_coro
Creates a coroutine mock.
aiohttp/test_utils.py:796
↓ 1 callers
Function
make_sess
()
tests/test_client_session.py:433
↓ 1 callers
Function
make_signal
(app)
tests/test_web_functional.py:1546
↓ 1 callers
Function
make_tmp_dir
(base_tmp_dir)
tests/conftest.py:220
↓ 1 callers
Function
make_wrapper
( mw: ClientMiddlewareType, next_h: ClientHandlerType )
aiohttp/client_middlewares.py:45
↓ 1 callers
Function
middleware
(f: _Func)
aiohttp/web_middlewares.py:33
↓ 1 callers
Function
named_pipe_server
(proactor_loop, pipe_name)
tests/test_connector.py:89
↓ 1 callers
Function
nothing
()
tests/test_web_runner.py:190
↓ 1 callers
Function
parse_content_type
Parse Content-Type header. Returns a tuple of the parsed content type and a MappingProxyType of parameters. The default returned value is
aiohttp/helpers.py:412
↓ 1 callers
Method
parse_headers
( self, lines: list[bytes] )
aiohttp/http_parser.py:174
↓ 1 callers
Method
pause_reading
(self)
aiohttp/client_proto.py:188
↓ 1 callers
Method
pong
(self, message: bytes = b"")
aiohttp/client_ws.py:277
↓ 1 callers
Method
pre_shutdown
(self)
aiohttp/web_server.py:65
↓ 1 callers
Function
proxies_from_env
()
aiohttp/helpers.py:298
↓ 1 callers
Method
query
A multidict with all the variables in the query string.
aiohttp/web_request.py:513
↓ 1 callers
Function
quoted_string
Return 7-bit content as quoted-string. Format content into a quoted-string as defined in RFC5322 for Internet Message Format. Notice that thi
aiohttp/helpers.py:437
↓ 1 callers
Method
raw_match
(self, path: str)
aiohttp/web_urldispatcher.py:489
↓ 1 callers
Method
read
(self, n: int = -1)
aiohttp/streams.py:630
↓ 1 callers
Method
read
(self, decode=False)
tests/test_client_request.py:1323
↓ 1 callers
Method
read
(self, decode=False)
tests/test_client_ws.py:181
↓ 1 callers
Function
read_loop
()
tests/test_client_functional.py:797
↓ 1 callers
Method
read_nowait
(self, n: int = -1)
aiohttp/streams.py:648
↓ 1 callers
Method
readany
(self)
aiohttp/streams.py:635
↓ 1 callers
Method
readchunk
(self)
aiohttp/streams.py:638
↓ 1 callers
Method
readexactly
(self, n: int)
aiohttp/streams.py:645
↓ 1 callers
Method
readline
(self, *, max_line_length: int | None = None)
aiohttp/streams.py:627
↓ 1 callers
Method
receive_str
( self: "ClientWebSocketResponse[Literal[True]]", *, timeout: float | None = None )
aiohttp/client_ws.py:460
↓ 1 callers
Function
register_payload
( factory: type["Payload"], type: Any, *, order: Order = Order.normal )
aiohttp/payload.py:65
↓ 1 callers
Method
register_route
(self, route: "ResourceRoute")
aiohttp/web_urldispatcher.py:361
↓ 1 callers
Function
request
( method: str, url: StrOrURL, *, version: HttpVersion = http.HttpVersion11,
aiohttp/client.py:1744
↓ 1 callers
Function
request
(client: TestClient[web.Request, web.Application])
tests/test_client_functional.py:4477
↓ 1 callers
Method
request
( self, method: str, path: StrOrURL, **kwargs: Unpack[_RequestOptions] )
aiohttp/test_utils.py:354
↓ 1 callers
Function
reset_mocks
()
tests/test_client_session.py:1050
↓ 1 callers
Method
resolve
(self, request)
tests/test_web_urldispatcher.py:686
↓ 1 callers
Function
resolve_host
()
tests/test_connector.py:4589
↓ 1 callers
Function
resolve_response
()
tests/test_connector.py:4297
↓ 1 callers
Method
resume_reading
(self, resume_parser: bool = True)
aiohttp/client_proto.py:192
↓ 1 callers
Function
rfc822_formatted_time
()
aiohttp/helpers.py:540
↓ 1 callers
Function
run
(conn)
tests/test_client_response.py:325
↓ 1 callers
Function
run_app
Run an app locally
aiohttp/web.py:444
↓ 1 callers
Function
run_benchmark
()
tests/test_benchmarks_web_request.py:36
↓ 1 callers
Function
run_client_benchmark
()
tests/test_benchmarks_client.py:33
↓ 1 callers
Function
run_client_benchmark
()
tests/test_benchmarks_web_middleware.py:43
↓ 1 callers
Function
run_file_response_benchmark
()
tests/test_benchmarks_web_fileresponse.py:35
↓ 1 callers
Function
run_test_server
Run a simple test server.
examples/retry_middleware.py:150
↓ 1 callers
Function
run_test_server
Run a test server with JWT auth endpoints.
examples/token_refresh_middleware.py:246
↓ 1 callers
Function
run_test_server
Run a simple test server with basic auth endpoints.
examples/basic_auth_middleware.py:119
↓ 1 callers
Function
run_test_server
Run a test server with various endpoints.
examples/combined_middleware.py:238
↓ 1 callers
Function
run_test_server
Run a simple test server.
examples/logging_middleware.py:87
↓ 1 callers
Function
run_tests
Run all retry middleware tests.
examples/retry_middleware.py:167
↓ 1 callers
Function
run_tests
Run all token refresh middleware tests.
examples/token_refresh_middleware.py:261
↓ 1 callers
Function
run_tests
Run all basic auth middleware tests.
examples/basic_auth_middleware.py:134
↓ 1 callers
Function
run_tests
Run all the middleware tests.
examples/combined_middleware.py:255
↓ 1 callers
Function
run_tests
Run all the middleware tests.
examples/logging_middleware.py:105
↓ 1 callers
Function
run_websocket_benchmark
()
tests/test_benchmarks_client_ws.py:38
↓ 1 callers
Method
send
(self, arg: None)
aiohttp/client.py:1676
↓ 1 callers
Method
send
(self, conn)
tests/test_client_request.py:1454
↓ 1 callers
Function
send_and_cancel
()
tests/test_websocket_writer.py:170
↓ 1 callers
Method
send_bytes
(self, data: bytes, compress: int | None = None)
aiohttp/client_ws.py:293
↓ 1 callers
Method
send_connection_create_end
(self)
aiohttp/tracing.py:416
↓ 1 callers
Method
send_connection_create_start
(self)
aiohttp/tracing.py:411
↓ 1 callers
Method
send_connection_queued_end
(self)
aiohttp/tracing.py:406
↓ 1 callers
Method
send_connection_queued_start
(self)
aiohttp/tracing.py:401
↓ 1 callers
Method
send_connection_reuseconn
(self)
aiohttp/tracing.py:421
↓ 1 callers
Method
send_dns_cache_hit
(self, host: str)
aiohttp/tracing.py:436
↓ 1 callers
Method
send_dns_cache_miss
(self, host: str)
aiohttp/tracing.py:441
↓ 1 callers
Method
send_request_chunk_sent
( self, method: str, url: URL, chunk: bytes )
aiohttp/tracing.py:344
↓ 1 callers
Method
send_request_end
( self, method: str, url: URL, headers: "CIMultiDict[str]", response:
aiohttp/tracing.py:362
↓ 1 callers
Method
send_request_exception
( self, method: str, url: URL, headers: "CIMultiDict[str]", exception:
aiohttp/tracing.py:375
↓ 1 callers
Method
send_request_headers
( self, method: str, url: URL, headers: "CIMultiDict[str]" )
aiohttp/tracing.py:446
↓ 1 callers
Method
send_request_redirect
( self, method: str, url: URL, headers: "CIMultiDict[str]", response:
aiohttp/tracing.py:388
↓ 1 callers
Method
send_request_start
( self, method: str, url: URL, headers: "CIMultiDict[str]" )
aiohttp/tracing.py:335
↓ 1 callers
Function
send_requests
()
tests/test_benchmarks_client_request.py:171
↓ 1 callers
Method
send_response_chunk_received
( self, method: str, url: URL, chunk: bytes )
aiohttp/tracing.py:353
↓ 1 callers
Method
send_str
(self, data: str, compress: int | None = None)
aiohttp/client_ws.py:286
↓ 1 callers
Function
sender
(request: Any, loop: Any)
tests/test_web_sendfile_functional.py:73
↓ 1 callers
Method
setUp
(self)
tests/test_cookiejar.py:426
↓ 1 callers
Method
setUpAsync
(self)
aiohttp/test_utils.py:580
↓ 1 callers
Method
set_exception
( self, exc: BaseException, exc_cause: BaseException = ..., )
aiohttp/helpers.py:840
↓ 1 callers
Method
set_exception
( self, exc: BaseException, exc_cause: BaseException = _EXC_SENTINEL, )
aiohttp/streams.py:596
↓ 1 callers
Function
set_token
(session: ClientSession, event: asyncio.Event)
docs/code/client_middleware_cookbook.py:98
↓ 1 callers
Method
set_upgraded
Set connection upgraded (to websocket) mode. :param bool val: new state.
aiohttp/http_parser.py:650
↓ 1 callers
Function
set_zlib_backend
(new_zlib_backend: ZLibBackendProtocol)
aiohttp/compression_utils.py:144
↓ 1 callers
Function
show_app_context
(appname)
tests/test_web_functional.py:1648
↓ 1 callers
Function
shutdown
()
tests/test_web_runner.py:198
↓ 1 callers
Method
shutdown
Call any shutdown hooks to help server close gracefully.
aiohttp/web_runner.py:313
↓ 1 callers
Function
spy
()
tests/test_web_runner.py:193
← previous
next →
801–900 of 5,569, ranked by callers