-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcurtime.py
61 lines (46 loc) · 1.45 KB
/
curtime.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import time
from datetime import datetime, timedelta
start_time = time.time()
def uptime():
sec = time.time() - start_time
sec = str(sec).split(".")
sec = timedelta(seconds=int(sec[0]))
d = datetime(1, 1, 1) + sec
# Puts "0" in front of number time
if d.day - 1 < 10:
up_day = "0{}".format(d.day - 1)
else:
up_day = d.day - 1
if d.hour < 10:
up_hour = "0{}".format(d.hour)
else:
up_hour = d.hour
if d.minute < 10:
up_minute = "0{}".format(d.minute)
else:
up_minute = d.minute
if d.second < 10:
up_second = "0{}".format(d.second)
else:
up_second = d.second
return "{}:{}:{}:{} (Days:Hours:Minutes:Seconds)".format(up_day, up_hour, up_minute, up_second)
def get_time():
# Decides if startup is during AM or PM ours (yea damn 'murica time)
if datetime.now().hour > 13:
cur_hour = datetime.now().hour - 12
am_or_pm = "PM"
else:
cur_hour = datetime.now().hour
am_or_pm = "AM"
# Puts "0" in front of number time
if datetime.now().minute < 10:
cur_min = "0{}".format(datetime.now().minute)
else:
cur_min = datetime.now().minute
if datetime.now().second < 10:
cur_sec = "0{}".format(datetime.now().second)
else:
cur_sec = datetime.now().second
return "{0}:{1}:{2} {3}".format(cur_hour, cur_min, cur_sec, am_or_pm)