how to see less recent packages on pypi

ignoragus

I saw some really interesting packages on pypi yesterday. They've fallen off the list today and (being senile) I don't recall enough detail to get to them. How do I get a list of all packages for (say) the last week?

nARN

PyPi has an xmlrpc API. You can get a list of recent releases with an updated_releases method. It returns a list of releases made since given timestamp.

For example, it may look like this:

import xmlrpclib
import time

client = xmlrpclib.ServerProxy("https://pypi.python.org/pypi")

interval = 86400*2
for package, version in client.updated_releases(int(time.time()) - interval):
    print "%s %s" % (package, version)

Additionally there is a release_data(package_name, release_version) method to get more details about particular release

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to make "conda" installer look for "PyPi" packages

From Dev

JSON API for PyPi - how to list packages?

From Dev

JSON API for PyPi - how to list packages?

From Dev

How to list the names of PyPI packages corresponding to imports in a script?

From Dev

How to install PyPi packages using anaconda conda command

From Dev

How to include non PyPi packages for virtualenv requirements file?

From Java

A guide for updating packages on PyPi

From Dev

List PyPI packages by popularity

From Dev

Transfer ownership of PyPI packages

From Dev

How to order packages LESS + Remote-FTP?

From Dev

How to order packages LESS + Remote-FTP?

From Dev

How to see history of snap packages updates?

From Dev

How to see history of snap packages updates?

From Dev

How can I see more than 500 recent changes in MediaWiki?

From Dev

See more and see less button

From Dev

See recent outputs of a closed terminal

From Dev

How to see full cron log (Not of just 1 day or less)?

From Dev

How can I install packages hosted in a private PyPI using setup.py?

From Dev

How can I install packages hosted in a private PyPI using setup.py?

From Dev

See more and less button

From Java

How can I see the current version of packages installed by pipenv?

From Dev

How can I see all packages that depend on a certain package with PIP?

From Dev

How do you see what packages are available for update

From Dev

How can I see the current version of packages installed by pipenv?

From Dev

How do you see what packages are available for update

From Dev

How can I see all packages that depend on a certain package with PIP?

From Dev

How to see packages installed on a given date using 'aptitude'?

From Dev

How to see all packages in a package repository? Website or command line?

From Dev

How do I see the most recent updates installed in Windows 8.1 in "installed updates"?

Related Related

  1. 1

    How to make "conda" installer look for "PyPi" packages

  2. 2

    JSON API for PyPi - how to list packages?

  3. 3

    JSON API for PyPi - how to list packages?

  4. 4

    How to list the names of PyPI packages corresponding to imports in a script?

  5. 5

    How to install PyPi packages using anaconda conda command

  6. 6

    How to include non PyPi packages for virtualenv requirements file?

  7. 7

    A guide for updating packages on PyPi

  8. 8

    List PyPI packages by popularity

  9. 9

    Transfer ownership of PyPI packages

  10. 10

    How to order packages LESS + Remote-FTP?

  11. 11

    How to order packages LESS + Remote-FTP?

  12. 12

    How to see history of snap packages updates?

  13. 13

    How to see history of snap packages updates?

  14. 14

    How can I see more than 500 recent changes in MediaWiki?

  15. 15

    See more and see less button

  16. 16

    See recent outputs of a closed terminal

  17. 17

    How to see full cron log (Not of just 1 day or less)?

  18. 18

    How can I install packages hosted in a private PyPI using setup.py?

  19. 19

    How can I install packages hosted in a private PyPI using setup.py?

  20. 20

    See more and less button

  21. 21

    How can I see the current version of packages installed by pipenv?

  22. 22

    How can I see all packages that depend on a certain package with PIP?

  23. 23

    How do you see what packages are available for update

  24. 24

    How can I see the current version of packages installed by pipenv?

  25. 25

    How do you see what packages are available for update

  26. 26

    How can I see all packages that depend on a certain package with PIP?

  27. 27

    How to see packages installed on a given date using 'aptitude'?

  28. 28

    How to see all packages in a package repository? Website or command line?

  29. 29

    How do I see the most recent updates installed in Windows 8.1 in "installed updates"?

HotTag

Archive