├── .gitignore ├── ReadMe.md └── sentiment.py /.gitignore: -------------------------------------------------------------------------------- 1 | SentiWordNet.txt 2 | .DS_Store 3 | *.pyc 4 | -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelachan/sentimentanalysis/HEAD/ReadMe.md -------------------------------------------------------------------------------- /sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anelachan/sentimentanalysis/HEAD/sentiment.py --------------------------------------------------------------------------------