SamiKoen commited on
Commit
13de5a1
·
verified ·
1 Parent(s): 2492044

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -31,7 +31,7 @@ if not OPENAI_API_KEY:
31
 
32
  # Trek bisiklet ürünlerini çekme
33
  url = 'https://www.trekbisiklet.com.tr/output/8582384479'
34
- response = requests.get(url)
35
  root = ET.fromstring(response.content)
36
 
37
  products = []
 
31
 
32
  # Trek bisiklet ürünlerini çekme
33
  url = 'https://www.trekbisiklet.com.tr/output/8582384479'
34
+ response = requests.get(url, verify=False)
35
  root = ET.fromstring(response.content)
36
 
37
  products = []