X7ROOT File Manager
Current Path:
/opt/alt/python313/lib64/python3.13/importlib/metadata
opt
/
alt
/
python313
/
lib64
/
python3.13
/
importlib
/
metadata
/
ðŸ“
..
📄
__init__.py
(33.29 KB)
ðŸ“
__pycache__
📄
_adapters.py
(2.35 KB)
📄
_collections.py
(743 B)
📄
_functools.py
(2.83 KB)
📄
_itertools.py
(2.02 KB)
📄
_meta.py
(1.76 KB)
📄
_text.py
(2.12 KB)
📄
diagnose.py
(379 B)
Editing: diagnose.py
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()
Upload File
Create Folder