10 lines
136 B
Python
10 lines
136 B
Python
from enum import Enum
|
|
|
|
|
|
class SentimentResult(Enum):
|
|
POSITIVE = 2
|
|
NEUTRAL = 1
|
|
NEGATIVE = 0
|
|
NONE = -1
|
|
UNDEFINED = -2
|