Omnibus's picture
Create app.py
aead09a
raw
history blame
No virus
317 Bytes
import gradio as gr
import requests
#https://lens.google.com/uploadbyurl?url=
#https://tineye.com/search/?url=
#https://yandex.com/images/search?cbir_id=4330355%2FBhPd4CHqib3nxk9xOdS9pQ7899&rpt=imageview&url=
with gr.Blocks() as app:
inp_url=gr.Textbox(label="Image URL")
inp_im=gr.Image()
app.launch()