core.py 218 B

12345678910111213141516
  1. # -*- coding: utf-8 -*-
  2. """
  3. certifi.py
  4. ~~~~~~~~~~
  5. This module returns the installation location of cacert.pem.
  6. """
  7. import os
  8. def where():
  9. f = os.path.dirname(__file__)
  10. return os.path.join(f, 'cacert.pem')