2025-06-11 14:12:11 +02:00

15 lines
335 B
Python

import pathlib
from .connections import Connection, SilentConnection
from .cache import clean_cache, clear_cache, set_cache_directory
__name__ = "python_requests"
__folder__ = str(pathlib.Path(__file__).parent)
__all__ = [
"Connection",
"SilentConnection",
"clean_cache",
"clear_cache",
"set_cache_directory",
]