Spaces:
Sleeping
Sleeping
File size: 171 Bytes
4d9c047 | 1 2 3 4 5 6 7 | class Process: ...
class _Psutil:
def __init__(self, *a, **k): ...
def cpu_percent(self, *a, **k): return 0.0
def virtual_memory(self): ...
psutil = _Psutil()
|