/python-postgres-examples

Practical examples for understanding Postgres

Primary LanguageJupyter Notebook

Practical examples for understanding Postgres

Setup

  1. Clone repo
  2. Create python venv python3 -m venv venv
  3. Install all pip dependencies pip install -r requirements.txt

Examples

  1. Database Indexing

    This example involves a example of how adding a simple index can decrease the execution time of a read query exponentially.

    Code can be found here
    Blog can be found here