I can access https://siscourses.ethz.ch/python_dbiol/data/logistic_data.txt with curl or within google chrome without any complaints about the certificate.
If I run
import requests request.get("https://siscourses.ethz.ch/python_dbiol/data/logistic_data.txt") I get
ssl.SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:749)
What is going wrong here ? I could disable certificate validation, but would prefer to understand the underlying problem.