Skip to main content

Provide enumerated type classes

Project description

This Python module provides a metclass-based approach to providing enumerated types in Python. Enumerated types are defined by define a subclass of the Enum class, with the class attributes defined the enumerated values. Dictionary style methods are also provided for things such as accessing and iterating over the enumeration values. Enumerated type classes can be further subclassed and/or merged. Once enumerated type classes have been defined, they cannot easily be modified.

Example of use:

>>> class Season(Enum):
...    summer = 'Summer'
...    autumn = 'Autumn'
...    winter = 'Winter'
...    spring = 'Spring'
>>> this_season = Season.spring
>>> Season.values()
['Summer', 'Autumn', 'Winter', 'Spring']

This requires Python 2.2 or greater.

Project details


Release history Release notifications | RSS feed

This version

0.3

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page