Git Product home page Git Product logo

postgresql-python's Introduction

PostgreSQL with cmd line and python psycopg2


Table of Contents


Goals

       1. To show how to easily interact with Win10 postgreSQL cmd line and Python using PostgreSQL database adapter package "psycopg2". See python notebook.

       2. My python notebook builds an entity relationship (ER) diagram simplified in the following tutorial.

Common Win10 PostgreSQL cmd line commands


  • To start the windows10+ command file go to search menu and type "cmd"**

      If you are allowed to, select "Run as administrator"


  • To open the connection to a postgreSQL server

d : dBase name
W : Password prompt - even if there is no password
U : username
Learning : an example dB
postgres : user
There are more -options at this link

psql -d Learning -U postgres -W

output :


  • A COLON (;) commits any message to the database

DROP DATABASE TARGET_dB;
CREATE DATABASE TARGET_db;

  • Drop existing connections but yours

For PostgreSQL 9.2 and above use the following

SELECT pg_terminate_backend(pg_stat_activity.pid)
FROM pg_stat_activity
WHERE pg_stat_activity.datname = 'TARGET_dB' -- ← change this to your DB
  AND pid <> pg_backend_pid();

  • Drop a database

If you don't see a confirmation message, the command didn't commit (execute) to the dB

DROP DATABASE TARGET_dB;

output (confirmation message) :

DROP DATABASE

  • See all a list of databases

\l

output :




Interacting with PostgreSQL dB in Python

  • Prerequisite - Install in your local python environment the "psycopg2" package

      Psycopg is a PostgreSQL database package that is interactive shell with PostgreSQL. It allows one to create, read, update, and delete PostgreSQL databases and tables.
More about the installation here.
      One of the most frequent operations in interacting with a database is CRUD which stands for create, read, update, and delete a database, table, or content data. I will go over each of these simple steps.

  • Preparation of the database driver

      Once you have psycopg2 installed, import the package in python. Next connect to the postgres server in python. Please read the documentation of establishing a connection.

database = 'postgres' # database server name user = 'postgres' password = 'password' # this value you may change later host = '127.0.0.1' # local host computer's IP address port = '5432' # PostgreSQL's default port

# import the package
import psycopg2 # postgreSQL's database driver
import numpy as np
import pandas as pd
from psycopg2.extensions import ISOLATION_LEVEL_AUTOCOMMIT

# set the variables
DATABASE_INITIAL_ = 'postgres'
DATABASE_ = 'financial'
USER_ = 'postgres'
PASSWORD_ = 'password'
HOST_ = '127.0.0.1'
PORT_ = '5432'

# python functions (title) - Please refer to the python notebook
def establish_connection(DATABASE_, USER_, PASSWORD_, HOST_, PORT_):
def detect_table_exists(cursor, TABLE_):
def create_database(DATABASE_INITIAL_, DATABASE_, USER_, PASSWORD_, HOST_, PORT_):
def create_table(DATABASE_, USER_, PASSWORD_, HOST_, PORT_, sql_script, TABLE_):
def update_table(DATABASE_, USER_, PASSWORD_, HOST_, PORT_, sql_script, TABLE_):
def drop_table(DATABASE_, USER_, PASSWORD_, HOST_, PORT_, sql_script, TABLE_):


# Setting the connection to TRUE allows cleaner
# commit statements able to be read by postgreSQL 
# conn.autocommit = True. If there is no autocommit,
# there are certain complex statements that don't
# execute cleanly.
conn.autocommit = True

# Creating a cursor object in order to execute statements
cursor = conn.cursor()




  • Create a database

# Create a database by using the following function
create_database(DATABASE_INITIAL_, DATABASE_, USER_, PASSWORD_, HOST_, PORT_)

output of python

financial database created successfully........
CREATE database commit comment :
"CREATE database financial"
financial database now closed successfully........

output if the database exists :

The dB of the name financial exists already




  • Create a table

       Once you have created the database and connected, CREATE a table and a sample is shown in the following.
TABLE_ = 'exchange'
DATABASE_ = 'financial'

# create exchange table
TABLE_ = 'exchange'
sql = '''CREATE TABLE IF NOT EXISTS ''' + TABLE_ + ''' (
  id SERIAL PRIMARY KEY,
  name VARCHAR(10) NOT NULL,
  currency CHAR(3) NULL DEFAULT NULL,
  created_date TIMESTAMPTZ NULL DEFAULT TRANSACTION_TIMESTAMP(),
  last_updated  TIMESTAMPTZ NULL DEFAULT TRANSACTION_TIMESTAMP())'''

create_database(DATABASE_INITIAL_, DATABASE_, USER_, PASSWORD_, HOST_, PORT_)

output in python :

TABLE : "exchange" DOES NOT EXIST

CREATING TABLE : exchange ....

Table created successfully........

CREATE sql commit comment :
CREATE TABLE IF NOT EXISTS exchange (
  id SERIAL PRIMARY KEY,
  name VARCHAR(10) NOT NULL,
  currency CHAR(3) NULL DEFAULT NULL,
  created_date TIMESTAMPTZ NULL DEFAULT TRANSACTION_TIMESTAMP(),
  last_updated  TIMESTAMPTZ NULL DEFAULT TRANSACTION_TIMESTAMP())
READ sql commit comment :                              
    SELECT column_name, data_type, is_nullable
    FROM information_schema.columns
    WHERE table_name = 'exchange';

Pandas schema READ :
"    column_name                 data_type is_nullable
0            id                   integer          NO
1          name         character varying          NO
2      currency                 character         YES
3  created_date  timestamp with time zone         YES
4  last_updated  timestamp with time zone         YES"

financial database now closed successfully.



  • Update the table

       When the table schema is created, then update with values as the following. The python viewing is in pandas df because of the simplicity in display. This would not be feasible with reading 1 million rows for the database so a UPDATE LIMIT statement would be needed.

# update exchange table
TABLE_ = 'exchange'
sql = '''INSERT INTO ''' + TABLE_ + ''' (
  name, currency, created_date, last_updated)
  VALUES ('NASDAQ', 'USD', '2000-01-01', '2001-02-01');'''
create_table(DATABASE_,
                 USER_,
                 PASSWORD_,
                 HOST_,
                 PORT_,
                 sql,
                 TABLE_)

output in python :

TABLE : "exchange" EXISTS

Data inserted successfully........
Table INSERT sql commit comment :
"INSERT INTO exchange (
  name, currency, created_date, last_updated)
  VALUES ('NASDAQ', 'USD', '2000-01-01', '2001-02-01');"


Data fetched successfully........
Table READ LIMIT 5 sql commit comment :
"SELECT * FROM exchange"

Pandas display :
id	name	currency	created_date	last_updated
0	1	NASDAQ	USD	2000-01-01 00:00:00-08:00	2001-02-01 00:00:00-08:00



  • Delete/Drop a table

# drop table exchange
drop_table(DATABASE_, USER_, PASSWORD_, HOST_, PORT_, sql_script, TABLE_):

output in python :

financial database now opened successfully........

TABLE : "exchange" EXISTS
exchange DROP sql commit comment :
"DROP TABLE IF EXISTS exchange;"
exchange dropped successfully.
financial database now closed successfully.


Improvements

  • create try and fail statements

Credits

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.