├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── sentimental ├── __init__.py ├── data │ ├── .gitignore │ ├── README.md │ └── sv │ │ └── lexicon │ │ ├── README.md │ │ ├── negative_examples.txt │ │ └── positive_examples.txt ├── example_extractor.py └── sentimental.py ├── setup.cfg ├── setup.py └── version.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include sentimental/data * 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/README.md -------------------------------------------------------------------------------- /sentimental/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/sentimental/__init__.py -------------------------------------------------------------------------------- /sentimental/data/.gitignore: -------------------------------------------------------------------------------- 1 | # Private testing corpus 2 | */_*/ 3 | -------------------------------------------------------------------------------- /sentimental/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/sentimental/data/README.md -------------------------------------------------------------------------------- /sentimental/data/sv/lexicon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/sentimental/data/sv/lexicon/README.md -------------------------------------------------------------------------------- /sentimental/data/sv/lexicon/negative_examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/sentimental/data/sv/lexicon/negative_examples.txt -------------------------------------------------------------------------------- /sentimental/data/sv/lexicon/positive_examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/sentimental/data/sv/lexicon/positive_examples.txt -------------------------------------------------------------------------------- /sentimental/example_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/sentimental/example_extractor.py -------------------------------------------------------------------------------- /sentimental/sentimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/sentimental/sentimental.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/setup.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikGartner/sentimental/HEAD/version.py --------------------------------------------------------------------------------