Spaces:
Running
Running
File size: 1,302 Bytes
aead09a 4256684 aead09a aa30d73 bdc2bfb aa30d73 661cb49 aa30d73 661cb49 aa30d73 bdc2bfb aa30d73 bdc2bfb aa30d73 bdc2bfb aa30d73 bdc2bfb aa30d73 bdc2bfb aead09a d5ef3b7 bdc2bfb aead09a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
import gradio as gr
import requests
from bs4 import BeautifulSoup
def find_it(inp):
out=""
try:
url = f"https://lens.google.com/uploadbyurl?url={inp}"
response = requests.get(url)
out=response.text
if response.status_code == 200:
page_content = response.text
soup = BeautifulSoup(page_content, "html.parser")
print(soup.prettify())
#articles = soup.find_all("div", class_="SoaBEf")
#articles = soup.find_all("a")
#articles = soup.find_all("article", class_="MQsxIb xTewfe R7GTQ keNKEd j7vNaf Cc0Z5d VkAdve GU7x0c JMJvke q4atFc")
articles = soup.find_all("article")
out = soup.prettify
print (articles)
except Exception as e:
out = e
print (e)
return (out)
#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:
with gr.Row():
with gr.Column():
inp_url=gr.Textbox(label="Image URL")
go_btn=gr.Button()
inp_im=gr.Image()
outp_text = gr.Textbox(lines=4)
go_btn.click(find_it,inp_url,outp_text)
app.launch() |