Omnibus commited on
Commit
9c6f370
1 Parent(s): 31f6eb1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ def find_all(url,q=None,num=None):
21
  #print(soup.find_all('p'))
22
 
23
  this = [tag.name for tag in soup.find_all()]
24
- that = [tag.string for tag in soup.find_all()]
25
 
26
  #rawp.append([tag.name for tag in soup.find_all()] )
27
  #soup_list = [tag for tag in soup.find_all()]
 
21
  #print(soup.find_all('p'))
22
 
23
  this = [tag.name for tag in soup.find_all()]
24
+ that = [tag.text for tag in soup.find_all()]
25
 
26
  #rawp.append([tag.name for tag in soup.find_all()] )
27
  #soup_list = [tag for tag in soup.find_all()]