✏️ 正在编辑: core.py
路径:
/snap/core24/1643/usr/lib/python3/dist-packages/certifi/core.py
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
""" certifi.py ~~~~~~~~~~ This module returns the installation location of /etc/ssl/certs/ca-certificates.crt or its contents. """ DEBIAN_CA_CERTS_PATH = '/etc/ssl/certs/ca-certificates.crt' def where() -> str: return DEBIAN_CA_CERTS_PATH def contents() -> str: with open(where(), "r", encoding="ascii") as data: return data.read()
💾 保存文件
← 返回文件管理器