On Mon, Apr 6, 2015 at 5:44 PM, francis wrote:
> On 03/23/2015 01:06 PM, anatoly techtonik wrote:
> > Hi,
> >
> > I am doing an exercise as a part of agile ux data mining
> > team, and I need to get a list of Python modules:
> >
> >
> https://stackoverflow.com/questions/6463918/how-can-i-get-a-li
Hi Anatoly,
On 03/23/2015 01:06 PM, anatoly techtonik wrote:
> Hi,
>
> I am doing an exercise as a part of agile ux data mining
> team, and I need to get a list of Python modules:
>
> https://stackoverflow.com/questions/6463918/how-can-i-get-a-list-of-all-the-python-standard-library-modules
>
>
The above library extracts module info from Sphinx objects.inv
database https://docs.python.org/2.7/objects.inv which is some
binary format and requires local parsing.
Ideally, the Sphinx should give out the open data about stdlib
structure, such as :
https://docs.python.org/2.7/dataset/1.0/module
Here is the hack that does the thing locally, not from web,
and rationale.
https://github.com/jackmaney/python-stdlib-list
Quoting here just in case there are still people who can talk with trolls:
Python Standard Library List
This package includes lists of all of the standard libraries for Pyt
Hi,
I am doing an exercise as a part of agile ux data mining
team, and I need to get a list of Python modules:
https://stackoverflow.com/questions/6463918/how-can-i-get-a-list-of-all-the-python-standard-library-modules
But this gives only the modules that were compiled into
specific interpreter,