pip list shows "name meta info of the package" which is of no use

i just learned decorators and i'm in a verge of asking why no decorators for objects thanks for helping me understand the concept of decorators. it was very helpful. suppose let us say we installed pyjnius using pip. when i'm trying to import pyjnius it shows
import pyjnius `ImportError:` No module named pyjnius
pip list does shows that pyjnius but there is no info about how it should be imported. i think we should be adding that functionality so that we dont have to google around to know in which way should be imported. pip freeze shows the version not. pip show : shows the meta info of every thing except the pymodule's thing let us say if pip list shows info like pip list <name> (<version>) <importname(module/package> then it should be very helpful for coders i also think of pip moduletree which will shows the package structure of the package.(like pstree in unix shell) but noone was interested . i anyone was interested. i want to do it and submit

pip is actually developed as a separate project from python itself -- if you're interested in improving pip then your best bet is to get in touch with them through their mailing list or their bug tracker. On Aug 21, 2015 00:53, "shiva prasanth" <kesavarapu.siva@gmail.com> wrote:

On Fri, Aug 21, 2015 at 5:37 AM, Nathaniel Smith <njs@pobox.com> wrote:
So, most minimally, what could be added to pip list would be a flag to retrieve/read package metadata? * https://pypi.python.org/pypi/pip/json * PEP 426: pydist.json * wheel: metadata.json And then the usage information I would expect to be in * the ``long_description`` field #[ in package JSON ] * the ``packages`` and/or ``namespace_packages`` fields #[ NOT in the package JSON, AFAICT ] (sometimes as determined by find_packages() https://pythonhosted.org/setuptools/setuptools.html#using-find-packages ) * Src: https://github.com/pypa/pip * https://github.com/pypa/pip/issues * Src: https://github.com/pypa/pip/blob/develop/pip/commands/list.py#L19

On Aug 21, 2015, at 12:48, Wes Turner <wes.turner@gmail.com> wrote:
Most minimally, what could be done is to post this on the appropriate mailing list instead of the wrong one, as explained by the very message you just replied to.

On Fri, Aug 21, 2015 at 3:04 PM, Andrew Barnert <abarnert@yahoo.com> wrote:
This is a general gap in Python packaging (CLI) tools. This is also contextually relevant to "[Distutils] PEP for dependencies on libraries like BLAS (was: Re: Working toward Linux wheel support)" https://mail.python.org/pipermail/distutils-sig/2015-August/026711.html , which would add metadata that could also be helpfully displayed here. The appropriate mailing lists are: * distutils-sig@python.org -- https://mail.python.org/mailman/listinfo/distutils-sig * https://github.com/pypa/pip/issues * http://groups.google.com/group/pypa-dev * python-ideas

pip is actually developed as a separate project from python itself -- if you're interested in improving pip then your best bet is to get in touch with them through their mailing list or their bug tracker. On Aug 21, 2015 00:53, "shiva prasanth" <kesavarapu.siva@gmail.com> wrote:

On Fri, Aug 21, 2015 at 5:37 AM, Nathaniel Smith <njs@pobox.com> wrote:
So, most minimally, what could be added to pip list would be a flag to retrieve/read package metadata? * https://pypi.python.org/pypi/pip/json * PEP 426: pydist.json * wheel: metadata.json And then the usage information I would expect to be in * the ``long_description`` field #[ in package JSON ] * the ``packages`` and/or ``namespace_packages`` fields #[ NOT in the package JSON, AFAICT ] (sometimes as determined by find_packages() https://pythonhosted.org/setuptools/setuptools.html#using-find-packages ) * Src: https://github.com/pypa/pip * https://github.com/pypa/pip/issues * Src: https://github.com/pypa/pip/blob/develop/pip/commands/list.py#L19

On Aug 21, 2015, at 12:48, Wes Turner <wes.turner@gmail.com> wrote:
Most minimally, what could be done is to post this on the appropriate mailing list instead of the wrong one, as explained by the very message you just replied to.

On Fri, Aug 21, 2015 at 3:04 PM, Andrew Barnert <abarnert@yahoo.com> wrote:
This is a general gap in Python packaging (CLI) tools. This is also contextually relevant to "[Distutils] PEP for dependencies on libraries like BLAS (was: Re: Working toward Linux wheel support)" https://mail.python.org/pipermail/distutils-sig/2015-August/026711.html , which would add metadata that could also be helpfully displayed here. The appropriate mailing lists are: * distutils-sig@python.org -- https://mail.python.org/mailman/listinfo/distutils-sig * https://github.com/pypa/pip/issues * http://groups.google.com/group/pypa-dev * python-ideas
participants (4)
-
Andrew Barnert
-
Nathaniel Smith
-
shiva prasanth
-
Wes Turner