This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', |