Created
December 17, 2019 20:09
-
-
Save glickmac/fa96fe832fac35dcd57cc4307e86f1e3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from bs4 import BeautifulSoup | |
import nltk | |
import string | |
nltk.download("stopwords") | |
nltk.download('vader_lexicon') | |
from nltk.tokenize import RegexpTokenizer | |
from nltk.stem import WordNetLemmatizer | |
from nltk.corpus import stopwords | |
from nltk.sentiment.vader import SentimentIntensityAnalyzer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment