Re: [core-workflow] web API to get a list of all module in stdlib

2015-06-24 Thread anatoly techtonik
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

Re: [core-workflow] web API to get a list of all module in stdlib

2015-04-06 Thread francis
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 > >

Re: [core-workflow] web API to get a list of all module in stdlib

2015-04-06 Thread anatoly techtonik
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

Re: [core-workflow] web API to get a list of all module in stdlib

2015-04-03 Thread anatoly techtonik
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

[core-workflow] web API to get a list of all module in stdlib

2015-03-23 Thread anatoly techtonik
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,