1 # -*- coding: utf-8 -*-
3 # Copyright (C) 2013 LEAP
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 This module returns the preferred default CA certificate bundle.
20 If you are packaging Requests, e.g., for a Linux distribution or a managed
21 environment, you can change the definition of where() to return a separately
28 _system = platform.system()
30 IS_MAC = _system == "Darwin"
35 Return the preferred certificate bundle.
38 if getattr(sys, 'frozen', False):
39 # we are running in a |PyInstaller| bundle
41 return os.path.join(path, 'cacert.pem')
42 return os.path.join(os.path, dirname(__file__), 'cacert.pem')
44 if __name__ == '__main__':