From 769698b95bbb80887df0c44a2815a5ee61760a26 Mon Sep 17 00:00:00 2001 From: Boves556 <148862792+Boves556@users.noreply.github.com> Date: Mon, 1 Jan 2024 16:09:55 +0100 Subject: [PATCH] Update Automation_0.2.md --- Automation_0.2.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Automation_0.2.md b/Automation_0.2.md index 8b13789..70e098c 100644 --- a/Automation_0.2.md +++ b/Automation_0.2.md @@ -1 +1,13 @@ +# Jan 1: Week_2: Explanation of the script: +This blog will include the explanation of my automation script. Its important you read it as it will give you a full understanding of the script and would help you modify it to suit your needs. +I will explain the script in groups or lines to ease understanding. So, let's go through the code line by line: + +``` +import psutil +import speedtest +import time +``` +These lines import the necessary libraries needed to ensure the code runs properly. + +The **psutil** library provides an interface to retrieve system utilization information, like CPU, memory, disk, and network usage. It makes the process of monitoring and interacting with system resources easier and it also offers functions to gather real-time data on processes and system performance. You can access vital information about a system's state, enable efficient resource management and automate system-related tasks with psutil.