Lab realized as a student at ECN. This app is a python CLI (command line interface) to query a PostgreSQL database. https://github.com/DricomDragon/PythonPostgresLab
|
5 years ago | |
---|---|---|
SQL | 6 years ago | |
cli | 5 years ago | |
consumer | 5 years ago | |
model | 6 years ago | |
.gitignore | 6 years ago | |
README.md | 6 years ago | |
app_customer.py | 5 years ago | |
app_dispatcher.py | 6 years ago | |
app_product.py | 6 years ago | |
basic_display.py | 6 years ago | |
test_pyinquirer.py | 6 years ago |
A CLI (Command Line Interface) written in python to query a PostgreSQL database. Lab realized as a student at Ecole Centrale de Nantes (ECN).
What you need to get this project running. These commands were tested on a debian based system (Ubuntu 18.04 LTS).
If not installed yet, you need to get pip, the python package manager :
sudo apt install python3-pip
For easy CLI python interfaces :
sudo pip3 install pyinquirer
To install PostgreSQL driver :
sudo pip3 install postgres
I strongly recommand to know how to run an instance of postgreSQL. The schema is a model of a logistics company.
Install postgreSQL :
sudo apt install postgresql
Start service :
sudo service postgresql start
Connect with postgres profile :
sudo su postgres
Create the database :
psql -f SQL/create_db.sql postgres
Populate database with tables :
psql -d logistics -f SQL/create_tables.sql postgres
Populate tables with sample data :
psql -d logistics -f SQL/populate_tables.sql postgres
If needed you can adapt the password of postgres user (or any user you want) :
psql -c "alter user postgres password 'postgres_password'"