├── .gitignore ├── LICENCE.txt ├── README.md ├── corenlp_pywrap ├── __init__.py ├── example.py ├── pywrap.py └── test_using_pytest.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhsecond/corenlp_pywrap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhsecond/corenlp_pywrap/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhsecond/corenlp_pywrap/HEAD/README.md -------------------------------------------------------------------------------- /corenlp_pywrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhsecond/corenlp_pywrap/HEAD/corenlp_pywrap/__init__.py -------------------------------------------------------------------------------- /corenlp_pywrap/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhsecond/corenlp_pywrap/HEAD/corenlp_pywrap/example.py -------------------------------------------------------------------------------- /corenlp_pywrap/pywrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhsecond/corenlp_pywrap/HEAD/corenlp_pywrap/pywrap.py -------------------------------------------------------------------------------- /corenlp_pywrap/test_using_pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhsecond/corenlp_pywrap/HEAD/corenlp_pywrap/test_using_pytest.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhsecond/corenlp_pywrap/HEAD/setup.py --------------------------------------------------------------------------------