Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ def find_all(url,q=None,num=None):
|
|
21 |
#print(soup.find_all('p'))
|
22 |
|
23 |
|
24 |
-
rawp.append([[{tag.name:f'{tag.text}'}] for tag in soup.find_all()] )
|
25 |
#soup_list = [tag for tag in soup.find_all()]
|
26 |
#for tag in soup.find_all('h1','h2','h3','p','div','ul'):
|
27 |
#for tag in soup_list:
|
|
|
21 |
#print(soup.find_all('p'))
|
22 |
|
23 |
|
24 |
+
rawp.append([[{f'{tag.name}':f'{tag.text}'}] for tag in soup.find_all()] )
|
25 |
#soup_list = [tag for tag in soup.find_all()]
|
26 |
#for tag in soup.find_all('h1','h2','h3','p','div','ul'):
|
27 |
#for tag in soup_list:
|