from enum import Enum class EnvironmentName(Enum): production = 'production' staging = 'staging' testing = 'testing' development = 'development'