mirror of
https://github.com/KevinMidboe/Node-Com-Handler.git
synced 2025-10-29 09:40:27 +00:00
41 lines
1.0 KiB
Python
Executable File
41 lines
1.0 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# @Author: KevinMidboe
|
|
# @Date: 2017-01-27 19:48:42
|
|
# @Last Modified by: KevinMidboe
|
|
# @Last Modified time: 2017-02-18 11:49:30
|
|
|
|
# TODO add better error handling to return statements
|
|
|
|
from psutil import boot_time
|
|
from time import time
|
|
|
|
def secToDay(seconds):
|
|
days = int(seconds/86400)
|
|
if days is 1:
|
|
return str(days)+' day'
|
|
return str(days)+' days'
|
|
|
|
def secToHour(seconds):
|
|
hours = (seconds)//3600
|
|
minutes = (seconds - hours*3600)//60
|
|
hourMinutes = '%02d' % hours +':'+ '%02d' % minutes
|
|
return hourMinutes
|
|
|
|
def timeSinceBoot():
|
|
bootTime = boot_time() # Use psutil 'boot_time' to get seconds since start
|
|
currTime = time() # Use 'time()' to get seconds currently
|
|
deltaSeconds = int(currTime-bootTime)
|
|
|
|
if deltaSeconds >= 86400: # Return in day format
|
|
uptime = secToDay(deltaSeconds)
|
|
|
|
elif deltaSeconds < 86400 and deltaSeconds >= 0:
|
|
uptime = secToHour(deltaSeconds)
|
|
else:
|
|
return {"errors": "Uptime not found"}
|
|
|
|
return {"uptime": uptime}
|
|
|
|
if __name__=="__main__":
|
|
print(timeSinceBoot()) |