Create database step-by-step:
- Create database in PostgresSQL
- Create file database.ini
Example:
[postgresql]
host=localhost
dbname=my_data
user=postgres
password=your_password
port=5432
- Run file create_table.py
- Run file insert_data.py
Database is done.