Skip to content

Instantly share code, notes, and snippets.

@JarrydWannenburg
Created September 3, 2022 16:42
Show Gist options
  • Save JarrydWannenburg/297215335889ed22994c873c5e93a9b8 to your computer and use it in GitHub Desktop.
Save JarrydWannenburg/297215335889ed22994c873c5e93a9b8 to your computer and use it in GitHub Desktop.
Google_News_Extraction_Article
# Create functions to get polarity and subjectivity using TextBlob
def getPolarity(text):
return round(TextBlob(text).sentiment[0],4)
def getSubjectivity(text):
return round(TextBlob(text).sentiment[1],4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment