Loading...
Loading...
02-reusable-code-python/httpx_utils/__init__.py
"""
HTTP 클라이언트 - httpx AsyncClient + 재시도 + 동시성 제한
@source: GitHub-커뮤니티
@extracted: 2026-02-16
@version: 1.0.0
"""
from .httpx_client import get_client, fetch_json
__all__ = [
"get_client",
"fetch_json",
]