aboutsummaryrefslogtreecommitdiffstats
path: root/src/py/com.py
blob: 91b21a62b666e876882ff9318a389ef0dd002bad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import datetime

def isoptime(time):
    try:
        if time[-1] == 'Z':
            return datetime.datetime.strptime(time,'%Y-%m-%dT%H:%M:%S.%fZ') 

        else:
            return datetime.datetime.strptime(time,'%Y-%m-%dT%H:%M:%S.%f') 

    except ValueError:
        return None