from enum import Enum class PackSize(Enum): ALL = 0 SMALL = 1 MEDIUM = 2 LARGE = 3 HUGE = 4 PACK_CATEGORIES = { 'general', 'freezed', }