├── .gitignore ├── Changelog.md ├── LICENSE ├── README.md ├── pyproject.toml ├── requirements.txt ├── src └── spacy_to_naf │ ├── __init__.py │ └── converter.py └── tests ├── __init__.py ├── data ├── example.naf ├── example.txt └── hello.naf ├── test_convert.py └── test_converter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cltl/SpaCy-to-NAF/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cltl/SpaCy-to-NAF/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cltl/SpaCy-to-NAF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cltl/SpaCy-to-NAF/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cltl/SpaCy-to-NAF/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cltl/SpaCy-to-NAF/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/spacy_to_naf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/spacy_to_naf/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cltl/SpaCy-to-NAF/HEAD/src/spacy_to_naf/converter.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/example.naf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cltl/SpaCy-to-NAF/HEAD/tests/data/example.naf -------------------------------------------------------------------------------- /tests/data/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cltl/SpaCy-to-NAF/HEAD/tests/data/example.txt -------------------------------------------------------------------------------- /tests/data/hello.naf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cltl/SpaCy-to-NAF/HEAD/tests/data/hello.naf -------------------------------------------------------------------------------- /tests/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cltl/SpaCy-to-NAF/HEAD/tests/test_convert.py -------------------------------------------------------------------------------- /tests/test_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cltl/SpaCy-to-NAF/HEAD/tests/test_converter.py --------------------------------------------------------------------------------