from enum import IntEnum class ArcaeaRatingClass(IntEnum): PAST = 0 PRESENT = 1 FUTURE = 2 BEYOND = 3 ETERNAL = 4