Hello,
If I have an installed instance of win32 et al, is there a way
to get the version number that is installed on a box (preferably
without having to start python up - ie is it written in a text file
somewhere in the install?).
Cheers,
Neil
--
Neil Benn
Senior Automation Engi
At Wednesday 27/7/2005 05:46, Neil Benn wrote:
> If I have an installed instance of win32 et al, is there a way
>to get the version number that is installed on a box (preferably
>without having to start python up - ie is it written in a text file
>somewhere in the install?).
You could
Gabriel Genellina wrote:
> At Wednesday 27/7/2005 05:46, Neil Benn wrote:
>
>> If I have an installed instance of win32 et al, is there a way
>> to get the version number that is installed on a box (preferably
>> without having to start python up - ie is it written in a text file
>> som
I'm trying to use Python to monitor CPU usage (simple percentage) on
Windows 98.
First thoughts were to use win32pdh (code similar to
http://mail.python.org/pipermail/python-win32/2002-April/000347.html ),
but pdh.dll is not available for Windows 98.
Second thought was to use WMI. WMI isn't na
Hi,
I recently noticed that GetMessage and PeekMessage aren't wrapped in any of the win32* modules, although PostThreadMessage is. I submitted
https://sourceforge.net/tracker/index.php?func=detail&aid=1246207&group_id=78018&atid=551954 to document the problem. Does anyone know of some special
> If I have an installed instance of win32 et al, is there a way
> to get the version number that is installed on a box (preferably
> without having to start python up - ie is it written in a text file
> somewhere in the install?).
In build 205 and later, there will be a pywin32.version
As it turns out these have been added to win32gui (all except PeekMessage -
but I just added that). Let me know the version of Python you are using and
I will mail you a new win32gui.
I can't answer the MinGW question as I have never used it - but would be
happy to accept patches to setup.py to m
Hi,
I was working on a dir like function that gives more information than
the usual dir, but I am not satisfied with the way I get function
arguments for callable members of an object. Take a look at it here:
http://nerdierthanthou.nfshost.com/2005/07/mdir-for-python.html. I have
seen PythonWin s