from enum import Enum class SentimentResult(Enum): POSITIVE = 2 NEUTRAL = 1 NEGATIVE = 0 NONE = -1 UNDEFINED = -2