<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>enum</name>
<shortdesc>Robust enumerated data types in Python</shortdesc>
<description>This package provides a robust enumerated data type for Python.

    An enumeration object is created with a sequence of string
    arguments to the Enum() function::

        &gt;&gt;&gt; from enum import Enum
        &gt;&gt;&gt; Colour = Enum('red', 'blue', 'green')
        &gt;&gt;&gt; Weekday = Enum('mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun')

    The return value is a new object with attributes for each of the
    string arguments; these attributes act as unique values within the
    enumeration::

        &gt;&gt;&gt; pixel_colour = Colour.blue

    Enumeration objects are immutable, and can iterate their values.
    The values are constants that can be compared only with other
    values from the same enumeration, but can be coerced to simple
    strings matching the original arguments to Enum().

    The design is based in part on Zoran Isailovski's recipe, "First
    Class Enums in Python" in the ASPN Python Cookbook
    &lt;URL:http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/413486&gt;.</description>
<maintainer><foaf:Person><foaf:name>Ben Finney</foaf:name>
<foaf:mbox_sha1sum>ad04b43c71418375aaee149c58fe541a25da784f</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>0.1</revision></Version></release>
</Project></rdf:RDF>