We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
When the date uses the full month name (i.e. "June"):
# works correctly >>> parse('1 ביוני 2014') datetime.datetime(2014, 6, 1, 0, 0)
But when using a shortened month name (i.e. "Aug."):
>>> parse('31 באוג׳ 2014') is None True