8 lines
255 B
Python
8 lines
255 B
Python
|
import platform
|
||
|
|
||
|
IS_LIN = True if platform.system() == 'Linux' else False
|
||
|
IS_MAC = True if platform.system() == 'Darwin' else False
|
||
|
IS_WIN = True if platform.system() == 'Windows' else False
|
||
|
|
||
|
OS_ID = 'lin' if IS_LIN else 'mac' if IS_MAC else 'win'
|