Blog available for sell
This blog is available for sale. Please 'contact us' if interested.
Advertise with us
database   0   7014
Using PostgreSQL Database with Python

PostgreSQL is an open source object-relational database management system. PostgreSQL is ACID-compliant and is transactional. It has triggers, foreign keys and supports functions and stored procedures.

PostgreSQL is used by giants like Uber, Apple, Netflix and Instagram. See full list here.

In this article we will see how to connect to PostgreSQL from Python Script and perform queries.



Requirement:

Create a virtual environment using python 3 and activate it. Install below packages. 

psycopg2==2.7.3.2



Installation:

Install the PostgreSQL database and utilities using below commands.

sudo apt-get update
sudo apt-get install postgresql postgresql-contrib


By default, PostgreSQL sets up the user and database “postgres” upon a new installation. We need to switch to this user to use postgres database.

sudo -su postgres


Now go to the Postgres prompt by typing psql on terminal.

bu2MUAGEYCqAVvP+VK4k6dHMqkrxJ3PyvEEpb0y4Cuc+bfet33dPWRVZOAgT+LJDrfbuu5v0zhG8jQKCVQNS+T51SWqkIS4BAdYHoYXUv9y0966vHlo8AgeYC51P53kdzDvEJEGgikOt9WfjM+5oMuZgECMTVtnmueY4x1571cAgQIFBZIM73Zfk7zPsqj7NsBAisAvFfx3S2eUXxRoBAeYELBS9HE8PVgnQAAAAASUVORK5CYII=


We are using version 10.3.


If you get any error in connecting to database, make sure PostgreSQL is running. Check the status using below command.

$ systemctl status postgresql

You can check for errors in logs using below command.

$ tail -f /var/log/postgresql



Creating database:

Before creating a new database, lets list all the databases. Use \l or \list for the same.

To create database, exit the psql terminal by typing \q and use command createdb testdb.

postgres@brahma:~$ createdb testdb
postgres@brahma:~$ psql
psql (10.3 (Ubuntu 10.3-1.pgdg16.04+1))
Type "help" for help.

postgres=# \l
                               List of databases
     Name      |  Owner   | Encoding | Collate | Ctype |   Access privileges   
---------------+----------+----------+---------+-------+-----------------------
 postgres      | postgres | UTF8     | en_IN   | en_IN | 
 rana_test     | postgres | UTF8     | en_IN   | en_IN | 
 template0     | postgres | UTF8     | en_IN   | en_IN | =c/postgres          +
               |          |          |         |       | postgres=CTc/postgres
 template1     | postgres | UTF8     | en_IN   | en_IN | =c/postgres          +
               |          |          |         |       | postgres=CTc/postgres
 testdb        | postgres | UTF8     | en_IN   | en_IN | 
(5 rows)

postgres=# \c testdb
You are now connected to database "testdb" as user "postgres".
testdb=# 

To connect to another database, use command \c or \connect and database name. \c testdb in this case.



Creating Table:


Most the query sytanx in PostgreSQL are same as MySQL.

create table users (
    id serial PRIMARY KEY,
    username varchar (20) NOT NULL,
    age smallint NOT NULL,
    location varchar (50) NOT NULL
);


Copy paste the above sytax in terminal and new table will be created. You can list the tables by typing \d.

testdb=# create table users (
testdb(#     username varchar (20) NOT NULL,
testdb(#     age smallint NOT NULL,
testdb(#     location varchar (50) NOT NULL
testdb(# );
CREATE TABLE
testdb=# \d
         List of relations
 Schema | Name  | Type  |  Owner   
--------+-------+-------+----------
 public | users | table | postgres
(1 row)

testdb=# 

You can learn more about querying from psql terminal by visitng official site. Lets go to Python code.



Connecting from Python Script:

We installed the psycopg package in virtual environment. Use below code in Python Script to connect to database.

import psycopg2


# this function will return the connection object
def connect():
    conn = None
    try:
        conn = psycopg2.connect(host="localhost", user="postgres", password="root", database="testdb")
    except Exception as e:
        print(repr(e))

    return conn


Inserting Data into Table:

First get the connection and cursor and then create query. Once query is executed, commit using connection and close the cursor and connection.

conn = connect()
cur = conn.cursor()

last_insert_id = None

# inserting data in users table
sql_query = "insert into users (username, age, location) values (%s, %s, %s) returning id;"

sql_data = (
    "Ajay",
    "25",
    "New York"
)


cur.execute(sql_query, sql_data)
last_insert_id = cur.fetchone()[0]
print("Last Insert ID " + str(last_insert_id))

conn.commit()
cur.close()
conn.close()

return last_insert_id

We are Inserting data in table and returning the primary key id which is the serial key.



Fetching Data from Table:

Select query for PostgreSQL is same as MySQL.

conn = connect()
cur = conn.cursor()

sql_query = "select username, age, location from users where location = %s;"
sql_data = ("Delhi")
cur.execute(sql_query, sql_data)

results = cur.fetchall()
return results



Updating a row:

conn = connect()
cursor = conn.cursor()

sql_query = "update users set location = %s where username = %s;"
sql_data = ("Mumbai", "Ajay")

cursor.execute(sql_query, sql_data)

cursor.close()
conn.close()

return True


To exit the terminal use \q command. 


If you are facing any issue, feel free to comment.




database   0   7014
0 comments on 'Using Postgresql Database With Python'
Login to comment


Related Articles:
Working with MySQL and Python3 - Part 2
Working with MySQL and Python, MySQL connector and Python3, Dropping and Truncating a table in MySQL using Pythong, How to insert multiple records to MySQL using Python...
Working with MySQL and Python3
Working with MySQL 5.7 and 8.0 using Python 3, Connecting with MySQL using Python, Inserting and Deleting data from MySQL using Python, Data processing with MySQL and Python...
Logging databases changes in Django Application
Logging databases changes in Django Application, Using Django signals to log the changes made to models, Model auditing using Django signals, Creating signals to track and log changes made to database tables, tracking model changes in Django, Change in table Django, Database auditing Django, tracking Django database table editing...
How to backup database periodically on PythonAnyWhere server
Scheduling the database backup in Django, script to the backup database periodically in Django app, Delete old backup files periodically in Django app, PythonAnyWhere server database backup in Django,...
DigitalOcean Referral Badge

© 2022-2023 Python Circle   Contact   Sponsor   Archive   Sitemap