flufl.enum - A Python enumeration package

This package is called flufl.enum, a Python enumeration package.

The goals of flufl.enum are to produce simple, specific, concise semantics in an easy to read and write syntax. flufl.enum has just enough of the features needed to make enumerations useful, but without a lot of extra baggage to weigh them down. This work grew out of the Mailman 3.0 project and it is the enum package used there. This package was previously called munepy.

flufl.enum is an implementation of the standard library enumeration package described in PEP 435 for Python 3.4. It is available as a separate package for use in older Python versions.

Requirements

flufl.enum requires Python 2.7 or newer, and is compatible with Python 3.2 and later.

Documentation

A simple guide to using the library is available within this package. The manual is also available online at:

Project details

The project home page is:

You should report bugs at:

You can download the latest version of the package either from the Cheeseshop:

or from the Launchpad page above. Of course you can also just install it with pip or easy_install from the command line:

% sudo pip install flufl.enum
% sudo easy_install flufl.enum

You may want to use virtualenv instead of installing the package into the system Python.

You can grab the latest development copy of the code using Bazaar, from the Launchpad home page above. See http://bazaar-vcs.org for details on the Bazaar distributed revision control system. If you have Bazaar installed, you can grab your own branch of the code like this:

bzr branch lp:flufl.enum

You may contact the author via barry@python.org.

Table Of Contents

Next topic

Using the flufl.enum library

This Page