Start by
from dateutil.parser import *
lets have fun, after the import, we should have the parser imported
parse("monday")
You should get the date of next monday as python datetime.datetime object.
parse('14th of april')
parse('14th of april 3pm')
you should get a datetime.datetime object of the date,
For python programmer, check it out, it is pretty useful.
http://labix.org/python-dateutil
from dateutil.parser import *
lets have fun, after the import, we should have the parser imported
parse("monday")
You should get the date of next monday as python datetime.datetime object.
parse('14th of april')
parse('14th of april 3pm')
you should get a datetime.datetime object of the date,
For python programmer, check it out, it is pretty useful.
http://labix.org/python-dateutil
No comments:
Post a Comment