dkpro-cassis 0.10.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cassis/__init__.py +20 -0
- cassis/cas.py +841 -0
- cassis/json.py +574 -0
- cassis/resources/__init__.py +0 -0
- cassis/resources/dkpro-core-types.xml +2202 -0
- cassis/typesystem.py +1575 -0
- cassis/util.py +246 -0
- cassis/xmi.py +734 -0
- dkpro_cassis-0.10.0.dist-info/LICENSE +201 -0
- dkpro_cassis-0.10.0.dist-info/METADATA +749 -0
- dkpro_cassis-0.10.0.dist-info/RECORD +13 -0
- dkpro_cassis-0.10.0.dist-info/WHEEL +5 -0
- dkpro_cassis-0.10.0.dist-info/top_level.txt +1 -0
cassis/__init__.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""UIMA CAS processing library in Python."""
|
|
2
|
+
|
|
3
|
+
from .cas import Cas, Sofa, View
|
|
4
|
+
from .json import load_cas_from_json
|
|
5
|
+
from .typesystem import TypeSystem, load_dkpro_core_typesystem, load_typesystem, merge_typesystems
|
|
6
|
+
from .util import cas_to_comparable_text
|
|
7
|
+
from .xmi import load_cas_from_xmi
|
|
8
|
+
|
|
9
|
+
__all__ = [
|
|
10
|
+
"Cas",
|
|
11
|
+
"Sofa",
|
|
12
|
+
"View",
|
|
13
|
+
"TypeSystem",
|
|
14
|
+
"load_typesystem",
|
|
15
|
+
"load_dkpro_core_typesystem",
|
|
16
|
+
"merge_typesystems",
|
|
17
|
+
"load_cas_from_xmi",
|
|
18
|
+
"load_cas_from_json",
|
|
19
|
+
"cas_to_comparable_text",
|
|
20
|
+
]
|