Re: [python-win32] Building win32 extensions to Python

2006-06-15 Thread Paul Moore
On 6/15/06, Chris Botos <[EMAIL PROTECTED]> wrote: > 3) I downloaded and installed: > .NET Framework SDK Version 1.1 > Visual C++ 2005 Express Edition, that first installs .NET Framework 2.0 > (note that I could not get to a download for the 2003 version on > Microsoft's site and the only other

Re: [python-win32] Building win32 extensions to Python

2006-06-15 Thread chris botos
This sounds like a plan.  I'll give it a try.  Thanks, Paul. Chris   On 6/15/06, Paul Moore <[EMAIL PROTECTED]> wrote: On 6/15/06, Chris Botos <[EMAIL PROTECTED]> wrote: > 3)  I downloaded and installed:> .NET Framework SDK Version 1.1> Visual C++ 2005 Express Edition, that first installs .NET Fram

Re: [python-win32] Building win32 extensions to Python

2006-06-15 Thread James Carroll
Hi Chris, I would recommend buying Visual Studio. It's what python 2.4 is built with, and it makes compiling extensions nice and easy. My favorite examples of extending python include: - screengrabber extension for the python imaging library http://effbot.org/downloads/ 1) download and inst

[python-win32] Fwd: Building win32 extensions to Python

2006-06-15 Thread Kevin Horn
Another option might be to wrap your C code using the ctypes module ( http://starship.python.net/crew/theller/ctypes/).  This might be especially attractive if this code is mostly for demo purposes (at least for demo purposes on win32).  Ctypes basically allows you to call C code from python, but r

Re: [python-win32] Building win32 extensions to Python

2006-06-15 Thread Chris Botos
James Carroll wrote: > Hi Chris, > > I would recommend buying Visual Studio. It's what python 2.4 is built > with, and it makes compiling extensions nice and easy. > > My favorite examples of extending python include: > > - screengrabber extension for the python imaging library > http://effbot.or

[python-win32] Unit testing COM clients and Servers

2006-06-15 Thread David Primmer
I'd like to use Test Drive Development when using ADSI, WMI and other COM libraries on Windows with Python. Can anyone give some hints as to how to get started or how they do it? I'm fairly new to it and it seems like to write tests, you have to simulate the responses ADSI or WMI. I can find lo