Rauhan commited on
Commit
28f395a
·
1 Parent(s): 5ebc71d

UPDATE: adding urls

Browse files
Files changed (1) hide show
  1. functions.py +1 -1
functions.py CHANGED
@@ -262,7 +262,7 @@ def listTables(username: str):
262
  def getLinks(url: str, timeout = 30):
263
  start = time.time()
264
  def getLinksFromPage(url: str):
265
- response = requests.get(url)
266
  htmlContent = response.content
267
  soup = BeautifulSoup(htmlContent, "lxml")
268
  anchorTags = soup.find_all("a")
 
262
  def getLinks(url: str, timeout = 30):
263
  start = time.time()
264
  def getLinksFromPage(url: str):
265
+ response = requests.get(url, verify=False)
266
  htmlContent = response.content
267
  soup = BeautifulSoup(htmlContent, "lxml")
268
  anchorTags = soup.find_all("a")