Starting Commit

This commit is contained in:
2026-07-30 00:01:03 +02:00
commit 0b2104a5f3
4 changed files with 211 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import customtkinter as ctk
import json
app = ctk.CTk()
with open("passwords.json", "r") as file:
data = json.load(file)
websites = list(data.keys())
combo = ctk.CTkComboBox(
app,
values=websites
)
combo.pack(pady=20)
app.mainloop()