show/hide this revision's text 3 deleted 106 characters in body

If you do use easy_install, I'd suggest installing packages by doing..

easy_install -v -Z package_name  |  tee date-package.log

-Z (short for --always-unzip) unzips the .egg files to directories so you can then..

less *.egg/EGG-INFO/requires.txt  
less *.egg/EGG-INFO/PKG-INFO  
egrep '^(Name|Version|Sum|...)'  *.egg/EGG-INFO/PKG-INFO

On Sammy's "like to search Python modules as easy as CPAN"original question, I want to be able to list PKG-INFO and requires uniformly
for packages on my machine / on Pypi / on a pypimirror. Today there's yolk, pypi xmlrpc, 40+ packages having to do with eggs (standing on each others' toes, not shoulders). While I'm wishing, intelligent reviews couple of packages would speed up package evolution -- stackoverflow tags Python, package indexes other than PyPI are:
Scipy and review ?Scipy docs for scientific computing
ohloh with code metrics.

show/hide this revision's text 2 Cleared up the easy_install -Z explaiantion

If you do use easy_install, I'd suggest installing packages by doing..

easy_install -v -Z package  package_name  |  tee date-package.log
;

-Z, Z (short for --always-unzip, -always-unzip) unzips eggs the .egg files to Linux directories so you can thenthen..

less *.egg/EGG-INFO/requires.txt  
less *.egg/EGG-INFO/PKG-INFO  
egrep '^(Name|Version|Sum|...)'  *.egg/EGG-INFO/PKG-INFO

On Sammy's "like to search Python modules as easy as CPAN", I want to be able to list PKG-INFO and requires uniformly
for packages on my machine / on Pypi / on a pypimirror. Today there's yolk, pypi xmlrpc, 40+ packages having to do with eggs (standing on each others' toes, not shoulders). While I'm wishing, intelligent reviews of packages would speed up package evolution -- stackoverflow tags Python, package and review ?

show/hide this revision's text 1

If you do use easy_install, I'd suggest easy_install -v -Z package | tee date-package.log;
-Z, short for --always-unzip, unzips eggs to Linux directories so you can then

less *.egg/EGG-INFO/requires.txt  
less *.egg/EGG-INFO/PKG-INFO  
egrep '^(Name|Version|Sum|...)'  *.egg/EGG-INFO/PKG-INFO

On Sammy's "like to search Python modules as easy as CPAN", I want to be able to list PKG-INFO and requires uniformly
for packages on my machine / on Pypi / on a pypimirror. Today there's yolk, pypi xmlrpc, 40+ packages having to do with eggs (standing on each others' toes, not shoulders). While I'm wishing, intelligent reviews of packages would speed up package evolution -- stackoverflow tags Python, package and review ?