What do I need to look at to see whether I\'m on Windows or Unix, etc?
For the record here's the results on Mac:
>>> import os >>> os.name 'posix' >>> import platform >>> platform.system() 'Darwin' >>> platform.release() '8.11.1'