Source code for tcutility.environment
import os
from enum import Enum, auto
[docs]
class OSName(Enum):
"""
An enumeration of the different operating systems.
"""
WINDOWS = auto()
LINUX = auto()
MACOS = auto()
[docs]
def get_os_name() -> OSName:
"""
Get the name of the operating system. Returns a value from the :class:`OSName <tcutility.environment.OSName>` enumeration.
"""
os_name = os.name
if os_name == "nt":
return OSName.WINDOWS
elif os_name == "posix":
return OSName.LINUX
elif os_name == "mac":
return OSName.MACOS
else:
raise ValueError(f"Unknown operating system: {os_name}")