Skip to content

Rohit1123/Twitter-Sentiment-Analysis

Repository files navigation

Tweets Sentiment Analysis

Sentiment analysis is the automated process of understanding the sentiment or opinion of a given text. You can use it to automatically analyze product reviews and sort them by Positive, Neutral, Negative.

1 Installation

1.1 Install python 3.6 or higher

1.2 Install pip3 & virtualenv

https://pip.pypa.io/en/stable/installation/
pip install virtualenv

1.3 Create and activate virtualenv

cd <project dir>

virtualenv .venv

source .venv/bin/activate

1.4 Install project dependencies

$ pip install -r requirements.txt

1.5 Initialize project

python manage.py makemigrations

python manage.py migrate

python manage.py createsuperuser

2 Run project

cd <project dir>

source .venv/bin/activate

python manage.py runserver

To Stop & deactivate virtualenv

CTRL+C

deactivate

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published