Ошибка: UnknownTimezoneWarning: tzname IST определено, но не распознано - PullRequest
0 голосов
/ 28 мая 2020
Error :  UnknownTimezoneWarning: tzname IST identified but not understood.  Pass `tzinfos` argument in order to correctly return a timezone-aware datetime.  In a future version, this will raise an exception.
  category=UnknownTimezoneWarning)

Я использую datefinder для получения даты из строки.

Это пример кода:

import datefinder

a =  'Last Updated :16th July 2020 18:00 IST'
matches = list(datefinder.find_dates(a, source = True ))
print (matches)

Вывод:

UnknownTimezoneWarning: tzname IST identified but not understood.  Pass `tzinfos` argument in order to correctly return a timezone-aware datetime.  In a future version, this will raise an exception.
  category=UnknownTimezoneWarning)
[(datetime.datetime(2020, 7, 16, 18, 0), '16th July 2020 18:00 IST')]

Как я могу устранить указанную выше ошибку? (Он отлично работает при использовании UT C в строке 'a' вместо IST (индийское стандартное время))

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...