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

Re: "Impure" Python modules

2007-12-28 Thread Mike Driscoll
answers your question. Mike On Dec 27, 2007 4:47 PM, James Matthews <[EMAIL PROTECTED]> wrote: > 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 w

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

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,

"Impure" Python modules

2007-12-27 Thread kyosohma
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 instructions on how to create Windows installers from impure modules and am having a hard time finding them. Tha