mirror of
https://github.com/Steffo99/unimore-bda-6.git
synced 2024-11-22 16:04:18 +00:00
8 lines
164 B
Python
8 lines
164 B
Python
from .base import BaseSentimentAnalyzer
|
|
from .nltk_sentiment import NLTKSentimentAnalyzer
|
|
|
|
|
|
__all__ = (
|
|
"BaseSentimentAnalyzer",
|
|
"NLTKSentimentAnalyzer",
|
|
)
|