What do I need to look at to see whether I\'m on Windows or Unix, etc?
in the same vein....
import platform is_windows=(platform.system().lower().find("win") > -1) if(is_windows): lv_dll=LV_dll("my_so_dll.dll") else: lv_dll=LV_dll("./my_so_dll.so")