Skip to content

Instantly share code, notes, and snippets.

View Nicolas-albu's full-sized avatar
🐍
I love Python!

Nícolas Albuquerque R. Nicolas-albu

🐍
I love Python!
View GitHub Profile
@Nicolas-albu
Nicolas-albu / crud_psycopg2.py
Created January 12, 2023 19:02
Manipulando registros com Python e PostgreSQL
import psycopg2
class ecommerce_database:
def __init__(self, cod_product, val_product):
pass
def connection_database(self):
connection = psycopg2.connect(host='localhost',
database='DB_ECOMMERCE',
user='postgres',