RedesAI is a lightweight yet powerful sentiment analysis tool designed to evaluate and classify textual data into positive, negative, or neutral sentiments. RedesAI provides quick and accurate insights to help you better understand your text data.
Enable Youtube Data Api v3 from google cloud console to get the api key
Or watch tutorial
FLASK_APP=app.py
FLASK_ENV=development
SECRET_KEY="Paste your Youtube Api Key Here"
cd backend
Create a Virtual Environment (Windows):
python -m venv venv
Activation on venv (Windows):
venv\Scripts\activate
If Activation Failed. Execute this command in powershell Administrator mode. : (Optional)
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
Create a Virtual Environment(Linux):
python3 -m venv myenv
Activation on venv (Linux):
source myenv/bin/activate
Install packages from requirements.txt:
pip install -r requirements.txt
python initial.py
python server.py
cd frontend
Install packages
npm i
Run Frontend
npm run dev