Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > > site-packages > jwt
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 | 1670 bytes | April 17 2025 13:10:58. | |
algorithms.py | File | 29800 bytes | April 17 2025 13:10:58. | |
api_jwk.py | File | 4196 bytes | April 17 2025 13:10:58. | |
api_jws.py | File | 11099 bytes | April 17 2025 13:10:58. | |
api_jwt.py | File | 12638 bytes | April 17 2025 13:10:58. | |
exceptions.py | File | 1046 bytes | April 17 2025 13:10:58. | |
help.py | File | 1749 bytes | April 17 2025 13:10:58. | |
jwk_set_cache.py | File | 959 bytes | April 17 2025 13:10:58. | |
jwks_client.py | File | 4222 bytes | April 17 2025 13:10:58. | |
py.typed | File | 0 bytes | April 17 2025 13:10:58. | |
types.py | File | 99 bytes | April 17 2025 13:10:58. | |
utils.py | File | 3903 bytes | April 17 2025 13:10:58. | |
warnings.py | File | 59 bytes | April 17 2025 13:10:58. |
import json import platform import sys from typing import Dict from . import __version__ as pyjwt_version try: import cryptography cryptography_version = cryptography.__version__ except ModuleNotFoundError: cryptography_version = "" def info() -> Dict[str, Dict[str, str]]: """ Generate information for a bug report. Based on the requests package help utility module. """ try: platform_info = { "system": platform.system(), "release": platform.release(), } except OSError: platform_info = {"system": "Unknown", "release": "Unknown"} implementation = platform.python_implementation() if implementation == "CPython": implementation_version = platform.python_version() elif implementation == "PyPy": pypy_version_info = sys.pypy_version_info # type: ignore[attr-defined] implementation_version = ( f"{pypy_version_info.major}." f"{pypy_version_info.minor}." f"{pypy_version_info.micro}" ) if pypy_version_info.releaselevel != "final": implementation_version = "".join( [implementation_version, pypy_version_info.releaselevel] ) else: implementation_version = "Unknown" return { "platform": platform_info, "implementation": { "name": implementation, "version": implementation_version, }, "cryptography": {"version": cryptography_version}, "pyjwt": {"version": pyjwt_version}, } def main() -> None: """Pretty-print the bug information as JSON.""" print(json.dumps(info(), sort_keys=True, indent=2)) if __name__ == "__main__": main()
SILENT KILLER Tool