├── .gitattributes ├── LICENSE.MD ├── Pipfile ├── Pipfile.lock ├── README.md ├── app.py ├── app ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── configuration.cpython-39.pyc │ ├── forms.cpython-39.pyc │ ├── models.cpython-39.pyc │ └── views.cpython-39.pyc ├── models.py ├── test.py └── views.py ├── code_templates ├── java.jav ├── php.php ├── python.py └── react.ts ├── images ├── api.png ├── n++.png ├── neu.png └── p++.png ├── index.php ├── requirements.txt └── runtime.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/app.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/app/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /app/__pycache__/configuration.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/app/__pycache__/configuration.cpython-39.pyc -------------------------------------------------------------------------------- /app/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/app/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /app/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/app/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /app/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/app/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/app/models.py -------------------------------------------------------------------------------- /app/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/app/test.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/app/views.py -------------------------------------------------------------------------------- /code_templates/java.jav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/code_templates/java.jav -------------------------------------------------------------------------------- /code_templates/php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/code_templates/php.php -------------------------------------------------------------------------------- /code_templates/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/code_templates/python.py -------------------------------------------------------------------------------- /code_templates/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/code_templates/react.ts -------------------------------------------------------------------------------- /images/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/images/api.png -------------------------------------------------------------------------------- /images/n++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/images/n++.png -------------------------------------------------------------------------------- /images/neu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/images/neu.png -------------------------------------------------------------------------------- /images/p++.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/images/p++.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/Sentiment-Analysis-API/HEAD/index.php -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | textblob -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.4 --------------------------------------------------------------------------------