MCPcopy Create free account

hub / github.com/aio-libs/aiohttp / types & classes

Types & classes450 in github.com/aio-libs/aiohttp

↓ 134 callersClassClientRequest
aiohttp/client_reqrep.py:815
↓ 83 callersClassClientSession
First-class interface for making HTTP requests.
aiohttp/client.py:266
↓ 83 callersClassStreamResponse
aiohttp/web_response.py:77
↓ 81 callersClassTimerNoop
aiohttp/helpers.py:689
↓ 75 callersClassClientResponse
aiohttp/client_reqrep.py:277
↓ 73 callersClassStream
tests/test_multipart.py:80
↓ 68 callersClassCookieJar
Implements cookie storage adhering to RFC 6265.
aiohttp/cookiejar.py:86
↓ 63 callersClassResponse
aiohttp/web_response.py:654
↓ 59 callersClassWriterMock
tests/test_client_response.py:22
↓ 58 callersClassClientTimeout
aiohttp/client.py:231
↓ 48 callersClassWebSocketResponse
aiohttp/web_ws.py:86
↓ 37 callersClassHeadersParser
aiohttp/http_parser.py:161
↓ 36 callersClassHttpPayloadParser
aiohttp/http_parser.py:845
↓ 36 callersClassMockStreamWriter
Mock stream writer for testing payload writes.
tests/test_payload.py:186
↓ 27 callersClassResponseHandler
Helper class to adapt between Protocol and StreamReader.
aiohttp/client_proto.py:26
↓ 23 callersClassBaseProtocol
aiohttp/base_protocol.py:19
↓ 23 callersClassFormData
Helper class for form body generation. Supports multipart/form-data and application/x-www-form-urlencoded.
aiohttp/formdata.py:17
↓ 22 callersClassAsyncResolver
Use the `aiodns` package to make asynchronous DNS lookups
aiohttp/resolver.py:102
↓ 19 callersClassWSMessage
aiohttp/_websocket/models.py:51
↓ 18 callersClassApplication
aiohttp/web_app.py:87
↓ 18 callersClassDigestAuthMiddleware
HTTP digest authentication middleware for aiohttp client. This middleware intercepts 401 Unauthorized responses containing a Digest auth
aiohttp/client_middleware_digest_auth.py:156
↓ 16 callersClassRequestHandler
HTTP protocol implementation. RequestHandler handles incoming HTTP request. It reads request line, request headers and request payload and ca
aiohttp/web_protocol.py:99
↓ 15 callersClassConnection
aiohttp/connector.py:129
↓ 14 callersClassTestServer
aiohttp/test_utils.py:228
↓ 14 callersClassWebSocketReader
aiohttp/_websocket/reader_c.py:136
↓ 14 callersClassWebSocketWriter
WebSocket writer. The writer is responsible for sending messages to the client. It is created by the protocol when a connection is establishe
aiohttp/_websocket/writer.py:39
↓ 13 callersClassStreamReader
An enhancement of asyncio.StreamReader. Supports asynchronous iteration by line, chunk or as available:: async for line in reader:
aiohttp/streams.py:71
↓ 13 callersClassTCPConnector
TCP connector. verify_ssl - Set to True to check ssl certifications. fingerprint - Pass the binary sha256 digest of the expected cert
aiohttp/connector.py:922
↓ 12 callersClassHttpVersion
aiohttp/http_writer.py:46
↓ 12 callersClassTrace
Internal dependency holder class. Used to keep together the main dependencies used at the moment of send a signal.
aiohttp/tracing.py:318
↓ 12 callersClassZLibDecompressor
aiohttp/compression_utils.py:268
↓ 10 callersClassConnectionKey
aiohttp/client_reqrep.py:237
↓ 10 callersClassDeflateBuffer
DeflateStream decompress stream and feed data into specified stream.
aiohttp/http_parser.py:1129
↓ 10 callersClassThreadedResolver
Threaded resolver. Uses an Executor for synchronous getaddrinfo() calls. concurrent.futures.ThreadPoolExecutor is used by default.
aiohttp/resolver.py:33
↓ 10 callersClassWebSocketDataQueue
WebSocketDataQueue resumes and pauses an underlying stream. It is a destination for WebSocket data.
aiohttp/_websocket/reader_c.py:55
↓ 9 callersClassAccessLogger
Helper object to log access. Usage: log = logging.getLogger("spam") log_format = "%a %{User-Agent}i" access_logger = Acce
aiohttp/web_log.py:20
↓ 9 callersClassWebSocketReady
aiohttp/web_ws.py:78
↓ 9 callersClass_DNSCacheTable
aiohttp/connector.py:843
↓ 8 callersClassFileResponse
A response object can be used to send files.
aiohttp/web_fileresponse.py:92
↓ 7 callersClassBadHttpMessage
aiohttp/http_exceptions.py:44
↓ 7 callersClassClientConnectionError
Base class for client socket errors.
aiohttp/client_exceptions.py:161
↓ 7 callersClassDigestAuthChallenge
aiohttp/client_middleware_digest_auth.py:27
↓ 7 callersClassTraceConfig
First-class used to trace requests launched via ClientSession objects.
aiohttp/tracing.py:39
↓ 6 callersClassBytesPayload
aiohttp/payload.py:340
↓ 6 callersClassFakeResolver
tests/test_client_functional.py:3461
↓ 6 callersClassFingerprint
aiohttp/client_reqrep.py:138
↓ 6 callersClassMockedBytesPayload
A BytesPayload that tracks whether close() was called.
tests/test_client_functional.py:5408
↓ 6 callersClassWebSocketError
WebSocket protocol parser error.
aiohttp/_websocket/models.py:95
↓ 6 callersClassZLibCompressor
aiohttp/compression_utils.py:193
↓ 6 callersClass_DNSResolverManager
Manager for aiodns.DNSResolver objects. This class manages shared aiodns.DNSResolver instances with no custom arguments across different even
aiohttp/resolver.py:233
↓ 5 callersClassClientConnectionResetError
ConnectionResetError
aiohttp/client_exceptions.py:165
↓ 5 callersClassDomain
aiohttp/web_urldispatcher.py:798
↓ 5 callersClassRawRequestMessage
aiohttp/http_parser.py:111
↓ 5 callersClassRequestKey
Keys for static typing support in Request.
aiohttp/helpers.py:924
↓ 5 callersClassResponseKey
Keys for static typing support in Response.
aiohttp/helpers.py:928
↓ 5 callersClassStreamWriter
aiohttp/http_writer.py:59
↓ 5 callersClassZSTDDecompressor
aiohttp/compression_utils.py:387
↓ 4 callersClassAsyncStreamIterator
aiohttp/streams.py:34
↓ 4 callersClassBadHttpMethod
Invalid HTTP method in status line.
aiohttp/http_exceptions.py:108
↓ 4 callersClassClientWSTimeout
aiohttp/client_ws.py:53
↓ 4 callersClassETag
aiohttp/helpers.py:1005
↓ 4 callersClassLineTooLong
aiohttp/http_exceptions.py:80
↓ 4 callersClassMiddleware
tests/test_web_middleware.py:442
↓ 4 callersClassMockProtocol
tests/test_benchmarks_http_websocket.py:77
↓ 4 callersClassMockTransport
Mock transport for testing that do no real I/O.
tests/test_benchmarks_http_websocket.py:66
↓ 4 callersClassMultipartResponseWrapper
Wrapper around the MultipartReader. It takes care about underlying connection and close it when it needs in.
aiohttp/multipart.py:225
↓ 4 callersClassPayload
tests/test_payload.py:63
↓ 4 callersClassRequestInfo
aiohttp/client_reqrep.py:120
↓ 4 callersClassStringPayload
aiohttp/payload.py:420
↓ 4 callersClassTestClient
A test client implementation. To write functional tests for aiohttp based servers.
aiohttp/test_utils.py:263
↓ 4 callersClassWSMessageTypeError
WebSocket message type is not valid.
aiohttp/client_exceptions.py:425
↓ 3 callersClassBadStatusLine
aiohttp/http_exceptions.py:99
↓ 3 callersClassBaseConnector
Base connector class. keepalive_timeout - (optional) Keep-alive timeout. force_close - Set to True to force close and do reconnect af
aiohttp/connector.py:254
↓ 3 callersClassBufferWriter
Test writer that captures written bytes in a buffer.
tests/test_payload.py:19
↓ 3 callersClassClientConnectorCertificateError
Response certificate error.
aiohttp/client_exceptions.py:380
↓ 3 callersClassClientConnectorSSLError
Response ssl error.
aiohttp/client_exceptions.py:376
↓ 3 callersClassClientOSError
OSError error.
aiohttp/client_exceptions.py:169
↓ 3 callersClassContentEncodingError
Content encoding error.
aiohttp/http_exceptions.py:64
↓ 3 callersClassDummyCookieJar
Implements a dummy cookie storage. It can be used with the ClientSession when no cookie processing is needed.
aiohttp/cookiejar.py:633
↓ 3 callersClassDummyTracer
tests/test_connector.py:4224
↓ 3 callersClassHTTPNotFound
aiohttp/web_exceptions.py:256
↓ 3 callersClassInvalidHeader
aiohttp/http_exceptions.py:91
↓ 3 callersClassLookupError
Raised when no payload factory is found for the given data type.
aiohttp/payload.py:51
↓ 3 callersClassMaskDomain
aiohttp/web_urldispatcher.py:838
↓ 3 callersClassMyView
tests/test_classbasedview.py:18
↓ 3 callersClassPatchableWebSocketReader
WebSocketReader subclass that allows for patching parse_frame.
tests/test_websocket_parser.py:26
↓ 3 callersClassResourceRoute
A route with resource
aiohttp/web_urldispatcher.py:883
↓ 3 callersClassUrlMappingMatchInfo
aiohttp/web_urldispatcher.py:241
↓ 3 callersClassWriterMock
tests/test_client_request.py:36
↓ 3 callersClassZLibBackendWrapper
aiohttp/compression_utils.py:96
↓ 3 callersClass_ClosingPayload
Payload test double that records whether close() ran.
tests/test_web_response.py:1455
↓ 2 callersClassAppRunner
Web Application runner
aiohttp/web_runner.py:387
↓ 2 callersClassAsyncIterablePayload
aiohttp/payload.py:992
↓ 2 callersClassBaseRequest
aiohttp/web_request.py:107
↓ 2 callersClassBodyPartReaderPayload
aiohttp/multipart.py:634
↓ 2 callersClassClientPayloadError
Response payload error.
aiohttp/client_exceptions.py:291
↓ 2 callersClassClientResponseError
Base class for exceptions that occur after getting a response. request_info: An instance of RequestInfo. history: A sequence of responses, if
aiohttp/client_exceptions.py:65
↓ 2 callersClassDynamicResource
aiohttp/web_urldispatcher.py:430
↓ 2 callersClassEofStream
eof stream indication.
aiohttp/streams.py:30
↓ 2 callersClassFakeAIODNSAddrInfoNode
tests/test_resolver.py:71
next →1–100 of 450, ranked by callers