pyetp 0.0.30__py3-none-any.whl → 0.0.32__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.
pyetp/utils_xml.py
CHANGED
|
@@ -310,7 +310,7 @@ def create_resqml_property(prop_title, continuous, indexable_element, uns, epc,
|
|
|
310
310
|
title=uns.citation.title,
|
|
311
311
|
uuid=uns.uuid,
|
|
312
312
|
),
|
|
313
|
-
property_kind= propertykind0 if pre_existing_propertykind is
|
|
313
|
+
property_kind= propertykind0 if pre_existing_propertykind is not None else ro.LocalPropertyKind(
|
|
314
314
|
local_property_kind=ro.DataObjectReference(
|
|
315
315
|
content_type=f"application/x-resqml+xml;version={schema_version};type={get_data_object_type(propertykind0)}",
|
|
316
316
|
title=propertykind0.citation.title,
|
|
@@ -339,7 +339,7 @@ def create_resqml_property(prop_title, continuous, indexable_element, uns, epc,
|
|
|
339
339
|
title=uns.citation.title,
|
|
340
340
|
uuid=uns.uuid,
|
|
341
341
|
),
|
|
342
|
-
property_kind=propertykind0 if pre_existing_propertykind is
|
|
342
|
+
property_kind=propertykind0 if pre_existing_propertykind is not None else ro.LocalPropertyKind(
|
|
343
343
|
local_property_kind=ro.DataObjectReference(
|
|
344
344
|
content_type=f"application/x-resqml+xml;version={schema_version};type={get_data_object_type(propertykind0)}",
|
|
345
345
|
title=propertykind0.citation.title,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pyetp
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.32
|
|
4
4
|
Summary: Interface with OSDU RDDMS using ETP protocol
|
|
5
5
|
Author: Adam Cheng
|
|
6
6
|
Author-email: 52572642+adamchengtkc@users.noreply.github.com
|
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
15
|
Requires-Dist: async-lru (>=2.0.4,<3.0.0)
|
|
16
16
|
Requires-Dist: async-timeout (>=5.0,<6.0) ; python_version < "3.11"
|
|
17
|
-
Requires-Dist: etpproto (
|
|
17
|
+
Requires-Dist: etpproto (<1.0.7)
|
|
18
18
|
Requires-Dist: lxml (>=4.9.4,<6.0)
|
|
19
19
|
Requires-Dist: numpy (>=1.26.3,<2.0.0)
|
|
20
20
|
Requires-Dist: pyarrow (>=15.0.0,<16.0.0)
|
|
@@ -7,8 +7,8 @@ pyetp/types.py,sha256=E-CvzI74kiQ52J42DQ-5wGUC84l3-glYs3NQ36HIs1I,2559
|
|
|
7
7
|
pyetp/uri.py,sha256=57wTOH7EAGXluDiGxIe34DAiftPR91jEnbRB5thaG8k,2963
|
|
8
8
|
pyetp/utils.py,sha256=WxfG13bItprl457H3EEsckF1uDwF-hzPhVG7QRX0LB8,158
|
|
9
9
|
pyetp/utils_arrays.py,sha256=HHhw23La4SG7UJyd5Q_OJ5WlMq98QpwHBk553YyyYOk,4331
|
|
10
|
-
pyetp/utils_xml.py,sha256=
|
|
11
|
-
pyetp-0.0.
|
|
12
|
-
pyetp-0.0.
|
|
13
|
-
pyetp-0.0.
|
|
14
|
-
pyetp-0.0.
|
|
10
|
+
pyetp/utils_xml.py,sha256=mBnWERnlMEjoPb6D9EYalkUShDvEOvo7zxw-Hz0dJ1A,33647
|
|
11
|
+
pyetp-0.0.32.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
12
|
+
pyetp-0.0.32.dist-info/METADATA,sha256=Lphp34-jililjgifmIKUeGwWgTDl8rRdkwoeWHBZvqE,2385
|
|
13
|
+
pyetp-0.0.32.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
14
|
+
pyetp-0.0.32.dist-info/RECORD,,
|
|
File without changes
|