Skip to main content

No project description provided

Project description

Deltalake2DB

This is a simple project that uses Metadata from deltalake package to provide methods to read Delta Lake Tables to either Polars or DuckDB with better Protocol Support as the main deltalake package.

Use with Duckdb

Install deltalake2db and duckdb using pip/poetry/whatever you use.

Then you can do like this:

from deltalake2db import get_sql_for_delta,

with duckdb.connect() as con:
    dt = DeltaTable("tests/data/faker2")
    sql = get_sql_for_delta(dt, duck_con=con) # get select statement
    print(sql)
    duckdb_create_view_for_delta(con, dt, "delta_table") # or let it create a view for you. will point to the data at this point in time

    con.execute("select * from delta_table").fetch_all()

If you'd like to manipulate you can use get_sql_for_delta_expr which returns a SqlGlot Object

Use with Polars

Install deltalake2db and polars using pip/poetry/whatever you use.

dt = DeltaTable("tests/data/faker2")
from deltalake2db import polars_scan_delta
lazy_df = polars_scan_delta(dt)
df = lazy_df.collect()

Protocol Support

  • Column Mapping
  • Almost Data Types, including Structs/Lists, Map yet to be done
  • Test data types, including datetime
  • Deletion Vectors

In case there is an unsupported DeltaLake Feature, this will just throw DeltaProtocolError as does delta-rs

Cloud Support

For now, only az:// Url's for Azure are tested and supported in DuckDB. For polars it's a lot easier, since polars just uses object_store create, so it should just work.

Looking for something different? :)

We also have the following projects around deltalake:

Or projects from other people:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deltalake2db-0.3.7.tar.gz (9.6 kB view details)

Uploaded Source

Built Distribution

deltalake2db-0.3.7-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

File details

Details for the file deltalake2db-0.3.7.tar.gz.

File metadata

  • Download URL: deltalake2db-0.3.7.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for deltalake2db-0.3.7.tar.gz
Algorithm Hash digest
SHA256 b3c96a2b0b08096e0e80842fd41c08ef4bdadf924d7bec6ffaa173132f962860
MD5 2e993036a8d6b87699343c74f64d7466
BLAKE2b-256 501dc2c5c7bc2bb0ba088d718c62ae2fd0763533b8f3d2ab645672dfdba234ec

See more details on using hashes here.

File details

Details for the file deltalake2db-0.3.7-py3-none-any.whl.

File metadata

  • Download URL: deltalake2db-0.3.7-py3-none-any.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for deltalake2db-0.3.7-py3-none-any.whl
Algorithm Hash digest
SHA256 7d28253fdb093834ab879ccca5484a61f4a9d810094b8ebc65dfe8813d85c8fb
MD5 292df5619d6708eaba4b67d614eb7bfb
BLAKE2b-256 23725ba190d5901a6aa54d04b5e5861f5751fb9df37d2456bcfa419eb2113062

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page