MINHCT commited on
Commit
9ee5788
1 Parent(s): ba5f8d5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ vectorizer = joblib.load("vectorizer.joblib") # global vocabulary
17
 
18
  def crawURL(url):
19
  # Fetch the sitemap
20
- response = requests.get(sitemap_url)
21
  # Parse the sitemap HTML
22
  soup = BeautifulSoup(response.content, 'html.parser')
23
 
 
17
 
18
  def crawURL(url):
19
  # Fetch the sitemap
20
+ response = requests.get(url)
21
  # Parse the sitemap HTML
22
  soup = BeautifulSoup(response.content, 'html.parser')
23