PATH:
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
importlib_metadata
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()
[+]
__pycache__
[+]
compat
[-] _functools.py
[edit]
[-] _typing.py
[edit]
[-] __init__.py
[edit]
[-] _compat.py
[edit]
[-] _adapters.py
[edit]
[-] _itertools.py
[edit]
[+]
..
[-] py.typed
[edit]
[-] _meta.py
[edit]
[-] _collections.py
[edit]
[-] _text.py
[edit]
[-] diagnose.py
[edit]