From 6ae0e1502ffc92934b4b35f4be29786e8f7cca7a Mon Sep 17 00:00:00 2001 From: lalalaurentiu Date: Thu, 18 Dec 2025 00:11:08 +0200 Subject: [PATCH] Fix scraper URL request to disable SSL verification --- sites/tbibank.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/tbibank.py b/sites/tbibank.py index 943d1bd..920adfc 100644 --- a/sites/tbibank.py +++ b/sites/tbibank.py @@ -7,7 +7,7 @@ url = "https://tbibankro.recruitee.com/" scraper = Scraper() -scraper.get_from_url(url) +scraper.get_from_url(url, verify=False) container = scraper.find("div", {"data-component": "PublicApp"})