Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
dt2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abidlabs
HF Staff
commited on
18 days ago
Commit
68ad918
·
verified
·
1 Parent(s):
1347565
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import gradio as gr
2
+
3
+
demo = gr.Interface(fn=lambda x: x, inputs=gr.DateTime(), outputs=gr.DateTime())
4
+
5
+
if __name__ == "__main__":
6
+
demo.launch()