We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46218bd commit b8bc996Copy full SHA for b8bc996
gedcom7/const.py
@@ -1,6 +1,5 @@
1
"""Constants."""
2
3
-
4
CONT = "CONT"
5
HEAD = "HEAD"
6
ABBR = "ABBR"
@@ -1924,3 +1923,19 @@
1924
1923
"https://gedcom.io/terms/v7/EXID": {"TYPE": "https://gedcom.io/terms/v7/EXID-TYPE"},
1925
"https://gedcom.io/terms/v7/GEDC": {"VERS": "https://gedcom.io/terms/v7/GEDC-VERS"},
1926
}
+
1927
1928
+GEDCOM_MONTHS = {
1929
+ "JAN": 1,
1930
+ "FEB": 2,
1931
+ "MAR": 3,
1932
+ "APR": 4,
1933
+ "MAY": 5,
1934
+ "JUN": 6,
1935
+ "JUL": 7,
1936
+ "AUG": 8,
1937
+ "SEP": 9,
1938
+ "OCT": 10,
1939
+ "NOV": 11,
1940
+ "DEC": 12,
1941
+}
0 commit comments