Connecting PostgreSQL with Django
Connecting postgreSQL with DJANGO To create your first Django project refer to this blog – Creating first Django Project 1. Install psycopg2: Django uses the psycopg2 library to interact with PostgreSQL databases. Make sure you have it installed. You can install it using pip: pip install psycopg2 2. Configure the settings: …