您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

18 行
429 B

  1. #!/usr/bin/env python
  2. """
  3. requests.certs
  4. ~~~~~~~~~~~~~~
  5. This module returns the preferred default CA certificate bundle. There is
  6. only one — the one from the certifi package.
  7. If you are packaging Requests, e.g., for a Linux distribution or a managed
  8. environment, you can change the definition of where() to return a separately
  9. packaged CA bundle.
  10. """
  11. from certifi import where
  12. if __name__ == "__main__":
  13. print(where())