On Dec 27, 5:38 pm, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote:
> > Is there some way to get a list of "impure" Python modules/extensions
> > from PyPI?
>
> Not easily. To create a full list, you will have to download all
> packages, and check their respective setup.py files for occurrences
> of E
James,
In Python extension parlance, it means that the extension was not
written completely in Python. Example include the mySQL module,
wxPython, and one of the openGL modules. All of those have some C/C++
dependencies. I think numpy does too, now that I think about it.
Anyway, I hope that answe
> Is there some way to get a list of "impure" Python modules/extensions
> from PyPI?
Not easily. To create a full list, you will have to download all
packages, and check their respective setup.py files for occurrences
of Extension.
A subset can probably be found by looking at all packages classif
I don't quite understand what the word "impure" means here!
On Dec 27, 2007 10:53 PM, <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Is there some way to get a list of "impure" Python modules/extensions
> from PyPI? I know the mySQL module is a good example, but I am
> working on creating some decent inst