A collection of small pip update helpers

pipdate pipdate is a collection of small pip update helpers. The command pipdate # or python3.9 -m pipdate updates all your pip-installed packages. (Only works on Unix.) There’s a Python interface as well that can be used for update notifications.This import pipdate pipdate.check(“matplotlib”, “0.4.5”) will print This can, for example, be used by package authors to notify users of upgrades oftheir own packages. If you guard the check with import pipdate if pipdate.needs_checking(“matplotlib”): print(pipdate.check(“matplotlib”, “0.4.5”), end=””) then it will be […]

Read more