Trying to make a simple get request using Requests session but I keep getting SSLerror for a specific site. I think maybe the problem is with the site (I did a scan using ht
You can disable certificate verification:
requests.get('https://www.reporo.com/', verify=False)
but without certificate verification there is no man-in-the-middle attack protection.