Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to set up a postgress database for your django projecrt

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'dbtest', 
        'USER': 'postgres', 
        'PASSWORD': '1234',
        'HOST': '127.0.0.1', 
        'PORT': '5432',
    }
}
Comment

PREVIOUS NEXT
Code Example
Python :: 2d array pytho 
Python :: delete specific indeces from numpy array 
Python :: Inheritance constructor with parameters python 
Python :: extract column numpy array python 
Python :: instagram login with selenium py 
Python :: current time python 
Python :: python horizontal line 
Python :: how to get location using python 
Python :: list adding to the begining python 
Python :: ipywidegtes dropdown 
Python :: pandas concatenate 
Python :: python list of integers 
Python :: django connection cursor 
Python :: bar labeling in matplotlib 
Python :: split a given number in python 
Python :: scapy python import 
Python :: how to make html files open in chrome using python 
Python :: remove particular row number in pandas 
Python :: remove rows from pandas dataframe that have text 
Python :: what is join use for in python 
Python :: python absolute value 
Python :: python numba 
Python :: python datetime weekday 
Python :: save dataframe to a csv local file pyspark 
Python :: select specific rows from dataframe in python 
Python :: pathlib path exists 
Python :: python use variable in another file 
Python :: install python packages behind proxy 
Python :: unable to get local issuer certificate python 
Python :: python os open notepad 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =