Re: "Impure" Python modules

2007-12-28 Thread kyosohma
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

Re: "Impure" Python modules

2007-12-28 Thread Mike Driscoll
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

Re: "Impure" Python modules

2007-12-27 Thread Martin v. Löwis
> 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

Re: "Impure" Python modules

2007-12-27 Thread James Matthews
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