If you need to know your computer's RAM amount, you can do that with #Python too.
One of the most convenient ways to get this information is with psutil, which can get you a lot more system info besides RAM
psutil (process and system utilities) is a cross-platform library for retrieving information on running processes and system utilization (CPU, memory, disks, network) in Python.
It is useful for system administrators, developers, and anyone else who wants to get insights into how their system is running and what resources are being utilized.
Some of the things you can do with psutil include:
Get a list of all running processes and their details (e.g. process name, PID, CPU and memory usage).
Monitor the CPU and memory usage of a process over time.
Monitor network traffic and resource usage (e.g. bytes sent and received, packets sent and received).
pypi.org/project/psutil/
#network #utilities #pythonprogramming
#python #pythondeveloper
One of the most convenient ways to get this information is with psutil, which can get you a lot more system info besides RAM
psutil (process and system utilities) is a cross-platform library for retrieving information on running processes and system utilization (CPU, memory, disks, network) in Python.
It is useful for system administrators, developers, and anyone else who wants to get insights into how their system is running and what resources are being utilized.
Some of the things you can do with psutil include:
Get a list of all running processes and their details (e.g. process name, PID, CPU and memory usage).
Monitor the CPU and memory usage of a process over time.
Monitor network traffic and resource usage (e.g. bytes sent and received, packets sent and received).
pypi.org/project/psutil/
#network #utilities #pythonprogramming
#python #pythondeveloper