enum 0.4.3
Robust enumerated type support in Python
Latest Version: 0.4.4
This package provides a module for robust enumerations in Python.
An enumeration object is created with a sequence of string arguments to the Enum() constructor:
>>> from enum import Enum
>>> Colours = Enum('red', 'blue', 'green')
>>> Weekdays = Enum('mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun')
The return value is an immutable sequence object with a value for each of the string arguments. Each value is also available as an attribute named from the corresponding string argument:
>>> pizza_night = Weekdays[4] >>> shirt_colour = Colours.green
The values are constants that can be compared only with values from the same enumeration; comparison with other values will invoke Python's fallback comparisons:
>>> pizza_night == Weekdays.fri True >>> shirt_colour > Colours.red True >>> shirt_colour == "green" False
Each value from an enumeration exports its sequence index as an integer, and can be coerced to a simple string matching the original arguments used to create the enumeration:
>>> str(pizza_night) 'fri' >>> shirt_colour.index 2
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| enum-0.4.3-py2.5.egg (md5) | Python Egg | 2.5 | 2007-10-04 06:37:45 | 6KB | 2497 |
| enum-0.4.3.tar.gz (md5) | Source | 2007-10-04 06:37:28 | 20KB | 1696 | |
| enum-0.4.3-py2.4.egg (md5) | Python Egg | 2.4 | 2007-10-04 06:37:38 | 6KB | 7363 |
- Author: Ben Finney <ben+python at benfinney id au>
- Home Page: http://cheeseshop.python.org/pypi/enum/
- Keywords: enum enumerated enumeration
- License: Choice of GPL or Python license
-
Categories
- Development Status :: 4 - Beta
- Intended Audience :: Developers
- License :: OSI Approved :: GNU General Public License (GPL)
- License :: OSI Approved :: Python Software Foundation License
- Operating System :: OS Independent
- Programming Language :: Python
- Topic :: Software Development :: Libraries :: Python Modules
- Package Index Owner: bignose
- DOAP record: enum-0.4.3.xml
Log in to rate this package.
