Yolk是一個(gè)Python工具,用于獲取有關(guān)已安裝的Python包的信息,并查詢可用于PyPI(Python包索引)的包。 yolk3k是原來yolk的分支。 yolk3k添加Python 3支持(同時(shí)維護(hù)Python 2支持)。 它還增加了附加功能。
官方主頁 https://github.com/myint/yolk
首先是安裝時(shí)的可用版本查詢
yolk -V ipython
yolk -V django
基本使用
$ yolk --upgrade
Upgrade all packages
$ yolk --upgrade --user
Upgrade user packages
$ yolk -l
List all installed Python packages
$ yolk -a
List only the activated packages installed (Activated packages are
normal packages on sys.path you can import)
$ yolk -n
List only the non-activated (--multi-version) packages installed
$ yolk -l -f License,Author nose==1.0
Show the license and author for version 1.0 of the package `nose`
$ yolk --entry-map nose
Show entry map for the nose package
$ yolk --entry-points nose.plugins
Show all setuptools entry points for nose.plugins
查詢PyPI時(shí)的一些選項(xiàng)
$ yolk -U pkg_name
Shows if an update for pkg_name is available by querying PyPI
$ yolk -U
Checks PyPI to see if any installed Python packages have updates
available.
$ yolk -F Paste
Download source tarball for latest version of Paste to your current
directory
$ yolk -F Paste -T svn
Do a subversion checkout for Paste to a directory named Paste_svn in
your current directory.
$ yolk -L 2
Show list of CheeseShop releases in the last two hours
$ yolk -C 2
Show detailed list of changes in the CheeseShop in the last two hours
$ yolk -M Paste==1.0
Show all the metadata for Paste version 1.0
$ yolk -M Paste
Show all the metadata for the latest version of Paste listed on PyPI
$ yolk -D cheesecake
Show all (source, egg, svn) URL's for the latest version of cheesecake
packages
$ yolk -T source -D cheesecake
Show only source code releases for cheesecake
$ yolk -H twisted
Launches your web browser at Twisted's home page