Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 547 Bytes

File metadata and controls

24 lines (20 loc) · 547 Bytes

Sentiment analysis of tweets that mention the BBC

This project extracts tweets that mention BBC and uses TextBlob's sentiment analysis library to determine the sentiment of each tweet.

To run

Install python dependencies

Use Python 3 virtual env

python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Install node modules

Use nvm to switch to node v12.

nvm use 12
npm install

Start app

npm start