All Versions
36
Latest Version
Avg Release Cycle
129 days
Latest Release
591 days ago
Changelog History
Page 4
Changelog History
Page 4
-
v0.5.0 Changes
August 10, 2013- ๐ Language translation and detection API!
- โ Add
text.sentiments
module. Contains thePatternAnalyzer
(default implementation) as well as aNaiveBayesAnalyzer
. - Part-of-speech tags can be accessed via
TextBlob.tags
orTextBlob.pos_tags
. - โ Add
polarity
andsubjectivity
helper properties.
-
v0.4.0 Changes
August 05, 2013- ๐ New
text.tokenizers
module withWordTokenizer
andSentenceTokenizer
. Tokenizer instances (from either textblob itself or NLTK) can be passed to TextBlob's constructor. Tokens are accessed through the newtokens
property. - ๐ New
Blobber
class for creating TextBlobs that share the same tagger, tokenizer, and np_extractor. - โ Add
ngrams
method. Backwards-incompatible
:TextBlob.json()
is now a method, not a property. This allows you to pass arguments (the same that you would pass tojson.dumps()
).- ๐ New home for documentation: https://textblob.readthedocs.io/
- โ Add parameter for cleaning HTML markup from text.
- Minor improvement to word tokenization.
- โก๏ธ Updated NLTK.
- ๐ Fix bug with adding blobs to bytestrings.
- ๐ New
-
v0.3.10 Changes
August 02, 2013- Bundled NLTK no longer overrides local installation.
- ๐ Fix sentiment analysis of text with non-ascii characters.
-
v0.3.9 Changes
July 31, 2013- โก๏ธ Updated nltk.
- ConllExtractor is now Python 3-compatible.
- ๐ Improved sentiment analysis.
- Blobs are equal (with
==
) to their string counterparts. - โ Added instructions to install textblob without nltk bundled.
- โฌ๏ธ Dropping official 3.1 and 3.2 support.
-
v0.3.8 Changes
July 30, 2013- Importing TextBlob is now much faster. This is because the noun phrase parsers are trained only on the first call to
noun_phrases
(instead of training them every time you import TextBlob). - โ Add text.taggers module which allows user to change which POS tagger implementation to use. Currently supports PatternTagger and NLTKTagger (NLTKTagger only works with Python 2).
- NPExtractor and Tagger objects can be passed to TextBlob's constructor.
- ๐ Fix bug with POS-tagger not tagging one-letter words.
- Rename text/np_extractor.py -> text/np_extractors.py
- โ Add run_tests.py script.
- Importing TextBlob is now much faster. This is because the noun phrase parsers are trained only on the first call to
-
v0.3.7 Changes
July 28, 2013Every word in a
Blob
orSentence
is aWord
instance which has methods for inflection, e.gword.pluralize()
andword.singularize()
.โก๏ธ Updated the
np_extractor
module. Now has an new implementation,ConllExtractor
that uses the Conll2000 chunking corpus. Only works on Py2.