Spaces:
Runtime error
Runtime error
import gradio as gr | |
import pyshorteners | |
def shorten_url(url): | |
shortener = pyshorteners.Shortener() | |
short_url = shortener.tinyurl.short(url) | |
return short_url | |
def url_shortener(url): | |
short_url = shorten_url(url) | |
return short_url | |
iface = gr.Interface(fn=url_shortener, inputs="text", outputs="text", title="URL Shortener") | |
iface.launch() | |