Basic sql engine which supports simple queries of the type: SELECT FROM WHERE ;
Basic sql engine which supports simple queries of the type:
SELECT <attributes> FROM <tables> WHERE <condition>;
sudo apt install python3 python3-venv
python3 -m venv env
source env/bin/activate
pip install --upgrade pip && pip install -r requirements.txt
To run query, use the following command
python3 20171171.py "<query_string>"
After finishing running queries, deactivate environment
deactivate
rm -r env/