https://github.com/mkornyev/plpgsql_db
Python motivated database, transaction, and user store.
https://github.com/mkornyev/plpgsql_db
plpgsql postgres python script
Last synced: 11 months ago
JSON representation
Python motivated database, transaction, and user store.
- Host: GitHub
- URL: https://github.com/mkornyev/plpgsql_db
- Owner: mkornyev
- Created: 2018-12-16T20:53:02.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-27T01:54:37.000Z (over 6 years ago)
- Last Synced: 2025-01-10T15:46:05.705Z (about 1 year ago)
- Topics: plpgsql, postgres, python, script
- Language: Python
- Homepage:
- Size: 197 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pspgSql Database
Welcome to VenmoDB, built especially for your enterprise needs.
Creators: Max Kornyev, Alex Nelson, Annie Spahn
## Get Started
1. Running initialize.sql will call the create file, populate the database, and create some essential triggers.
2. In terminal, run:
```
psql -d Postgres -U user -f initialize.sql
```
3. User stories are reflected in the .py files. Run with:
```
python query_name.py
```
4. Running show_all before and after calling a .py file will reflect appropriate changes in the Database. Run:
```
psql -d Postgres -U user -f show_all.sql
```
## mk