8 lines
182 B
Python
8 lines
182 B
Python
import sqlite3
|
|
import os
|
|
import tkinter as tk
|
|
from tkinter import ttk, messagebox, filedialog
|
|
from PIL import Image, ImageTk
|
|
|
|
DB_PATH = "cafe_person1.db"
|
|
IMG_PREVIEW_SIZE = (120, 80) |