Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hamza50
/
public-json
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
hamza50
commited on
Aug 22, 2023
Commit
17bf16f
·
1 Parent(s):
f301c5e
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
+
import os
3
+
HF_token = os.environ.get('HF_token')
4
+
5
+
iface = gr.load('hamza50/json-api', src='spaces', api_key=HF_token )
6
+
iface.launch()