#!/usr/bin/env python# -*- coding: utf-8 -*-"""requests.certs~~~~~~~~~~~~~~This module returns the preferred default CA certificate bundle. There isonly one — the one from the certifi package.If you are packaging Requests, e.g., for a Linux distribution or a managedenvironment, you can change the definition of where() to return a separatelypackaged CA bundle."""frompip._vendor.certifiimportwhereif__name__=='__main__':print(where())