Spaces:
Sleeping
Sleeping
from pydantic import BaseModel | |
""" | |
CREATE TABLE clientes ( | |
ID_Proveedor INTEGER PRIMARY KEY AUTOINCREMENT, | |
Nombre TEXT, | |
Contacto TEXT, | |
Direccion TEXT | |
); | |
""" | |
class Clientes(BaseModel): | |
ID_Proveedor: int | |
Nombre: str | |
Contacto: str | |
Direccion: str | |
class SearchClientes(BaseModel): | |
nombre: str = "" | |