in ssiog/util.py [0:0]
def get_ram_info():
"""
This method gets the RAM information of the system and returns it as a dictionary.
"""
mem_info = psutil.virtual_memory()
ram_info = {}
ram_info['total'] = f"{mem_info.total / (1024 ** 2)} MB"
ram_info['used'] = f"{mem_info.used / (1024 ** 2)} MB"
ram_info['free'] = f"{mem_info.available / (1024 ** 2)} MB"
return ram_info