face-intel / utils /http.py
Marwan
Restructure + add reverse face search (PimEyes-style)
f5eeb1c
Raw
History Blame Contribute Delete
356 Bytes
"""
utils.http — backward-compatibility shim.
The shared session has moved to cores.search.http. This module
re-exports it so existing imports continue to work.
"""
from __future__ import annotations
from cores.search import shared_session, fetch_bytes, fetch_html, fetch_json
__all__ = ["shared_session", "fetch_bytes", "fetch_html", "fetch_json"]