linkml-toolkit 0.1.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.
- linkml_toolkit/__init__.py +19 -0
- linkml_toolkit/_version.py +24 -0
- linkml_toolkit/cli.py +1000 -0
- linkml_toolkit/core.py +1304 -0
- linkml_toolkit/export.py +217 -0
- linkml_toolkit/sql.py +176 -0
- linkml_toolkit/utils.py +49 -0
- linkml_toolkit/validation.py +266 -0
- linkml_toolkit/visualization/__init__.py +29 -0
- linkml_toolkit/visualization/components.py +746 -0
- linkml_toolkit/visualization/core.py +917 -0
- linkml_toolkit/visualization/utils.py +288 -0
- linkml_toolkit-0.1.0.dist-info/METADATA +290 -0
- linkml_toolkit-0.1.0.dist-info/RECORD +18 -0
- linkml_toolkit-0.1.0.dist-info/WHEEL +5 -0
- linkml_toolkit-0.1.0.dist-info/entry_points.txt +2 -0
- linkml_toolkit-0.1.0.dist-info/licenses/LICENSE +21 -0
- linkml_toolkit-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# File: src/linkml_toolkit/__init__.py
|
|
2
|
+
"""LinkML Toolkit - A simple toolkit for working with LinkML schemas."""
|
|
3
|
+
|
|
4
|
+
from importlib.metadata import version
|
|
5
|
+
|
|
6
|
+
try:
|
|
7
|
+
__version__ = version("linkml_toolkit")
|
|
8
|
+
except Exception:
|
|
9
|
+
__version__ = "unknown"
|
|
10
|
+
|
|
11
|
+
from .core import LinkMLProcessor
|
|
12
|
+
from .validation import SchemaValidator
|
|
13
|
+
from .export import SchemaExporter
|
|
14
|
+
|
|
15
|
+
__all__ = [
|
|
16
|
+
"LinkMLProcessor",
|
|
17
|
+
"SchemaValidator",
|
|
18
|
+
"SchemaExporter",
|
|
19
|
+
]
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# file generated by vcs-versioning
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
__all__ = [
|
|
6
|
+
"__version__",
|
|
7
|
+
"__version_tuple__",
|
|
8
|
+
"version",
|
|
9
|
+
"version_tuple",
|
|
10
|
+
"__commit_id__",
|
|
11
|
+
"commit_id",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
version: str
|
|
15
|
+
__version__: str
|
|
16
|
+
__version_tuple__: tuple[int | str, ...]
|
|
17
|
+
version_tuple: tuple[int | str, ...]
|
|
18
|
+
commit_id: str | None
|
|
19
|
+
__commit_id__: str | None
|
|
20
|
+
|
|
21
|
+
__version__ = version = '0.1.0'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 1, 0)
|
|
23
|
+
|
|
24
|
+
__commit_id__ = commit_id = None
|