oli-python 2.0.2__tar.gz → 2.0.4__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.
- {oli_python-2.0.2 → oli_python-2.0.4}/PKG-INFO +2 -1
- {oli_python-2.0.2 → oli_python-2.0.4}/oli/attestation/utils_validator.py +2 -2
- {oli_python-2.0.2 → oli_python-2.0.4}/oli_python.egg-info/PKG-INFO +2 -1
- {oli_python-2.0.2 → oli_python-2.0.4}/oli_python.egg-info/requires.txt +1 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/setup.py +3 -2
- {oli_python-2.0.2 → oli_python-2.0.4}/README.md +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli/__init__.py +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli/attestation/__init__.py +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli/attestation/offchain.py +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli/attestation/onchain.py +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli/attestation/utils_other.py +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli/core.py +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli/data/__init__.py +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli/data/api.py +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli/data/trust.py +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli/data/utils.py +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli_python.egg-info/SOURCES.txt +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli_python.egg-info/dependency_links.txt +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/oli_python.egg-info/top_level.txt +0 -0
- {oli_python-2.0.2 → oli_python-2.0.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: oli-python
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.4
|
|
4
4
|
Summary: Python SDK for interacting with the Open Labels Initiative; A standard, registry and trust layer for EVM address labels.
|
|
5
5
|
Home-page: https://github.com/openlabelsinitiative/oli-python
|
|
6
6
|
Author: Lorenz Lehmann
|
|
@@ -15,6 +15,7 @@ Requires-Python: >=3.9
|
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
Requires-Dist: web3>=6.0.0
|
|
17
17
|
Requires-Dist: PyYAML>=6.0.0
|
|
18
|
+
Requires-Dist: networkx>=3.4.2
|
|
18
19
|
Dynamic: author
|
|
19
20
|
Dynamic: author-email
|
|
20
21
|
Dynamic: classifier
|
|
@@ -215,7 +215,7 @@ class UtilsValidator:
|
|
|
215
215
|
if len(self.oli.tag_value_sets[tag_id]) < 100:
|
|
216
216
|
print(f"Please use one of the following values for {tag_id}: {self.oli.tag_value_sets[tag_id]}")
|
|
217
217
|
else:
|
|
218
|
-
print(f"Please use a valid value from the predefined value_set for {tag_id}:
|
|
218
|
+
print(f"Please use a valid value from the predefined value_set for {tag_id}: oli.tag_value_sets['{tag_id}']")
|
|
219
219
|
# list of values
|
|
220
220
|
elif tags[tag_id] not in self.oli.tag_value_sets[tag_id] and isinstance(tags[tag_id], list):
|
|
221
221
|
for i in tags[tag_id]:
|
|
@@ -224,7 +224,7 @@ class UtilsValidator:
|
|
|
224
224
|
if len(self.oli.tag_value_sets[tag_id]) < 100:
|
|
225
225
|
print(f"Please use a list of values from the predefined value_set for {tag_id}: {self.oli.tag_value_sets[tag_id]}")
|
|
226
226
|
else:
|
|
227
|
-
print(f"Please use a list of values from the predefined value_set for {tag_id}:
|
|
227
|
+
print(f"Please use a list of values from the predefined value_set for {tag_id}: oli.tag_value_sets['{tag_id}']")
|
|
228
228
|
|
|
229
229
|
def validate_ref_uid(self, ref_uid: str) -> bool:
|
|
230
230
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: oli-python
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.4
|
|
4
4
|
Summary: Python SDK for interacting with the Open Labels Initiative; A standard, registry and trust layer for EVM address labels.
|
|
5
5
|
Home-page: https://github.com/openlabelsinitiative/oli-python
|
|
6
6
|
Author: Lorenz Lehmann
|
|
@@ -15,6 +15,7 @@ Requires-Python: >=3.9
|
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
Requires-Dist: web3>=6.0.0
|
|
17
17
|
Requires-Dist: PyYAML>=6.0.0
|
|
18
|
+
Requires-Dist: networkx>=3.4.2
|
|
18
19
|
Dynamic: author
|
|
19
20
|
Dynamic: author-email
|
|
20
21
|
Dynamic: classifier
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="oli-python",
|
|
8
|
-
version="2.0.
|
|
8
|
+
version="2.0.4",
|
|
9
9
|
author="Lorenz Lehmann",
|
|
10
10
|
author_email="lorenz@growthepie.com",
|
|
11
11
|
description="Python SDK for interacting with the Open Labels Initiative; A standard, registry and trust layer for EVM address labels.",
|
|
@@ -24,6 +24,7 @@ setup(
|
|
|
24
24
|
python_requires='>=3.9',
|
|
25
25
|
install_requires=[
|
|
26
26
|
'web3>=6.0.0',
|
|
27
|
-
'PyYAML>=6.0.0'
|
|
27
|
+
'PyYAML>=6.0.0',
|
|
28
|
+
'networkx>=3.4.2'
|
|
28
29
|
]
|
|
29
30
|
)
|
|
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
|