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
27 _system = platform.system()
29 IS_MAC = _system == "Darwin"
34 Return the preferred certificate bundle.
37 # vendored bundle inside Requests, plus some additions of ours
39 return os.path.join("/Applications", "Bitmask.app",
40 "Contents", "Resources",
42 return os.path.join(os.path.dirname(__file__), 'cacert.pem')
44 if __name__ == '__main__':