sawaw/sawaw/sentiments.py
2023-11-13 21:37:32 +00:00

10 lines
136 B
Python

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