-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentities.py
37 lines (37 loc) · 927 Bytes
/
entities.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""
Copyright (c) 2023 Geovanni Santamaria. All Rights Reserved.
Here is a list of the 32 federal states of Mexico along with the abbreviations
provided by the National Population Registry (RENAP) for these.
"""
renapo = {
"aguascalientes": "as",
"baja california": "bc",
"baja california sur": "bs",
"campeche": "cc",
"chiapas": "cs",
"chihuahua": "ch",
"coahuila": "cl",
"colima": "cm",
"ciudad de mexico": "df",
"durango": "dg",
"guanajuato": "gt",
"guerrero": "gr",
"hidalgo": "hg",
"jalisco": "jc",
"estado de mexico": "mc",
"michoacan": "mn",
"morelos": "ms",
"nayarit": "nt",
"nuevo leon": "nl",
"oaxaca": "oc",
"puebla": "pl",
"queretaro": "qr",
"san luis potosi": "sp",
"sinaloa": "sr",
"tabasco": "tc",
"tamaulipas": "ts",
"tlaxcala": "tl",
"veracruz": "vz",
"yucatan": "yn",
"zacatecas": "zs",
}