yolk
yolk copied to clipboard
Command-line tool for querying PyPI and Python packages installed on your system.
Simply after I enter yolk -U into the command line, it stay quite for a while and then an error is raised, showing: ```bash $ yolk -U ``` ```text Checking...
because you need to send show_hidden=True as per https://warehouse.pypa.io/api-reference/xml-rpc/
Traceback (most recent call last): File "C:\Users\fpatel\AppData\Local\Programs\Python\Python36\Scripts\yolk-script.py", line 11, in load_entry_point('yolk==0.4.3', 'console_scripts', 'yolk')() File "c:\users\fpatel\appdata\local\programs\python\python36\lib\site-packages\pkg_resources\__init__.py", line 480, in load_entry_point return get_distribution(dist).load_entry_point(group, name) File "c:\users\fpatel\appdata\local\programs\python\python36\lib\site-packages\pkg_resources\__init__.py", line 2693, in load_entry_point return ep.load()...
Everytime yolk doesn't know a package it asks PyPI for the whole package list even if that list has been freshly fetched. This patch ensures that the cache is fetched...
How can i fix it? ``` # yolk -V py2deb Traceback (most recent call last): File "/usr/local/bin/yolk", line 7, in from yolk.cli import main File "/usr/local/lib/python3.4/dist-packages/yolk/cli.py", line 262 print "...
yolk -U kontocheck dies with: urllib2.HTTPError: HTTP Error 403: Must access using HTTPS instead of HTTP I am using yolk version 0.4.3
Thanks for the 0.4.3 update. Any chance you could build in 2to3 to the setup so that it works on both python 2.x and 3.x?
PyPi now requires HTTPS after CVE-2016-5699. http://blog.blindspotsecurity.com/2016/06/advisory-http-header-injection-in.html This patch fixes this error on Fedora. $ yolk --version Traceback (most recent call last): File "/usr/bin/yolk", line 9, in load_entry_point('yolk==0.4.3', 'console_scripts', 'yolk')()...
ATM if you try to invoke yolk with the launcher: `py -2 -m yolk numpy ` you will get: `C:\Python27\python.exe: No module named yolk.__main__; 'yolk' is a package and cannot...
It works perfectly: ``` py -2 yolk -V django Django 1.9.6 Django 1.9.5 Django 1.9.4 Django 1.9.3 Django 1.9.2 Django 1.9.1 Django 1.9 Django 1.9rc2 Django 1.9rc1 ... ```