I'm mainly a C# developer, but I'm currently working on a project in Python.
What's the best way to implement the equivalent of an enum in Python?
|
22
|
|
|
|
|
|
Python doesn't have an equivalent but you can implement your own. Myself, I like keeping it simple (I've seen some horribly complex examples on the net), something like this ...
|
||||||||||||||
|
|
|
What exactly do you want to use an enum for? Is there a more Pythonic way of doing it? |
||
|
|
|
|
Hi! Hmmm... I suppose the closest thing to an enum would be a dictionary, defined either like this:
or
Then, you can use the symbolic name for the constants like this:
There are other options, like a list of tuples, or a tuple of tuples, but the dictionary is the only one that provides you with a "symbolic" (constant string) way to access the value. Edit: I like Alexandru's answer too! |
||
|
|
|
|
Python doesn't have a built-in equivalent to However, in situations where an
(One disadvantage compared to using a class is that you lose the benefit of autocomplete) |
||||||
|
|
|
If you need the numeric values, here's the quickest way:
|
||
|
|
|
The typesafe enum pattern which was used in Java pre-JDK 5 has a number of advantages. Much like in Alexandru's answer, you create a class and class level fields are the enum values; however, the enum values are instances of the class rather than small integers. This has the advantage that your enum values don't inadvertently compare equal to small integers, you can control how they're printed, add arbitrary methods if that's useful and make assertions using isinstance:
|
|||
|
|
|
|
davidg recommends using dicts. I'd go one step further and use sets:
Now you can test whether a value matches one of the values in the set like this:
like dF, though, I usually just use string constants in place of enums. |
||
|
|
|
|
Alexandru's suggestion of using class constants for enums works quite well. I also like to add a dictionary for each set of constants to lookup a human-readable string representation. This serves two purposes: a) it provides a simple way to pretty-print your enum and b) the dictionary logically groups the constants so that you can test for membership.
|
||
|
|
|
|
You can take a look at the traits package. This gives you something like type safety and many other useful features. But it really depends on what you want to use such an enum for. |
|||
|
|
|
|
Use it like this:
if you just want unique symbols and don't care about the values, replace this line:
with this:
|
||||
|
|
|
Its funny, I just had a need for this the other day and i couldnt find an implementation worth using... so i wrote my own
take it or leave it, it did what i needed it to do :) use it like:
|
|||
|
|
|
|
What I use:
How to use:
So this gives you integer constants like state.PUBLISHED and the two-tuples to use as choices in Django models. |
|||
|
|
|
|
The best solution for you would depend on what you require from your fake Simple enum: If you need the
Using a
In addition to the above, if you also require that the items belong to a container of some sort, then embed them in a class:
To use the enum item, you would now need to use the container name and the item name:
Complex enum: For long lists of enum or more complicated uses of enum, these solutions will not suffice. You could look to the recipe by Will Ware for Simulating Enumerations in Python published in the Python Cookbook. An online version of that is available here. More info: PEP 354: Enumerations in Python has the interesting details of a proposal for enum in Python and why it was rejected. |
|||
|
|
|
What about :
I used that for Django model choices, it looks very pythonic. It is not really a Enum, but do the job. |
||
|
|
|
|
Here's yet another way:
Used like so:
|
||||
|
|
|
I had need of some symbolic constants in pyparsing to represent left and right associativity of binary operators. I used class constants like this:
Now when client code wants to use these constants, they can import the entire enum using:
The enumerations are unique, they can be tested with 'is' instead of '==', they don't take up a big footprint in my code for a minor concept, and they are easily imported into the client code. They don't support any fancy str() behavior, but so far that is in the YAGNI category. |
||
|
|
|
|
Here is another one. It seems somewhat similar to the general approach used by @Cipher. The author called it yapenum, "yet another Python enum". |
||
|
|
|
|
This is the best one I have seen: "First Class Enums in Python" http://code.activestate.com/recipes/413486/ It gives you a class, and the class contains all the enums. The enums can be compared to each other, but don't have any particular value; you can't use them as an integer value. (I resisted this at first because I am used to C enums, which are integer values. But if you can't use it as an integer, you can't use it as an integer by mistake so overall I think it is a win.) Each enum is a unique value. You can print enums, you can iterate over them, you can test that an enum value is "in" the enum. It's pretty complete and slick. |
||
|
|