hugovk / pypi-tools

Command-line Python scripts to do things with PyPI
https://hugovk.github.io/pypi-tools
23 stars 2 forks source link

Add 2022-04 data #49

Closed hugovk closed 2 years ago

hugovk commented 2 years ago

Also compressed them in parallel using:

brew install parallel optipng
time ls images/*.png | parallel optipng -o7 -zm1-9 {}
image

Took 3m39s, compared to 32m15s with time for f in $(ls images/*.png); do optipng -o7 -zm1-9 $f; done

(See https://www.freecodecamp.org/news/how-to-supercharge-your-bash-workflows-with-gnu-parallel-53aab0aea141/)