corium-postgres 0.1.78__py3-none-win_amd64.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.
@@ -0,0 +1,22 @@
1
+ """Path provider for the official Corium PostgreSQL storage plugin."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from pathlib import Path
6
+
7
+ _LIBRARY_NAMES = (
8
+ "libcorium_store_postgres.so",
9
+ "libcorium_store_postgres.dylib",
10
+ "corium_store_postgres.dll",
11
+ )
12
+
13
+
14
+ def plugin_path() -> Path:
15
+ """Return the installed storage plugin path."""
16
+
17
+ package = Path(__file__).resolve().parent
18
+ for name in _LIBRARY_NAMES:
19
+ library = package / name
20
+ if library.is_file():
21
+ return library
22
+ raise RuntimeError("the corium-postgres native library is missing")
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.2
2
+ Name: corium-postgres
3
+ Version: 0.1.78
4
+ Summary: PostgreSQL direct-storage plugin for the Corium Python client
5
+ Description-Content-Type: text/markdown
6
+ License: Apache-2.0 OR MIT
7
+ Requires-Python: >=3.10
8
+ Requires-Dist: corium ==0.1.78
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Project-URL: Documentation, https://github.com/csm/corium/tree/main/clients/python
15
+ Project-URL: Issues, https://github.com/csm/corium/issues
16
+ Project-URL: Repository, https://github.com/csm/corium
17
+
18
+ # corium-postgres
19
+
20
+ PostgreSQL direct-storage plugin for the Corium Python client.
@@ -0,0 +1,6 @@
1
+ corium_postgres/__init__.py,sha256=m9-tDzwrv1uN53691z_YIEB0BXHp-kQe63yx4R6pBOE,605
2
+ corium_postgres/corium_store_postgres.dll,sha256=8rCRHyvOIwS-EodZB8iqTlPfBNXXx-58eDdopcFdL_g,4895744
3
+ corium_postgres-0.1.78.dist-info/METADATA,sha256=QsZgPmbwgqMvrf-5BVr4Na3_6TmeOUeB5prBLi3pKR4,784
4
+ corium_postgres-0.1.78.dist-info/WHEEL,sha256=t41CuTKMRZ3EZNBqeWaiDRwIQx8Y2jGUViLxe6yjYfY,104
5
+ corium_postgres-0.1.78.dist-info/entry_points.txt,sha256=cxJz32O5tY_PwINKsL6DgyqPTkF-p_xqoTyhBHV8BDw,62
6
+ corium_postgres-0.1.78.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: corium-build-plugin-wheels
3
+ Root-Is-Purelib: false
4
+ Tag: py3-none-win_amd64
@@ -0,0 +1,2 @@
1
+ [corium.store_plugins]
2
+ postgres = corium_postgres:plugin_path