summaryrefslogtreecommitdiff
path: root/requests-0.14.0/requests/certs.py
blob: 42df2f898553be84a5c15cfcc61821150b423cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
ceritfi.py
~~~~~~~~~~

This module returns the installation location of cacert.pem.
"""

import os
try:
    import certifi
except ImportError:
    certifi = None


def where():

    if certifi:
        return certifi.where()
    else:
        f = os.path.split(__file__)[0]
        return os.path.join(f, 'cacert.pem')

if __name__ == '__main__':
    print(where())