"""Thin re-export wrapper — implementation moved to analysis/data_loader/ package. When both ``analysis/data_loader.py`` and ``analysis/data_loader/`` exist, Python prefers the package directory, so this file is effectively dead code. Kept for git history continuity — all real code lives in the package. If you need to restore the monolithic version, see git history. """ from analysis.data_loader._csv import load_csv_directory from analysis.data_loader._sqlite import ( load_from_db, load_from_db_lazy, save_to_db, drop_sqlite_table, ) from analysis.data_loader._clean import _coerce_to_float from analysis.data_loader._sqlite import _dtype_to_sqlite