I have been trying to convert some CSV file text date time information into datetime values. The following code works without a hitch, but is simply taking a list of string values.
import datetime
aaa = ['01/04/2012 00:00', '01/01/2013 00:00', '00:30:00', '', '', '', '', '', '']
DTstart = aaa[0]
DTstop = aaa[1]
DTstep = aaa[2]
print(DTstart)
DTb = datetime.datetime.strptime(DTstart,"%d/%m/%Y %H:%M")
print(DTb)
However, when I try and read the data from the actual CSV file the same code (given below) does not work and give the error "ImportError: Failed to import _strptime because the import lockis held by another thread." at the line containing strptime. I have seen this raised as an issue for threaded programs but I am not explicitly using threading. Any suggestions, work-arounds or fixes anyone knows of?
import datetime
fin = open('ProcParam.csv')
aline = fin.readline()
aline = fin.readline()
aaa = aline.strip().split(',')
DTstart = aaa[0]
DTstop = aaa[1]
DTstep = aaa[2]
print(DTstart)
DTb = datetime.datetime.strptime(DTstart,"%d/%m/%Y %H:%M")
print(DTb)
fin.close()