Ticket #11768: ve_states.py

File ve_states.py, 795 bytes (added by marcoslhc, 15 years ago)
Line 
1# -*- coding: utf-8 -*-
2"""
3A list of Venezuelan States as `choices` in a
4formfield.
5Look
6http://en.wikipedia.org/wiki/ISO_3166-2:VE
7For more information
8
9This exists in this standalone file so that it's only imported into memory
10when explicitly needed.
11"""
12
13STATES_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)
Back to Top