Omnibus commited on
Commit
b878468
1 Parent(s): 7ee1b98

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ import lxml
6
 
7
  def find_it1(url):
8
  source = urllib.request.urlopen(url).read()
9
- soup = bs.BeautifulSoup(source,'lxml')
10
  # title of the page
11
  print(soup.title)
12
 
 
6
 
7
  def find_it1(url):
8
  source = urllib.request.urlopen(url).read()
9
+ soup = bs4.BeautifulSoup(source,'lxml')
10
  # title of the page
11
  print(soup.title)
12