PostgreSQL Connection String — Django

The Django PostgreSQL database setting uses the django.db.backends.postgresql engine and requires a DATABASES dictionary in settings.py. Use this builder to generate the correct Django database configuration for PostgreSQL. Requires psycopg2-binary to be installed.

Build your connection string


        
      

Install

pip install psycopg2-binary

Usage


    

Back to PostgreSQL drivers