Minor changes

This commit is contained in:
Loïc Guégan 2023-10-25 12:12:58 +02:00
parent aa367050c8
commit cfc1be0333

View file

@ -1,7 +1,25 @@
import platform
from typing import NamedTuple
class SystemInformations(NamedTuple):
"""System Informations Data Structure"""
hostname: str
arch: str
os: str
release: str
def sysinfos_create():
global SYSINFOS
uname = platform.uname()
SYSINFOS=SystemInformations(
uname.node,
uname.machine,
uname.system,
uname.release
)
print(SYSINFOS)
def main():
print("it works!")
print("It works!")
sysinfos_create()