This document is for Kombu's development version, which can be significantly different from previous releases. Get the stable docs here: 5.3.

Source code for kombu.asynchronous.http

from __future__ import annotations

from kombu.asynchronous import get_event_loop
from kombu.asynchronous.http.base import BaseClient, Headers, Request, Response
from kombu.asynchronous.hub import Hub

__all__ = ('Client', 'Headers', 'Response', 'Request', 'get_client')


[docs] def Client(hub: Hub | None = None, **kwargs: int) -> BaseClient: """Create new HTTP client.""" from .urllib3_client import Urllib3Client return Urllib3Client(hub, **kwargs)
[docs] def get_client(hub: Hub | None = None, **kwargs: int) -> BaseClient: """Get or create HTTP client bound to the current event loop.""" hub = hub or get_event_loop() try: return hub._current_http_client except AttributeError: client = hub._current_http_client = Client(hub, **kwargs) return client