Files
PyCord/client/main.py
2025-10-04 20:08:48 +02:00

16 lines
372 B
Python

import customtkinter
class App(customtkinter.CTk):
def __init__(self):
super().__init__()
self.title("Pycord Client")
self.geometry("800x600")
self.label = customtkinter.CTkLabel(self, text="Willkommen bei Pycord!", font=("Roboto", 24))
self.label.pack(pady=20)
if __name__ == "__main__":
app = App()
app.mainloop()