Current Path: > > opt > alt > python313 > lib > > > python3.13 > > site-packages > pip > _vendor > certifi
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 94 bytes | December 01 2024 12:47:36. | |
__main__.py | File | 255 bytes | December 01 2024 12:47:36. | |
core.py | File | 1005 bytes | December 01 2024 12:47:36. | |
py.typed | File | 0 bytes | December 01 2024 12:47:36. |
""" certifi.py ~~~~~~~~~~ This module returns the installation location of cacert.pem or its contents. """ import sys import os import types from typing import Union Package = Union[types.ModuleType, str] Resource = Union[str, "os.PathLike"] # This fallback will work for Python versions prior to 3.7 that lack the # importlib.resources module but relies on the existing `where` function # so won't address issues with environments like PyOxidizer that don't set # __file__ on modules. def read_text( package: Package, resource: Resource, encoding: str = 'utf-8', errors: str = 'strict' ) -> str: with open(where(), encoding=encoding) as data: return data.read() # If we don't have importlib.resources, then we will just do the old logic # of assuming we're on the filesystem and munge the path directly. def where() -> str: return '/etc/pki/tls/certs/ca-bundle.crt' def contents() -> str: return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii")
SILENT KILLER Tool