web-scraper-cdp / app.py
likhonsheikh's picture
Upload folder using huggingface_hub
25d8e7c verified
raw
history blame contribute delete
142 Bytes
import gradio as gr
def hello(name):
return f"Hello {name}!"
demo = gr.Interface(fn=hello, inputs="text", outputs="text")
demo.launch()