System Information Using Python Platform Module
Published on October 28 2021
In this tutorial, you will see how to get the system information using the Python Platform module. We will read the operating system name, host name, release number, system’s version, hardware-type and processor details.
Source code
import platform
# Method 1 - using individual methods
print('=========using individual methods========')
print('Operating System : ', platform.system())
print('Hostname : ', platform.node())
print("Machine : ", platform.machine())
print("Processor : ", platform.processor())
print("Release : ", platform.release())
print("Version : ", platform.version())
# Method 2 - using uname method
system_data = platform.uname()
print('=========using uname method========')
print('Operating System : ', system_data.system)
print('Hostname : ', system_data.node)
print("Machine : ", system_data.machine)
print("Processor : ", system_data.processor)
print("Release : ", system_data.release)
print("Version : ", system_data.version)
Video
Next Tutorial
- Clipboard Copy In Python
- Python Program To Get Ip, Hostname, Fqdn And Active Interface
- System Information Using Python Platform Module