Python functions to get top-level importables names
0

Configure Feed

Select the types of activity you want to include in your feed.

Update README

Juan Luis Cano Rodríguez (Jul 24, 2024, 11:13 AM +0200) a8ac3e0b a1d79edb

+2 -2
+2 -2
README.md
··· 22 22 23 23 ``` 24 24 >>> from pygetimportables import get_top_importables 25 - >>> get_top_importables(".") # Wait a few seconds, requires working `pip install` 25 + >>> get_top_importables(".") # Wait a few seconds, requires working `uv pip install` 26 26 {'pygetimportables'} 27 27 ``` 28 28 29 29 To get the top-level importable names from an already built wheel: 30 30 31 31 ``` 32 - (.venv) $ python -m build 32 + (.venv) $ python -m build --installer uv 33 33 ... 34 34 (.venv) $ python -q 35 35 >>> from pygetimportables import get_top_importables_from_wheel