Dutch language support for TextBlob.
- Part-of-speech tagging (
PatternTagger) - Sentiment analysis (
PatternAnalyzer) - Supports Python 2 and 3
If you have pip installed (you should), run
$ pip install -U textblob $ pip install -U textblob-nl
>>> from textblob import TextBlob
>>> from textblob_nl import PatternTagger, PatternAnalyzer
>>> text = u"De kat wil wel vis eten maar geen poot nat maken."
>>> blob = TextBlob(text, pos_tagger=PatternTagger(), analyzer=PatternAnalyzer())
>>> blob.sentiment
(-0.1, 0.4)- Python >= 2.6 or >= 3.3
- Tokenization
- Parsing
- NLTK tagging?
MIT licensed. See the bundled LICENSE file for more details.