Skip to content Skip to sidebar Skip to footer

Get Last Update Of A Pip Package Programatically

( Apologies for an issue with the initial title of this question due to a copy paste issue) On pypi.org I can search for packages by relevance or by 'Date last updated' What I'd re

Solution 1:

You're looking for JSON API. Projects don't have last modification date but releases have upload timestamp. So it's

json["releases"][version][package_index]["upload_time"]

Post a Comment for "Get Last Update Of A Pip Package Programatically"