Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
aka7774
/
ddg_bs4
like
0
Runtime error
App
Files
Files
Community
main
ddg_bs4
/
app.py
aka7774
Update app.py
2ba2121
verified
9 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
161 Bytes
import
fn
import
gradio
as
gr
demo = gr.Interface(
fn=fn.run,
inputs=
"text"
,
outputs=[
"text"
,
"text"
])
if
__name__ ==
'__main__'
:
demo.launch()