Skip to main content

A TextBlob sentiment analysis pipeline compponent for spaCy

Project description

spaCyTextBlob

A TextBlob sentiment analysis pipeline compponent for spaCy.

Table of Contents

Install

Install spaCyTextBlob from pypi.

pip install spacytextblob

TextBlob also requires some data to be downloaded before getting started.

python -m textblob.download_corpora

spaCy requires that you download a model to get started.

python -m spacy download en_core_web_sm

Quick Start

import spacy
from spacytextblob.spacytextblob import SpacyTextBlob

nlp = spacy.load('en_core_web_sm')
spacy_text_blob = SpacyTextBlob()
nlp.add_pipe(spacy_text_blob)
text = "I had a really horrible day. It was the worst day ever! But every now and then I have a really good day that makes me happy."
doc = nlp(text)
print('Polarity:', doc._.sentiment.polarity)
Polarity: -0.125
print('Sujectivity:', doc._.sentiment.subjectivity)
Sujectivity: 0.9
print('Assessments:', doc._.sentiment.assessments)
Assessments: [(['really', 'horrible'], -1.0, 1.0, None), (['worst', '!'], -1.0, 1.0, None), (['really', 'good'], 0.7, 0.6000000000000001, None), (['happy'], 0.8, 1.0, None)]

Reference and Attribution

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spacytextblob-0.1.7.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

spacytextblob-0.1.7-py3-none-any.whl (3.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page