├── .gitignore ├── LICENCE.txt ├── Pipfile ├── Pipfile.lock ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── installation.rst └── usage.rst ├── examples └── Benchmark.ipynb ├── pyliwc ├── __init__.py └── core.py ├── setup.py └── tests ├── __init__.py └── basic_test.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | *.egg-info/ 3 | LIWC2015.dic 4 | __pycache__ 5 | .ipynb_checkpoints/ 6 | _build -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /examples/Benchmark.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/examples/Benchmark.ipynb -------------------------------------------------------------------------------- /pyliwc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyliwc/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/pyliwc/core.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/basic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfederschmidt/pyliwc/HEAD/tests/basic_test.py --------------------------------------------------------------------------------