If you are using < Python 3.4, you need to install enum34.
pip install enum34Enum declaration
from enum import Enumclass ItemType(Enum): PLACE = 1 PEOPLE = 2 OTHER = 9Convert enum to string
ItemType.nameConvery enum to int
ItemType.valueConvert string to enum
ItemType['PLACE']Convert int to enum
ItemType(1)