[09:20:41] <pombreda> Hiya :) Any better/ more polite way to get all Pypi metadata short of using either the xmlrpc or the JSON api, doing one call for each package/version?
[12:37:23] <dstufft> pombreda: no that's the only way-- and preferable use the JSON api
[12:59:48] <pombreda> dstufft: ok. I will try be very gentle then. And ensure that I couple this with xmlrpc calls to get only the new incremental parts?
[13:00:31] <dstufft> pombreda: yea, JSON API requests are more or less free for us. Typically they'll get served out of the cache and a cache hit is basically free
[13:00:57] <dstufft> If it's a cache miss then it's not free, but cache hit's never hit our own servers, they get served by Fastly and we don't even notice
[13:01:01] <pombreda> dstufft: shall spread it over pypi.python.org and pypi.io?
[13:01:06] <dstufft> XMLRPC API requests are always a cache miss
[13:01:29] <dstufft> pombreda: no need, you can just pick one and go-- pypi.python.org is more likely to have cache hit's though
[13:01:32] <pombreda> dstufft: but to get updates since a date, xmlrpc is the way, right?