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
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
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
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
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
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