mirror of
https://github.com/ThunixdotNet/thunix_api.git
synced 2026-06-14 22:30:18 +00:00
9 lines
244 B
Python
9 lines
244 B
Python
from flask_restful import Resource, abort
|
|
import psutil
|
|
|
|
class Memory(Resource):
|
|
def get(self):
|
|
vmem_usage = psutil.virtual_memory()
|
|
smem_usage = psutil.swap_memory()
|
|
abort(501, message="Not currently implemented.")
|