Spaces:
Sleeping
Sleeping
UPDATE: adding urls
Browse files- 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")
|