Trying to use dateutil to parse dates from an unknown format but none of the documented methods are found?
CODE:
import dateutil
print(dateutil.parser.parse("24.05.2017"))
exit(1)
ERROR:
Traceback (most recent call last):
File "test.py", line 2, in <module>
print(dateutil.parser.parse("24.05.2017"))
AttributeError: module 'dateutil' has no attribute 'parser'