forked from hoersuppe/hoerapi.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.py
30 lines (25 loc) · 747 Bytes
/
util.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
from datetime import datetime
from iso8601 import parse_date as parse_isodate
from pytz import timezone
''' zones for times returned by API '''
timezone = {
'default': timezone('Europe/Berlin'),
'gmt': timezone('GMT')
}
def parse_date(val, zone='default'):
val = parse_isodate(val, None)
''' date has no ISO zone information '''
if not val.tzinfo:
val = timezone[zone].localize(val)
return val
def parse_bool(str):
if str == "1":
return True
else:
return False
class CommonEqualityMixin(object):
def __eq__(self, other):
return (isinstance(other, self.__class__)
and self.__dict__ == other.__dict__)
def __ne__(self, other):
return not self.__eq__(other)