This folder contains a small example of the following:
- Setting up a basic DB
- Seeding it with basic data
- Updating lots of rows at once efficiently
- Make a
venv - Activate it
pip3 install -r requirements.txtpsql postgres -f schema.sqlto make the database and all tablespsql bear_attacks -f seed.sqlto put seed data into the databasepython3 simulate_attacks.pyto generate fake datapython3 bulk_insert.pyto upload all generated data to the database