TextBlob v0.4.0 Release Notes

Release Date: 2013-08-05 // over 10 years ago
    • ๐Ÿ†• New text.tokenizers module with WordTokenizer and SentenceTokenizer. Tokenizer instances (from either textblob itself or NLTK) can be passed to TextBlob's constructor. Tokens are accessed through the new tokens 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 to json.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.