dbx-tools-postgres 0.6.78__tar.gz → 0.6.82__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.
- {dbx_tools_postgres-0.6.78 → dbx_tools_postgres-0.6.82}/PKG-INFO +11 -5
- {dbx_tools_postgres-0.6.78 → dbx_tools_postgres-0.6.82}/README.md +9 -3
- {dbx_tools_postgres-0.6.78 → dbx_tools_postgres-0.6.82}/pyproject.toml +2 -2
- {dbx_tools_postgres-0.6.78 → dbx_tools_postgres-0.6.82}/pyproject.toml.orig +2 -2
- {dbx_tools_postgres-0.6.78 → dbx_tools_postgres-0.6.82}/src/dbx_tools/postgres/__init__.py +0 -0
- {dbx_tools_postgres-0.6.78 → dbx_tools_postgres-0.6.82}/src/dbx_tools/postgres/address.py +0 -0
- {dbx_tools_postgres-0.6.78 → dbx_tools_postgres-0.6.82}/src/dbx_tools/postgres/advisory_lock.py +0 -0
- {dbx_tools_postgres-0.6.78 → dbx_tools_postgres-0.6.82}/src/dbx_tools/postgres/engine.py +0 -0
- {dbx_tools_postgres-0.6.78 → dbx_tools_postgres-0.6.82}/src/dbx_tools/postgres/topic_bus.py +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dbx-tools-postgres
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.82
|
|
4
4
|
Summary: WorkspaceClient-backed Lakebase Postgres resolution, SQLAlchemy engines, advisory locks, and LISTEN/NOTIFY topic bus
|
|
5
5
|
Requires-Dist: asyncpg>=0.30,<1
|
|
6
6
|
Requires-Dist: databricks-sdk>=0.63.0,<1
|
|
7
7
|
Requires-Dist: greenlet>=3.2,<4
|
|
8
|
-
Requires-Dist: dbx-tools-core==0.6.
|
|
8
|
+
Requires-Dist: dbx-tools-core==0.6.82
|
|
9
9
|
Requires-Dist: psycopg[binary]>=3.2.9,<4
|
|
10
10
|
Requires-Dist: sqlalchemy>=2.0.41,<3
|
|
11
11
|
Requires-Python: >=3.10
|
|
@@ -16,10 +16,16 @@ Description-Content-Type: text/markdown
|
|
|
16
16
|
|
|
17
17
|
Python Lakebase/Postgres connection setup, advisory locks, and topic fan-out for
|
|
18
18
|
services that already hold a Databricks `WorkspaceClient`. This package is
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
the Python counterpart to `@dbx-tools/postgres` plus `@dbx-tools/appkit`'s
|
|
20
|
+
address parsing.
|
|
21
21
|
|
|
22
|
-
Install
|
|
22
|
+
Install from PyPI:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pip install dbx-tools-postgres
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
To install the current `main` branch directly from the repository instead:
|
|
23
29
|
|
|
24
30
|
```bash
|
|
25
31
|
pip install "dbx-tools-postgres @ git+https://github.com/reggie-db/dbx-tools.git@main#subdirectory=packages/py/postgres"
|
|
@@ -2,10 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
Python Lakebase/Postgres connection setup, advisory locks, and topic fan-out for
|
|
4
4
|
services that already hold a Databricks `WorkspaceClient`. This package is
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
the Python counterpart to `@dbx-tools/postgres` plus `@dbx-tools/appkit`'s
|
|
6
|
+
address parsing.
|
|
7
7
|
|
|
8
|
-
Install
|
|
8
|
+
Install from PyPI:
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install dbx-tools-postgres
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
To install the current `main` branch directly from the repository instead:
|
|
9
15
|
|
|
10
16
|
```bash
|
|
11
17
|
pip install "dbx-tools-postgres @ git+https://github.com/reggie-db/dbx-tools.git@main#subdirectory=packages/py/postgres"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "dbx-tools-postgres"
|
|
3
|
-
version = "0.6.
|
|
3
|
+
version = "0.6.82"
|
|
4
4
|
description = "WorkspaceClient-backed Lakebase Postgres resolution, SQLAlchemy engines, advisory locks, and LISTEN/NOTIFY topic bus"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -8,7 +8,7 @@ dependencies = [
|
|
|
8
8
|
"asyncpg>=0.30,<1",
|
|
9
9
|
"databricks-sdk>=0.63.0,<1",
|
|
10
10
|
"greenlet>=3.2,<4",
|
|
11
|
-
"dbx-tools-core==0.6.
|
|
11
|
+
"dbx-tools-core==0.6.82",
|
|
12
12
|
"psycopg[binary]>=3.2.9,<4",
|
|
13
13
|
"sqlalchemy>=2.0.41,<3",
|
|
14
14
|
]
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[project]
|
|
4
4
|
name = "dbx-tools-postgres"
|
|
5
|
-
version = "0.6.
|
|
5
|
+
version = "0.6.82"
|
|
6
6
|
description = "WorkspaceClient-backed Lakebase Postgres resolution, SQLAlchemy engines, advisory locks, and LISTEN/NOTIFY topic bus"
|
|
7
7
|
readme = "README.md"
|
|
8
8
|
requires-python = ">=3.10"
|
|
@@ -10,7 +10,7 @@ dependencies = [
|
|
|
10
10
|
"asyncpg>=0.30,<1",
|
|
11
11
|
"databricks-sdk>=0.63.0,<1",
|
|
12
12
|
"greenlet>=3.2,<4",
|
|
13
|
-
"dbx-tools-core==0.6.
|
|
13
|
+
"dbx-tools-core==0.6.82",
|
|
14
14
|
"psycopg[binary]>=3.2.9,<4",
|
|
15
15
|
"sqlalchemy>=2.0.41,<3"
|
|
16
16
|
]
|
|
File without changes
|
|
File without changes
|
{dbx_tools_postgres-0.6.78 → dbx_tools_postgres-0.6.82}/src/dbx_tools/postgres/advisory_lock.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|