How would I convert the string 2014-05-19 to a datetime object in Python if I'm reading it from a csv file? Currently when I specify dtype=None, it reads in 2014-05-19 as a string, not a datetime.
import numpy as np
import datetime
np.genfromtxt(inputFile, dtype=None,delimiter=' ')
File
2014-05-19 10
2014-05-20 11
2014-05-21 12
2014-05-22 13.29
2014-05-23 12.1
where the number after the string is a value associated with the date but not included in the datetime object
dataPoints = np.loadtxt(inputFile, dtype=None,delimiter=' ', converters = {0: datetime.datetime.strptime('%Y-%m-%d')})
I receive the following message: TypeError: strptime() takes exactly 2 arguments (1 given)
how do I specify the format without actually stripping the string?