xanderyzwich / datapy

File based database without external dependencies.
Apache License 2.0
3 stars 2 forks source link

Data Types #6

Open xanderyzwich opened 4 years ago

xanderyzwich commented 4 years ago

While the MVP may include using strings for everything, we will need a way to determine data types. This will allow mathematical operators and differentiate string and mathematical operations.

xanderyzwich commented 4 years ago

Might want to consider Pydantic

ericwburden commented 3 years ago

I've had some success converting JSON to Pydantic models, so if we wanted to store the table in a .csv file and the schema in a .json file, we could keep them side by side.