lightweight-table-diff 0.1.0__tar.gz → 0.1.2__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.
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/PKG-INFO +2 -1
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/pyproject.toml +3 -2
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/adapters/__init__.py +3 -1
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/adapters/sav.py +1 -1
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff.egg-info/PKG-INFO +2 -1
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff.egg-info/requires.txt +1 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/README.md +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/setup.cfg +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/__init__.py +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/__main__.py +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/adapters/csv.py +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/adapters/hive_s3.py +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/adapters/parquet.py +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/config.py +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/core.py +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/dimensions.py +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/normalisers.py +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/runner.py +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff.egg-info/SOURCES.txt +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff.egg-info/dependency_links.txt +0 -0
- {lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff.egg-info/top_level.txt +0 -0
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lightweight-table-diff
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Cell-level table diffing for Polars
|
|
5
5
|
Requires-Python: >=3.11.1
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
7
|
Requires-Dist: polars>=1.38
|
|
8
8
|
Requires-Dist: polars-checkpoint>=0.1.2
|
|
9
|
+
Requires-Dist: pyyaml>=6.0.3
|
|
9
10
|
Provides-Extra: spss
|
|
10
11
|
Requires-Dist: pyreadstat; extra == "spss"
|
|
11
12
|
Provides-Extra: hive
|
|
@@ -4,13 +4,14 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "lightweight-table-diff"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.2"
|
|
8
8
|
description = "Cell-level table diffing for Polars"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11.1"
|
|
11
11
|
dependencies = [
|
|
12
12
|
"polars>=1.38",
|
|
13
13
|
"polars-checkpoint>=0.1.2",
|
|
14
|
+
"pyyaml>=6.0.3",
|
|
14
15
|
]
|
|
15
16
|
|
|
16
17
|
[project.optional-dependencies]
|
|
@@ -25,4 +26,4 @@ hive = [
|
|
|
25
26
|
package-dir = {"" = "src"}
|
|
26
27
|
|
|
27
28
|
[tool.setuptools.packages.find]
|
|
28
|
-
where = ["src"]
|
|
29
|
+
where = ["src"]
|
|
@@ -25,7 +25,9 @@ def load(source_def: dict, **context: Any) -> pl.LazyFrame:
|
|
|
25
25
|
from .csv import load_csv # noqa: E402
|
|
26
26
|
from .parquet import load_parquet # noqa: E402
|
|
27
27
|
from .sav import load_sav # noqa: E402
|
|
28
|
+
from .hive_s3 import load_hive # noqa: E402
|
|
28
29
|
|
|
29
30
|
register("parquet", load_parquet)
|
|
30
31
|
register("csv", load_csv)
|
|
31
|
-
register("sav", load_sav)
|
|
32
|
+
register("sav", load_sav)
|
|
33
|
+
register("hive", load_hive)
|
|
@@ -11,7 +11,7 @@ def load_sav(source_def: dict) -> pl.LazyFrame:
|
|
|
11
11
|
import pyreadstat
|
|
12
12
|
except ImportError:
|
|
13
13
|
raise ImportError(
|
|
14
|
-
"pyreadstat is required for .sav files: pip install
|
|
14
|
+
"pyreadstat is required for .sav files: pip install 'lightweight-table-diff[spss]'"
|
|
15
15
|
) from None
|
|
16
16
|
|
|
17
17
|
pdf, _meta = pyreadstat.read_sav(
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lightweight-table-diff
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Cell-level table diffing for Polars
|
|
5
5
|
Requires-Python: >=3.11.1
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
7
|
Requires-Dist: polars>=1.38
|
|
8
8
|
Requires-Dist: polars-checkpoint>=0.1.2
|
|
9
|
+
Requires-Dist: pyyaml>=6.0.3
|
|
9
10
|
Provides-Extra: spss
|
|
10
11
|
Requires-Dist: pyreadstat; extra == "spss"
|
|
11
12
|
Provides-Extra: hive
|
|
File without changes
|
|
File without changes
|
{lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/__init__.py
RENAMED
|
File without changes
|
{lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/__main__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/config.py
RENAMED
|
File without changes
|
{lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/core.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{lightweight_table_diff-0.1.0 → lightweight_table_diff-0.1.2}/src/lightweight_table_diff/runner.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|