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 backendCreate a Virtual Environment (Windows):
python -m venv venvActivation on venv (Windows):
venv\Scripts\activateIf Activation Failed. Execute this command in powershell Administrator mode. : (Optional)
Set-ExecutionPolicy RemoteSigned -Scope CurrentUserCreate a Virtual Environment(Linux):
python3 -m venv myenvActivation on venv (Linux):
source myenv/bin/activateInstall packages from requirements.txt:
pip install -r requirements.txt
python initial.py python server.pycd frontendInstall packages
npm iRun Frontend
npm run dev

