Open 0xDEADFED5 opened 1 year ago
Thank you for reporting this issue. It seems that if there is +03
this is the reason why the dateparser returns None.
In [8]: dateparser.parse('Thu, 19 Jan 2023 10:45:00')
Out[8]: datetime.datetime(2023, 1, 19, 10, 45)
strange result if 'Thu, ' is removed from the start:
dateparser.parse('19 Jan 2023 10:45:00 +03')
datetime.datetime(2023, 1, 3, 10, 45)
dateparser.parse('Thu, 19 Jan 2023 10:45:00 +03') = None