Skip to content

Instantly share code, notes, and snippets.

@zengoma
zengoma / us_states.py
Created April 20, 2021 19:48
US alpha-code TextChoices for Django
from django.db.models import TextChoices
class USStates(TextChoices):
ALABAMA = "AL"
ALASKA = "AK"
ARIZONA = "AZ"
ARKANSAS = "AR"
CALIFORNIA = "CA"
COLORADO = "CO"