File size: 188 Bytes
a63752b
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import tkinter as tk
from detect_language import setup_language_processing

def window():
    label = tk.Label(text="this is the language")
    label.pack()
    window.mainloop()

window()