mirror of
https://github.com/python/cpython.git
synced 2024-11-27 15:27:06 +01:00
22 lines
379 B
Python
22 lines
379 B
Python
|
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()
|