RosettaCodeData/Task/Host-introspection/Python/host-introspection.py

15 lines
244 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
>>> import platform, sys, socket
>>> platform.architecture()
('64bit', 'ELF')
>>> platform.machine()
'x86_64'
>>> platform.node()
'yourhostname'
>>> platform.system()
'Linux'
>>> sys.byteorder
little
>>> socket.gethostname()
'yourhostname'
>>>