File size: 356 Bytes
bbc3fdf
892fa81
 
 
 
bbc3fdf
 
 
 
892fa81
bbc3fdf
892fa81
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
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"]