You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As esengine uses dateutils.parser it can handle date parsing on attribution.
only when _strict == False
classDoc(Document):
date=DateField()
doc=Doc()
doc.date="2010-01-01"doc.date="2010-01-01 15:30:22"doc.date="15/03/2010"# should all be parsed to datetime.datetime(2010, 01, 01)isinstance(doc.date, datetime)
True
The text was updated successfully, but these errors were encountered:
As esengine uses dateutils.parser it can handle date parsing on attribution.
The text was updated successfully, but these errors were encountered: