We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 637003a commit 979256bCopy full SHA for 979256b
1 file changed
pydateparser/date_formats.py
@@ -0,0 +1,29 @@
1
+class DateFormats:
2
+ locale = {'USA':[
3
+ '%b %d %Y',
4
+ '%b %-d %Y',
5
+ '%b %d, %Y',
6
+ '%b %-d, %Y',
7
+ '%B %d, %Y',
8
+ '%B %-d, %Y',
9
+ '%B %d %Y',
10
+ '%B %-d %Y',
11
+ '%m/%d/%Y',
12
+ '%m/%-d/%Y',
13
+ '%m/%d/%y',
14
+ '%m/%-d/%y'
15
+ ],
16
+ 'EU':[
17
18
19
20
21
22
23
24
25
+ '%d/%m/%Y',
26
+ '%-d/%m/%Y',
27
+ '%d/%m/%y',
28
+ '%-d/%m/%y'
29
+ ]}
0 commit comments