Files
Tagger/Tagger.py

17 lines
377 B
Python
Raw Normal View History

2025-09-11 18:59:22 +02:00
# Imports
2025-09-05 10:29:23 +02:00
import tkinter as tk
from tkinter import ttk
2025-09-17 06:46:05 +02:00
from src.gui.gui import App
2025-09-11 18:59:22 +02:00
from src.core.file_handler import list_files
2025-09-17 06:46:05 +02:00
from src.core.SQL_handler import SQLite3FileHandler
2025-09-21 19:28:17 +02:00
from pathlib import Path
2025-09-05 10:29:23 +02:00
2025-09-17 06:46:05 +02:00
class State():
def __init__(self) -> None:
self.app = App()
self.sql_handler = SQLite3FileHandler(Path("Test.db3"))
STATE = State()
STATE.app.main()