Spaces:
Runtime error
Runtime error
File size: 358 Bytes
6763efd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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()
|