2009
2007
Yolk - Trac
by pvergainYolk is a Python library and command-line tool for obtaining information about packages installed by setuptools and packages on PyPI (Python Package Index a.k.a. The Cheese Shop)
Features ¶
* List eggs or packages installed by setuptools
* Determine which packages are activated or not (--multi-version)
* Examine package metadata
* Show dependencies of packages if available
* Query PyPI for various package information using XML-RPC interface
Usage Examples ¶
yolk -n
List only the non-activated (--multi-version) packages installed
yolk -a
List only the activated packages installed (Activated packages are normal packages on sys.path you can import)
yolk -l -f License,Author
Show the license and author for each installed package
PyPI options:
yolk -H twisted
Launches your web browser at Twisted's home page
yolk -M Paste 1.0
Show all the metadata for Paste version 1.0
yolk -M Paste
Show all the metadata for each version of Paste listed on PyPi?
yolk -D cheesecake
Show all URL's for cheesecake packages you can download
svn version:
yolk -T source -D cheesecake
Show only source code releases for cheesecake
1
(2 marks)