I\'ve got 2 questions:
Think the issue is with the locale used. Also, check your formatting.
import locale
locale.setlocale(locale.LC_ALL,'es_ES.UTF-8')
from datetime import datetime as dt
datetime_object = dt.strptime('20100812', '%Y%m%d')
datetime_object
Output:
datetime.datetime(2010, 8, 12, 0, 0)
Let me know if this solves your problem.
Tried few more examples.
# read a spanish datetime format
datetime_object = dt.strptime('martes 12 julio 2016', '%A %d %B %Y')
print(datetime_object.strftime("%B"))
print(datetime_object)
# Change the locale to swede and print the month
locale.setlocale(locale.LC_TIME, "sv_SE")
print(datetime_object.strftime("%B"))
Output:
julio
2016-07-12 00:00:00
Juli
Edited to incorporate the specific details you wanted:
import locale
locale.setlocale(locale.LC_ALL,'es_ES.UTF-8')
from datetime import datetime as dt
datetime_object = dt.strptime('ago122010', '%b%d%Y')
locale.setlocale(locale.LC_ALL,'en_US.UTF-8')
print(datetime_object.strftime("%Y-%m-%d"))
Output
2010-08-12