mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-10 20:37:59 +09:00
[utils] Add more date formats
This commit is contained in:
parent
ed06da4e7b
commit
cb655f34fb
@ -295,6 +295,9 @@ class TestUtil(unittest.TestCase):
|
|||||||
self.assertEqual(unified_strdate('27.02.2016 17:30'), '20160227')
|
self.assertEqual(unified_strdate('27.02.2016 17:30'), '20160227')
|
||||||
self.assertEqual(unified_strdate('UNKNOWN DATE FORMAT'), None)
|
self.assertEqual(unified_strdate('UNKNOWN DATE FORMAT'), None)
|
||||||
self.assertEqual(unified_strdate('Feb 7, 2016 at 6:35 pm'), '20160207')
|
self.assertEqual(unified_strdate('Feb 7, 2016 at 6:35 pm'), '20160207')
|
||||||
|
self.assertEqual(unified_strdate('July 15th, 2013'), '20130715')
|
||||||
|
self.assertEqual(unified_strdate('September 1st, 2013'), '20130901')
|
||||||
|
self.assertEqual(unified_strdate('Sep 2nd, 2013'), '20130902')
|
||||||
|
|
||||||
def test_unified_timestamps(self):
|
def test_unified_timestamps(self):
|
||||||
self.assertEqual(unified_timestamp('December 21, 2010'), 1292889600)
|
self.assertEqual(unified_timestamp('December 21, 2010'), 1292889600)
|
||||||
|
@ -128,7 +128,13 @@ DATE_FORMATS = (
|
|||||||
'%d %B %Y',
|
'%d %B %Y',
|
||||||
'%d %b %Y',
|
'%d %b %Y',
|
||||||
'%B %d %Y',
|
'%B %d %Y',
|
||||||
|
'%B %dst %Y',
|
||||||
|
'%B %dnd %Y',
|
||||||
|
'%B %dth %Y',
|
||||||
'%b %d %Y',
|
'%b %d %Y',
|
||||||
|
'%b %dst %Y',
|
||||||
|
'%b %dnd %Y',
|
||||||
|
'%b %dth %Y',
|
||||||
'%b %dst %Y %I:%M',
|
'%b %dst %Y %I:%M',
|
||||||
'%b %dnd %Y %I:%M',
|
'%b %dnd %Y %I:%M',
|
||||||
'%b %dth %Y %I:%M',
|
'%b %dth %Y %I:%M',
|
||||||
|
Loading…
Reference in New Issue
Block a user