TCP/IP: IP address / Port number

Port 80: The port number most commonly used for HTTP requests. For example, when a client makes a request to a web server, this request is usually sent through port 80.
1.png Port 5432: The port number used by most database systems; default port for Postgres.

Basic knowledge Postgres app

postgres_cheatsheet.png

Use psycopg2 to interact

import psycopg2

conn = psycopg2.connect('dbname=example3')

cursor = conn.cursor()

# Open a cursor to perform database operations
cur = conn.cursor()

# drop any existing todos table
# cur.execute("DROP TABLE IF EXISTS todos;")

# (re)create the todos table
# (note: triple quotes allow multiline text in python)
cur.execute("""
  CREATE TABLE todos (
    id serial PRIMARY KEY,
    description VARCHAR NOT NULL
  );
""")

# commit, so it does the executions on the db and persists in the db
conn.commit()

cur.close()
conn.close()