Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AkshayaKeerthi
/
OnlineRAG
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
db0b04f
OnlineRAG
/
app.py
AkshayaKeerthi
Update app.py
db0b04f
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
142 Bytes
import
tkinter
as
tk
root = tk.Tk()
root.title(
"Hello, Tkinter!"
)
label = tk.Label(root, text=
"Hello, Tkinter!"
)
label.pack()
root.mainloop()