For a sentiment analysis project, I'm trying to add stopwords while using TextBlob. I've tried to combine NTLK scripts as well with no luck. Here is my code prior to attempting to add the stopwords.
import csv
from textblob import TextBlob
infile = 'File Path'
with open(infile, 'r') as csvfile:
rows = csv.reader(csvfile)
for row in rows:
sentence = row[0]
blob = TextBlob(sentence)
print (blob.sentiment_assessments)