mirror of
https://github.com/yavook/kiwi-simple-metrics.git
synced 2024-11-22 07:33:00 +00:00
9 lines
118 B
Python
9 lines
118 B
Python
import psutil
|
|
|
|
|
|
def main() -> None:
|
|
print(psutil.cpu_percent(interval=1))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|