PyStellarDB 0.13.4__py2.py3-none-any.whl → 0.13.5__py2.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.
- {PyStellarDB-0.13.4.dist-info → PyStellarDB-0.13.5.dist-info}/METADATA +1 -1
- PyStellarDB-0.13.5.dist-info/RECORD +10 -0
- pystellardb/_version.py +3 -3
- pystellardb/graph_types.py +2 -2
- PyStellarDB-0.13.4.dist-info/RECORD +0 -10
- {PyStellarDB-0.13.4.dist-info → PyStellarDB-0.13.5.dist-info}/LICENSE +0 -0
- {PyStellarDB-0.13.4.dist-info → PyStellarDB-0.13.5.dist-info}/WHEEL +0 -0
- {PyStellarDB-0.13.4.dist-info → PyStellarDB-0.13.5.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,10 @@
|
|
1
|
+
pystellardb/__init__.py,sha256=JOl41NviMN-qDV0Z8ZPmhNIxvgyauGGJHdB4A-8MhqM,93
|
2
|
+
pystellardb/_version.py,sha256=cwBvUjWVT20dAp04I_QQFlk81VsfhUWKUfT2FKtmxhk,498
|
3
|
+
pystellardb/graph_types.py,sha256=XbtPebhaRV7OimW-GxFJGSOcp-OnzWrlIe9M7Xv3sbU,14032
|
4
|
+
pystellardb/stellar_hive.py,sha256=xVnONjG03CLNwW3dymR2ZqXiEUvcMlIvPIOxzyoDFfE,15067
|
5
|
+
pystellardb/stellar_rdd.py,sha256=TYwsWYeCxfOliGq1kV3ArNXdye55cKWZF7s9M9nDdt4,1324
|
6
|
+
PyStellarDB-0.13.5.dist-info/LICENSE,sha256=1qDFxrywejs7xNBfOr6T-7lOuqDgSNIES77kTYege3w,560
|
7
|
+
PyStellarDB-0.13.5.dist-info/METADATA,sha256=Lg8U6us8NJ-hlFQEwaZDsfGZOgvPKnChM7lY6HtTt3s,9390
|
8
|
+
PyStellarDB-0.13.5.dist-info/WHEEL,sha256=_4XEmVmaBFWtekSGrbfOGNjC2I5lUr0lZSRblBllIFA,109
|
9
|
+
PyStellarDB-0.13.5.dist-info/top_level.txt,sha256=DRk-SeGVCdVAzv2CwFmdu75Yo7DgjUA3Hpu-9l8qPuU,12
|
10
|
+
PyStellarDB-0.13.5.dist-info/RECORD,,
|
pystellardb/_version.py
CHANGED
@@ -8,11 +8,11 @@ import json
|
|
8
8
|
|
9
9
|
version_json = '''
|
10
10
|
{
|
11
|
-
"date": "2024-
|
11
|
+
"date": "2024-12-17T19:30:54+0800",
|
12
12
|
"dirty": false,
|
13
13
|
"error": null,
|
14
|
-
"full-revisionid": "
|
15
|
-
"version": "0.13.
|
14
|
+
"full-revisionid": "edb05dd3d51f0a5af260e6cd442163058a81db20",
|
15
|
+
"version": "0.13.5"
|
16
16
|
}
|
17
17
|
''' # END VERSION_JSON
|
18
18
|
|
pystellardb/graph_types.py
CHANGED
@@ -241,7 +241,7 @@ class Edge(GraphElement):
|
|
241
241
|
if 'startKey' not in m:
|
242
242
|
raise ValueError("Could not find start node entity key in JSON")
|
243
243
|
|
244
|
-
if schema.getVersion()
|
244
|
+
if schema.getVersion() >= 18:
|
245
245
|
startUid = prop_dict['__srcuid']
|
246
246
|
startLabelIdx = Vertex.parseLabelIdxFromRKV18(m['startKey'])
|
247
247
|
else:
|
@@ -262,7 +262,7 @@ class Edge(GraphElement):
|
|
262
262
|
if 'endKey' not in m:
|
263
263
|
raise ValueError("Could not find end node entity key in JSON")
|
264
264
|
|
265
|
-
if schema.getVersion()
|
265
|
+
if schema.getVersion() >= 18:
|
266
266
|
endUid = prop_dict['__dstuid']
|
267
267
|
endLabelIdx = Vertex.parseLabelIdxFromRKV18(m['endKey'])
|
268
268
|
else:
|
@@ -1,10 +0,0 @@
|
|
1
|
-
pystellardb/__init__.py,sha256=JOl41NviMN-qDV0Z8ZPmhNIxvgyauGGJHdB4A-8MhqM,93
|
2
|
-
pystellardb/_version.py,sha256=YehYhtGB33qbbUg3YuBZDx-KkufC1FUtE3yG-4znzjg,498
|
3
|
-
pystellardb/graph_types.py,sha256=o2iz4tOOyMxsEJja4dj4NL-48UG1bkdEgrNDPwYJum0,14032
|
4
|
-
pystellardb/stellar_hive.py,sha256=xVnONjG03CLNwW3dymR2ZqXiEUvcMlIvPIOxzyoDFfE,15067
|
5
|
-
pystellardb/stellar_rdd.py,sha256=TYwsWYeCxfOliGq1kV3ArNXdye55cKWZF7s9M9nDdt4,1324
|
6
|
-
PyStellarDB-0.13.4.dist-info/LICENSE,sha256=1qDFxrywejs7xNBfOr6T-7lOuqDgSNIES77kTYege3w,560
|
7
|
-
PyStellarDB-0.13.4.dist-info/METADATA,sha256=TNiFpy7JHomMKzYSf_8W3A1_VfDwjL0-444JsNYccWE,9390
|
8
|
-
PyStellarDB-0.13.4.dist-info/WHEEL,sha256=_4XEmVmaBFWtekSGrbfOGNjC2I5lUr0lZSRblBllIFA,109
|
9
|
-
PyStellarDB-0.13.4.dist-info/top_level.txt,sha256=DRk-SeGVCdVAzv2CwFmdu75Yo7DgjUA3Hpu-9l8qPuU,12
|
10
|
-
PyStellarDB-0.13.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|