Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなLinuxシステムを監視するための有名なpythonプラグイン/ライブラリはありますか?
ありますか?
どうもありがとうございました:D
この単純なアプリケーションを Python で作成しました。これを実行するためにインストールする必要があるのは、「acpi」という名前のパッケージだけです。リフレッシュ レートを好みに合わせて変更します。
import os import time refreshrate = 10 while(1): os.system("clear") print(os.system("acpi -V")) time.sleep(refreshrate)