├── LICENSE ├── README.md ├── docs ├── Makefile ├── api.rst ├── conf.py ├── index.rst └── make.bat ├── examples ├── annotate.py ├── basic.py ├── named_entities.ipynb ├── tei-spacy-tei.ipynb └── wysiwyg.py ├── setup.py └── standoffconverter ├── __init__.py ├── base.py ├── converters.py ├── standoffs.py ├── tests ├── __init__.py ├── compare_profiling.py ├── profiling_standoffconverter.py └── test_standoffconverter.py ├── utils.py └── views.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/docs/make.bat -------------------------------------------------------------------------------- /examples/annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/examples/annotate.py -------------------------------------------------------------------------------- /examples/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/examples/basic.py -------------------------------------------------------------------------------- /examples/named_entities.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/examples/named_entities.ipynb -------------------------------------------------------------------------------- /examples/tei-spacy-tei.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/examples/tei-spacy-tei.ipynb -------------------------------------------------------------------------------- /examples/wysiwyg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/examples/wysiwyg.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/setup.py -------------------------------------------------------------------------------- /standoffconverter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/standoffconverter/__init__.py -------------------------------------------------------------------------------- /standoffconverter/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/standoffconverter/base.py -------------------------------------------------------------------------------- /standoffconverter/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/standoffconverter/converters.py -------------------------------------------------------------------------------- /standoffconverter/standoffs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/standoffconverter/standoffs.py -------------------------------------------------------------------------------- /standoffconverter/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /standoffconverter/tests/compare_profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/standoffconverter/tests/compare_profiling.py -------------------------------------------------------------------------------- /standoffconverter/tests/profiling_standoffconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/standoffconverter/tests/profiling_standoffconverter.py -------------------------------------------------------------------------------- /standoffconverter/tests/test_standoffconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/standoffconverter/tests/test_standoffconverter.py -------------------------------------------------------------------------------- /standoffconverter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/standoffconverter/utils.py -------------------------------------------------------------------------------- /standoffconverter/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standoff-nlp/standoffconverter/HEAD/standoffconverter/views.py --------------------------------------------------------------------------------