mirror of
https://cdm-project.com/Decryption-Tools/TPD-Keys.git
synced 2025-04-30 00:34:24 +02:00
10 lines
230 B
Python
10 lines
230 B
Python
import os
|
|
|
|
|
|
def get_os_specific():
|
|
if os.name == 'nt': # 'nt' stands for Windows
|
|
return "Windows"
|
|
elif os.name == 'posix': # 'posix' stands for Linux/Unix
|
|
return "Linux"
|
|
else:
|
|
return "Unknown" |