2020-06-04 14:28:45 -03:00
|
|
|
#Developer: Curly60e
|
|
|
|
|
#PyBLOCK its a clock of the Bitcoin blockchain.
|
2020-07-25 10:52:44 -03:00
|
|
|
|
2022-03-12 10:26:00 -03:00
|
|
|
import os
|
2020-05-25 19:35:24 -03:00
|
|
|
import psutil
|
2022-03-12 10:26:00 -03:00
|
|
|
import time as t
|
|
|
|
|
from pblogo import *
|
|
|
|
|
|
2020-05-25 19:35:24 -03:00
|
|
|
|
2022-03-12 10:26:00 -03:00
|
|
|
def clear(): # clear the screen
|
|
|
|
|
os.system('cls' if os.name=='nt' else 'clear')
|
2020-05-25 19:35:24 -03:00
|
|
|
|
2020-06-25 18:01:50 -03:00
|
|
|
def sysinfoDetail(): #Cpu and memory usage
|
2020-12-06 22:28:13 -03:00
|
|
|
# gives a single float value
|
2022-03-12 10:26:00 -03:00
|
|
|
while True:
|
|
|
|
|
try:
|
|
|
|
|
clear()
|
|
|
|
|
blogo()
|
|
|
|
|
print(" \033[0;37;40m----------------------------")
|
|
|
|
|
print(" \033[3;33;40mCPU Usage: \033[1;32;40m" + str(psutil.cpu_percent()) + "\033[0;37;40m%")
|
|
|
|
|
print(" \033[3;33;40mMemory Usage: \033[1;32;40m" "{}\033[0;37;40m%".format(int(psutil.virtual_memory().percent)))
|
|
|
|
|
print(" \033[3;33;40mMemory Available: \033[1;32;40m" "{} \033[0;37;40mMB".format(int(psutil.virtual_memory().available / 1024 / 1024)))
|
|
|
|
|
print(" \033[3;33;40mDisk Usage: \033[1;32;40m" "{}%\033[0;37;40m%".format(psutil.disk_usage('/').percent))
|
|
|
|
|
print(" \033[0;37;40m----------------------------")
|
|
|
|
|
t.sleep(1)
|
|
|
|
|
except:
|
|
|
|
|
break
|