1 | # -*- coding: utf-8 -*-
|
---|
2 | """
|
---|
3 | A list of Venezuelan States as `choices` in a
|
---|
4 | formfield.
|
---|
5 | Look
|
---|
6 | http://en.wikipedia.org/wiki/ISO_3166-2:VE
|
---|
7 | For more information
|
---|
8 |
|
---|
9 | This exists in this standalone file so that it's only imported into memory
|
---|
10 | when explicitly needed.
|
---|
11 | """
|
---|
12 |
|
---|
13 | STATES_CHOICES = (
|
---|
14 | 'A', 'Distrito Capital'
|
---|
15 | 'B', 'Anzoátegui'
|
---|
16 | 'C', 'Apure'
|
---|
17 | 'D', 'Aragua'
|
---|
18 | 'E', 'Barinas'
|
---|
19 | 'F', 'Bolívar'
|
---|
20 | 'G', 'Carabobo'
|
---|
21 | 'H', 'Cojedes'
|
---|
22 | 'I', 'Falcón'
|
---|
23 | 'J', 'Guárico'
|
---|
24 | 'K', 'Lara'
|
---|
25 | 'L', 'Mérida'
|
---|
26 | 'M', 'Miranda'
|
---|
27 | 'N', 'Monagas'
|
---|
28 | 'O', 'Nueva Esparta'
|
---|
29 | 'P', 'Portuguesa'
|
---|
30 | 'R', 'Sucre'
|
---|
31 | 'S', 'Táchira'
|
---|
32 | 'T', 'Trujillo'
|
---|
33 | 'U', 'Yaracuy'
|
---|
34 | 'V', 'Zulia'
|
---|
35 | 'W', 'Vargas'
|
---|
36 | 'X', 'Amazonas'
|
---|
37 | 'Y', 'Delta Amacuro'
|
---|
38 | 'Z', 'Dependencias Federales'
|
---|
39 | )
|
---|