1
Fork 0
mirror of https://github.com/Steffo99/unimore-bda-6.git synced 2024-11-22 07:54:19 +00:00
bda-6-steffo/unimore_bda_6/analysis/__init__.py

8 lines
164 B
Python

from .base import BaseSentimentAnalyzer
from .nltk_sentiment import NLTKSentimentAnalyzer
__all__ = (
"BaseSentimentAnalyzer",
"NLTKSentimentAnalyzer",
)