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

Jovian (Netbook) d3cadca297 Steps to install postgreSQL and create the database há 6 anos atrás
SQL 5a8091d9e1 SQL code to create tables in a PostgreSQL database há 6 anos atrás
.gitignore bad4ff78b1 Initial commit há 6 anos atrás
README.md d3cadca297 Steps to install postgreSQL and create the database há 6 anos atrás
app_dispatcher.py 9bb09f593b Fix DataConsumer importation há 6 anos atrás
connect.py 55589e50fa Fix the connection access in methods há 6 anos atrás

README.md

PythonPostgresLab

A CLI (Command Line Interface) written in python to query a PostgreSQL database. Lab realized as a student at Ecole Centrale de Nantes (ECN).

Postgres

Install postgreSQL : sudo apt install postgresql

Create the database : #psql postgres=#create database logistics;

Populate database with tables : #psql -d logistics -f SQL/create_tables.sql postgres