Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
I have date as
'Apr, 2012'
I want to convert it to the "mx datetime" object.
Can anyone tell me how to convert the same?
datetime
strptime
datetime.datetime.strptime
You can use dateutil.parser to parse dates to python datetime objects:
from dateutil.parser import parse from mx.DateTime import DateFrom date = DateFrom(parse('Apr, 2012'))
Add a comment
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
datetimemodule.strptimefunction works the same as the python stdlib'sdatetime.datetime.strptimefunction, so this should be a very straight forward operation.