<<<<<<< HEAD
=======
A lightweight SQL-like database management system implemented in Python.
mini_sql_engine/
├── __init__.py # Package initialization
├── exceptions.py # Base exception classes
└── models/ # Core data models
├── __init__.py
├── column.py # Column data model
├── schema.py # Schema data model
├── row.py # Row data model
└── table.py # Table data model
tests/ # Unit tests
├── __init__.py
└── test_models/
├── __init__.py
├── test_column.py # Column tests
├── test_schema.py # Schema tests
├── test_row.py # Row tests
└── test_table.py # Table tests
run_tests.py # Test runner script
requirements.txt # Project dependencies
python run_tests.py
c204c3e534a1ce28c3a54ca2b51b678bc1daeb8c