-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdatetime_utils.py
48 lines (35 loc) · 1.35 KB
/
datetime_utils.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
import pytz
from datetime import datetime, timedelta
format_date = "%Y-%m-%d"
format_datetime = '%Y-%m-%dT%H:%M:%S.%fZ'
class DatetimeUtils:
def convert_datetime_to_epoch(str_date):
str_to_dt = datetime.strptime(str_date, format_date)
t = str_to_dt.timestamp()
return int(t)
def convert_epoch_to_datetime(int_epoch_date):
ts = datetime.fromtimestamp(int_epoch_date)
return ts.strftime(format_date)
def convert_to_utc(datetime_str):
"""Convert datetime string with timezone offset to UTC."""
dt = datetime.strptime(datetime_str, "%Y-%m-%dT%H:%M:%S.%f%z")
return dt.astimezone(pytz.UTC)
def start_date(num_days, end_date=''):
""" given num_days, calculate a start_date
given an end_date (default: now), calculate a start date num_days
number of days in the past.
If num_days is empty, return a blank start date."""
if num_days:
n = int(num_days)
else:
return ''
if not end_date:
end_date = datetime.now()
else:
end_date = datetime.strptime(end_date, format_date)
d = end_date - timedelta(days=n)
return d.strftime(format_date)
def parse_iso_timestamp(ts):
if ts:
return datetime.fromisoformat(ts.replace("Z", "+00:00"))
return None