get_memory_usage

ssapy.io.get_memory_usage()[source][source]

Print the memory usage of the current process.

This function retrieves the memory usage of the current Python process using the psutil library and prints it in gigabytes (GB). The memory usage is calculated based on the resident set size (RSS), which represents the portion of memory occupied by the process in RAM.

Parameters:

None

Returns:

The function does not return a value. It prints the memory usage directly.

Return type:

None