mmif-python 1.0.18__tar.gz → 1.0.19__tar.gz
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.
- {mmif_python-1.0.18 → mmif_python-1.0.19}/PKG-INFO +1 -1
- mmif_python-1.0.19/VERSION +1 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/serialize/mmif.py +1 -1
- mmif_python-1.0.19/mmif/utils/__init__.py +0 -0
- mmif_python-1.0.19/mmif/ver/__init__.py +2 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif_python.egg-info/PKG-INFO +1 -1
- mmif_python-1.0.18/VERSION +0 -1
- mmif_python-1.0.18/mmif/utils/__init__.py +0 -1
- mmif_python-1.0.18/mmif/ver/__init__.py +0 -2
- {mmif_python-1.0.18 → mmif_python-1.0.19}/LICENSE +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/MANIFEST.in +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/README.md +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/__init__.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/res/__init__.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/res/clams.vocabulary.yaml +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/res/do-not-edit.txt +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/res/mmif.json +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/serialize/__init__.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/serialize/annotation.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/serialize/model.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/serialize/view.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/utils/sequence_helper.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/utils/text_document_helper.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/utils/timeunit_helper.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/utils/video_document_helper.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/ver/do-not-edit.txt +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/vocabulary/__init__.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/vocabulary/annotation_types.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/vocabulary/base_types.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/vocabulary/do-not-edit.txt +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif/vocabulary/document_types.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif_docloc_http/__init__.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif_python.egg-info/SOURCES.txt +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif_python.egg-info/dependency_links.txt +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif_python.egg-info/requires.txt +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/mmif_python.egg-info/top_level.txt +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/requirements.cv +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/requirements.seq +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/requirements.txt +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/setup.cfg +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/setup.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/tests/test_serialize.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/tests/test_utils.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/tests/test_versioncompat.py +0 -0
- {mmif_python-1.0.18 → mmif_python-1.0.19}/tests/test_vocab.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mmif-python
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.19
|
|
4
4
|
Summary: Python implementation of MultiMedia Interchange Format specification. (https://mmif.clams.ai)
|
|
5
5
|
Home-page: https://mmif.clams.ai
|
|
6
6
|
Author: Brandeis Lab for Linguistics and Computation
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.0.19
|
|
@@ -120,7 +120,7 @@ class ViewsList(DataList[View]):
|
|
|
120
120
|
Returns the last view that is contentful, i.e., has no error or warning .
|
|
121
121
|
"""
|
|
122
122
|
for view in reversed(self._items.values()):
|
|
123
|
-
if 'error' not in view.metadata and '
|
|
123
|
+
if 'error' not in view.metadata and 'warnings' not in view.metadata:
|
|
124
124
|
return view
|
|
125
125
|
|
|
126
126
|
def get_last_view(self) -> Optional[View]:
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mmif-python
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.19
|
|
4
4
|
Summary: Python implementation of MultiMedia Interchange Format specification. (https://mmif.clams.ai)
|
|
5
5
|
Home-page: https://mmif.clams.ai
|
|
6
6
|
Author: Brandeis Lab for Linguistics and Computation
|
mmif_python-1.0.18/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.0.18
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from mmif.utils import video_document_helper
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|