__init__.py 388 B

1234567891011121314
  1. # -*- coding: utf-8 -*-
  2. # Natural Language Toolkit: Sentiment Analysis
  3. #
  4. # Copyright (C) 2001-2020 NLTK Project
  5. # Author: Ewan Klein <ewan@inf.ed.ac.uk>
  6. # URL: <http://nltk.org/>
  7. # For license information, see LICENSE.TXT
  8. """
  9. NLTK Sentiment Analysis Package
  10. """
  11. from nltk.sentiment.sentiment_analyzer import SentimentAnalyzer
  12. from nltk.sentiment.vader import SentimentIntensityAnalyzer