Spaces:
Sleeping
Sleeping
File size: 1,650 Bytes
d6afb45 7ee1b98 d6afb45 56e3a34 6005136 56e3a34 d6afb45 b878468 d6afb45 56e3a34 6005136 56e3a34 a4e653d c0e818a a4e653d d6afb45 6005136 d6afb45 56e3a34 6005136 d6afb45 56e3a34 792d4ad 56e3a34 176890c d6afb45 |
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
import gradio as gr
import urllib.request
import requests
import bs4
import lxml
def find_it1(url,q=None,num=None):
out = []
rawp = []
source = urllib.request.urlopen(url).read()
soup = bs4.BeautifulSoup(source,'lxml')
# title of the page
print(soup.title)
# get attributes:
print(soup.title.name)
# get values:
print(soup.title.string)
# beginning navigation:
print(soup.title.parent.name)
# getting specific values:
print(soup.p)
print(soup.find_all('p'))
for p in soup.find_all(f'{q}'):
#print(paragraph.string)
#print(str(paragraph.text))
out.append(f'{p}\n')
out.append(f'{p.string}\n')
out.append(f'{p.text}\n')
out.append("\n")
#print([str(tag) for tag in soup.find_all()])
for tag in soup.find_all():
rawp.append(f'{tag}\n')
for url in soup.find_all('a'):
print(url.get('href'))
print(soup.get_text())
return rawp, out
def find_it2(url):
response = requests.get(url,a1=None,q2=None,q3=None)
try:
response.raise_for_status()
soup = BeautifulSoup(response.content, 'lxml')
out = 'URL Links:\n'.join([p.text for p in soup.find_all('a')])
return out
except Exception as e:
print (e)
return e
with gr.Blocks() as app:
with gr.Row():
inp = gr.Textbox()
q = gr.Textbox(value="p")
num = gr.Number(value=1)
btn = gr.Button()
with gr.Row():
rawp = gr.Textbox()
outp = gr.JSON()
btn.click(find_it1,[inp,q,num],[rawp,outp])
app.launch()
|