pyetp 0.0.44__tar.gz → 0.0.45__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.
- {pyetp-0.0.44/src/pyetp.egg-info → pyetp-0.0.45}/PKG-INFO +6 -2
- {pyetp-0.0.44 → pyetp-0.0.45}/pyproject.toml +5 -1
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/_version.py +3 -3
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/client.py +6 -13
- {pyetp-0.0.44 → pyetp-0.0.45/src/pyetp.egg-info}/PKG-INFO +6 -2
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp.egg-info/requires.txt +1 -1
- {pyetp-0.0.44 → pyetp-0.0.45}/CONTRIBUTING.md +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/LICENSE.md +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/MANIFEST.in +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/README.md +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/SECURITY.md +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/setup.cfg +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/__init__.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/config.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/resqml_objects.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/types.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/uri.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/utils_arrays.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/utils_xml.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp.egg-info/SOURCES.txt +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp.egg-info/dependency_links.txt +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp.egg-info/top_level.txt +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/__init__.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/epc_readers.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/parsers.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/serializers.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/v201/__init__.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/v201/generated.py +0 -0
- {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/v201/utils.py +0 -0
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyetp
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.45
|
|
4
4
|
Summary: Interface with OSDU RDDMS using ETP protocol
|
|
5
5
|
Author-email: Adam Cheng <52572642+adamchengtkc@users.noreply.github.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: homepage, https://github.com/equinor/pyetp
|
|
8
8
|
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
9
13
|
Requires-Python: >=3.10
|
|
10
14
|
Description-Content-Type: text/markdown
|
|
11
15
|
License-File: LICENSE.md
|
|
12
|
-
Requires-Dist: numpy>=
|
|
16
|
+
Requires-Dist: numpy>=1.26.0
|
|
13
17
|
Requires-Dist: websockets>=15.0
|
|
14
18
|
Requires-Dist: lxml>=4.9.4
|
|
15
19
|
Requires-Dist: pydantic>=1.10
|
|
@@ -14,9 +14,13 @@ readme = "README.md"
|
|
|
14
14
|
license = "Apache-2.0"
|
|
15
15
|
classifiers = [
|
|
16
16
|
"Development Status :: 3 - Alpha",
|
|
17
|
+
"Programming Language :: Python :: 3.10",
|
|
18
|
+
"Programming Language :: Python :: 3.11",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Programming Language :: Python :: 3.13",
|
|
17
21
|
]
|
|
18
22
|
dependencies = [
|
|
19
|
-
"numpy >=
|
|
23
|
+
"numpy >= 1.26.0",
|
|
20
24
|
"websockets >= 15.0",
|
|
21
25
|
"lxml >=4.9.4",
|
|
22
26
|
"pydantic >= 1.10",
|
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.0.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 0,
|
|
31
|
+
__version__ = version = '0.0.45'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 0, 45)
|
|
33
33
|
|
|
34
|
-
__commit_id__ = commit_id = '
|
|
34
|
+
__commit_id__ = commit_id = 'gef277bc08'
|
|
@@ -1506,16 +1506,9 @@ async def etp_persistent_connect(
|
|
|
1506
1506
|
max_size=max_message_size,
|
|
1507
1507
|
additional_headers=additional_headers,
|
|
1508
1508
|
):
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
yield etp_client
|
|
1516
|
-
except websockets.ConnectionClosed as e:
|
|
1517
|
-
logger.info(
|
|
1518
|
-
f"Websockets connection closed with message '{e}'. Starting new "
|
|
1519
|
-
"connection"
|
|
1520
|
-
)
|
|
1521
|
-
continue
|
|
1509
|
+
async with ETPClient(
|
|
1510
|
+
ws=ws,
|
|
1511
|
+
etp_timeout=etp_timeout,
|
|
1512
|
+
max_message_size=max_message_size,
|
|
1513
|
+
) as etp_client:
|
|
1514
|
+
yield etp_client
|
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyetp
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.45
|
|
4
4
|
Summary: Interface with OSDU RDDMS using ETP protocol
|
|
5
5
|
Author-email: Adam Cheng <52572642+adamchengtkc@users.noreply.github.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: homepage, https://github.com/equinor/pyetp
|
|
8
8
|
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
9
13
|
Requires-Python: >=3.10
|
|
10
14
|
Description-Content-Type: text/markdown
|
|
11
15
|
License-File: LICENSE.md
|
|
12
|
-
Requires-Dist: numpy>=
|
|
16
|
+
Requires-Dist: numpy>=1.26.0
|
|
13
17
|
Requires-Dist: websockets>=15.0
|
|
14
18
|
Requires-Dist: lxml>=4.9.4
|
|
15
19
|
Requires-Dist: pydantic>=1.10
|
|
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
|