"""Info to determine info about Operation Systems.Copyright 2021, Bill & Melinda Gates Foundation. All rights reserved."""importplatformimportgetpass
[docs]classLocalOS:""" A Central class for representing values whose proper access methods may differ between platforms. """
[docs]classUnknownOS(Exception):""" Unknown os detected. """pass
os_mapping={'windows':'win','linux':'lin','darwin':'mac'}_os=platform.system().lower()if_osnotinos_mapping:raiseUnknownOS("Operating system %s is not currently supported."%_os)username=getpass.getuser()name=os_mapping[_os]
[docs]@staticmethoddefis_window()->bool:""" Are we running on a windows system? Returns: True if on windows """returnLocalOS.name=='win'