File size: 364 Bytes
df10fc7
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""SenseShift: rewrite or extend text at any sentiment from -1.0 to 1.0."""

from .pipeline import SenseShift, SenseShiftOutput
from .text_utils import SENTIMENT_GRID, compute_vader_sentiment, split_sentences

__version__ = "0.1.0"
__all__ = [
    "SenseShift",
    "SenseShiftOutput",
    "SENTIMENT_GRID",
    "compute_vader_sentiment",
    "split_sentences",
]