File size: 261 Bytes
a067ada
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""
Data processing module for loading and preparing data sources.

Provides utilities for loading CSV, Excel, JSON files and
converting them to SQLite databases for SQL querying.
"""

from src.data_processing.loader import DataLoader

__all__ = ["DataLoader"]