This file contains 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 tkinter | |
from tkinter import CENTER, ttk | |
lista_matriculas = [] | |
ventana = tkinter.Tk() | |
ventana.geometry('500x500') | |
# etiqueta de mensaje | |
mensaje_lbl = tkinter.Label(ventana) | |
mensaje_lbl.grid(row=0, column=1) |
This file contains 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 | |
from configparser import ConfigParser | |
class Postgres(): | |
""" Connect to the PostgreSQL database server """ | |
connection = None | |
def __init__(self): |