本文整理汇总了Python中dateparser.languages.detection.ExactLanguages.parse方法的典型用法代码示例。如果您正苦于以下问题:Python ExactLanguages.parse方法的具体用法?Python ExactLanguages.parse怎么用?Python ExactLanguages.parse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dateparser.languages.detection.ExactLanguages
的用法示例。
在下文中一共展示了ExactLanguages.parse方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_parse_date_in_exact_language
# 需要导入模块: from dateparser.languages.detection import ExactLanguages [as 别名]
# 或者: from dateparser.languages.detection.ExactLanguages import parse [as 别名]
def test_parse_date_in_exact_language(self):
date_fixtures = [
(u'13 Ago, 2014', datetime(2014, 8, 13)),
(u'13 Septiembre, 2014', datetime(2014, 9, 13)),
(u'13/03/2014', datetime(2014, 3, 13)),
# TODO: make the following test pass
# in this case, it should have detected spanish as the
# language, and so it should use d/m/Y instead of d/m/Y
# (u'11/03/2014', datetime(2014, 3, 11)),
]
spanish = LanguageDataLoader().get_language('es')
parser = ExactLanguages([spanish])
for date_string, correct_date in date_fixtures:
parsed_date = parser.parse(date_string, None)
self.assertEqual(correct_date.date(), parsed_date.date())
with self.assertRaisesRegexp(ValueError, 'Invalid date'):
portuguese_date = u'13 Setembro, 2014'
parser.parse(portuguese_date, None)