What do I need to look at to see whether I\'m on Windows or Unix, etc?
Watch out if you're on Windows with Cygwin where os.name is posix.
os.name
posix
>>> import os, platform >>> print os.name posix >>> print platform.system() CYGWIN_NT-6.3-WOW