May be I'm to blind or narrow minded to find a smart solution, but I'd like to extract the time of an numpy.datetime64 object and can't find an obvious solution.
Of course I can do this:
import numpy as np
a = np.datetime64('2015-03-23T22:58')
print(a.tolist().time())
But that still leaves me with handling timezone problems.
Additionally it just doesn't make sense to me to use numpy.datetime64 just to convert it to datetime and use these methods. Or is numpy.datetime64 lacking some major features/I'm not use it as intended and should better fall back to datetime.datetime?