ducklake-delta-exporter 0.1.3__tar.gz → 0.1.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ducklake-delta-exporter
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: A utility to export DuckLake database metadata to Delta Lake transaction logs.
5
5
  Home-page: https://github.com/djouallah/ducklake_delta_exporter
6
6
  Author: mim
@@ -28,7 +28,7 @@ Dynamic: summary
28
28
 
29
29
  A Python package for exporting DuckLake snapshots as Delta Lake checkpoint files, enabling compatibility with Delta Lake readers, support local path, s3 and gcs, for onelake use mounted storage as azure storage is not supported
30
30
 
31
- this is just a fun project
31
+ this is just a fun project, please vote for a proper support in duckdb https://github.com/duckdb/duckdb-delta/issues/218
32
32
 
33
33
  ## Repository
34
34
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  A Python package for exporting DuckLake snapshots as Delta Lake checkpoint files, enabling compatibility with Delta Lake readers, support local path, s3 and gcs, for onelake use mounted storage as azure storage is not supported
4
4
 
5
- this is just a fun project
5
+ this is just a fun project, please vote for a proper support in duckdb https://github.com/duckdb/duckdb-delta/issues/218
6
6
 
7
7
  ## Repository
8
8
 
@@ -39,8 +39,6 @@ def get_latest_delta_checkpoint(con, table_id):
39
39
  """
40
40
  delta_checkpoint = con.execute(f""" SELECT count(snapshot_id) FROM ducklake_snapshot_changes
41
41
  where changes_made like '%:{table_id}' or changes_made like '%:{table_id},%' """).fetchone()[0]
42
- print(table_id)
43
- print(delta_checkpoint)
44
42
  return delta_checkpoint
45
43
 
46
44
  def get_file_modification_time(dummy_time):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ducklake-delta-exporter
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: A utility to export DuckLake database metadata to Delta Lake transaction logs.
5
5
  Home-page: https://github.com/djouallah/ducklake_delta_exporter
6
6
  Author: mim
@@ -28,7 +28,7 @@ Dynamic: summary
28
28
 
29
29
  A Python package for exporting DuckLake snapshots as Delta Lake checkpoint files, enabling compatibility with Delta Lake readers, support local path, s3 and gcs, for onelake use mounted storage as azure storage is not supported
30
30
 
31
- this is just a fun project
31
+ this is just a fun project, please vote for a proper support in duckdb https://github.com/duckdb/duckdb-delta/issues/218
32
32
 
33
33
  ## Repository
34
34
 
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
3
3
 
4
4
  setup(
5
5
  name='ducklake-delta-exporter',
6
- version='0.1.3',
6
+ version='0.1.4',
7
7
  packages=find_packages(),
8
8
  install_requires=['duckdb'],
9
9
  author='mim',