def system(reply, message): """-- Retrieves information about the host system.""" # Get general system info sys_os = platform.platform() python_implementation = platform.python_implementation() python_version = platform.python_version() sys_architecture = '-'.join(platform.architecture()) sys_cpu_count = platform.machine() reply("OS: \x02{}\x02, " "Python: \x02{} {}\x02, " "Architecture: \x02{}\x02 (\x02{}\x02)".format( sys_os, python_implementation, python_version, sys_architecture, sys_cpu_count)) if psutil: process = psutil.Process(os.getpid()) # get the data we need using the Process we got cpu_usage = process.cpu_percent() thread_count = process.num_threads() memory_usage = format_bytes(process.memory_info()[0]) uptime = timedelta(seconds=round(time.time() - process.create_time())) message("Uptime: \x02{}\x02, " "Threads: \x02{}\x02, " "CPU Usage: \x02{}\x02, " "Memory Usage: \x02{}\x02".format(uptime, thread_count, cpu_usage, memory_usage))
def system(reply, message): """-- Retrieves information about the host system.""" # Get general system info sys_os = platform.platform() python_implementation = platform.python_implementation() python_version = platform.python_version() sys_architecture = '-'.join(platform.architecture()) sys_cpu_count = platform.machine() reply( "OS: \x02{}\x02, " "Python: \x02{} {}\x02, " "Architecture: \x02{}\x02 (\x02{}\x02)" .format( sys_os, python_implementation, python_version, sys_architecture, sys_cpu_count) ) if psutil: process = psutil.Process(os.getpid()) # get the data we need using the Process we got cpu_usage = process.get_cpu_percent() thread_count = process.get_num_threads() memory_usage = format_bytes(process.get_memory_info()[0]) uptime = timedelta(seconds=round(time.time() - process.create_time())) message( "Uptime: \x02{}\x02, " "Threads: \x02{}\x02, " "CPU Usage: \x02{}\x02, " "Memory Usage: \x02{}\x02" .format( uptime, thread_count, cpu_usage, memory_usage) )