This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from os import environ, path | |
from glob import glob | |
import certifi | |
# Even if we have trusted certs in our system ca certificates, requests uses it's own | |
# Mine happen to live in /usr/local/share/ca-certificates | |
# DON'T update the existing bundle becuase updating requests will overwrite it | |
cert_dir = "/usr/local/share/ca-certificates" | |
pwd = path.abspath(path.dirname(__file__)) |