I am using the ssl module in python, specifically this:
Most examples of using this show using file paths as the first two parameters like this:
context.load_cert_chain("/path/to/cert.pem", "/path/to/key.pem", password=password)
What if these certificates are stored in the Windows certs store? (CA, Root, etc). Can I still retrieve and then use the file path to pass into the above method?