def parse_datetime(s): if not s: return s if ciso8601: return ciso8601.parse_datetime(s) return dateparse.parse_datetime(s)