Spaces:
Sleeping
Sleeping
| """ | |
| CANedge Data Lake Python SDK | |
| Production-ready Python package for querying and analyzing CAN/LIN data lakes | |
| created from CSS Electronics CANedge MDF4 logs using AWS Athena. | |
| """ | |
| __version__ = "0.1.0" | |
| from .config import DataLakeConfig | |
| from .athena import AthenaQuery | |
| from .catalog import DataLakeCatalog | |
| from .query import DataLakeQuery | |
| from .batch import BatchProcessor | |
| __all__ = [ | |
| "DataLakeConfig", | |
| "AthenaQuery", | |
| "DataLakeCatalog", | |
| "DataLakeQuery", | |
| "BatchProcessor", | |
| ] | |