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.
import psutil p = psutil.Process(7055) >>> p.create_time 1267551141.5019531
この時刻と今日の時刻 (current_time = datetime.datetime.today) の差分を分単位で見つけることができるように、この時刻を datetime オブジェクトに変換する方法は?
それを取得するために日時は必要ありません。 time.timeエポックからの秒数で表される現在の時刻を提供します。それを 60 で割り、経過分を取得します。
time.time
>>> import time >>> (time.time() - psutil.Process(1).create_time) / 60 20957.253114116193