# app.py from datetime import datetime date_str = '10-27-2020' dto = datetime.strptime(date_str, '%m-%d-%Y').date() print(type(dto)) print(dto)