pypi-tools
pypi-tools copied to clipboard
Command-line Python scripts to do things with PyPI
# sequential ```sh time for f in $(ls images/*.png); do optipng -o7 -zm1-9 $f; done ``` 32m15s # parallel https://www.freecodecamp.org/news/how-to-supercharge-your-bash-workflows-with-gnu-parallel-53aab0aea141/ ```sh brew install parallel optipng time ls images/*.png | parallel...
Summary: use `Source` --- In addition to `url` (alias `homepage`), packages on PyPI can have this [metadata](https://setuptools.readthedocs.io/en/latest/setuptools.html): > `project_urls` > > An arbitrary map of URL names to hyperlinks, allowing...
Adding something like this to `setup.py` is a good way to fix these: ```py project_urls={ "Source": "https://github.com/encode/httpx", }, ``` 850/4000 missing: ```console $ p top_repos.py -n 4000 Load data/top-repos.json... Load...