📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-27 14:10:53
📂
/ (Root)
/
opt
/
alt
/
python313
/
lib64
/
python3.13
/
importlib
/
metadata
📍 /opt/alt/python313/lib64/python3.13/importlib/metadata
🔄 Refresh
✏️
Editing: diagnose.py
Read Only
import sys from . import Distribution def inspect(path): print("Inspecting", path) dists = list(Distribution.discover(path=[path])) if not dists: return print("Found", len(dists), "packages:", end=' ') print(', '.join(dist.name for dist in dists)) def run(): for path in sys.path: inspect(path) if __name__ == '__main__': run()
💾 Save Changes
❌ Cancel