How, in the simplest possible way, distinguish between Windows XP and Windows Vista, using Python and pywin32 or wxPython?
Essentially, I need a function that called will return True iff current OS is Vista:
>>> isWindowsVista()
True
|
4
|
|
|
|
|
|
Python has the lovely 'platform' module to help you out.
|
||
|
|
|
The solution used in Twisted, which doesn't need pywin32:
Note that it will also match Windows Server 2008. |
||
|
|
|
The simplest solution I found is this one:
|
|||
|