deltalake


Namedeltalake JSON
Version 0.16.3 PyPI version JSON
download
home_pagehttps://github.com/delta-io/delta-rs
SummaryNative Delta Lake Python binding based on delta-rs with Pandas integration
upload_time2024-03-25 20:56:03
maintainerNone
docs_urlNone
authorQingping Hou <dave2008713@gmail.com>, Will Jones <willjones127@gmail.com>
requires_python>=3.8
licenseApache-2.0
keywords deltalake delta datalake pandas arrow
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Deltalake-python

[![PyPI](https://img.shields.io/pypi/v/deltalake.svg?style=flat-square)](https://pypi.org/project/deltalake/)
[![userdoc](https://img.shields.io/badge/docs-user-blue)](https://delta-io.github.io/delta-rs/)
[![apidoc](https://img.shields.io/badge/docs-api-blue)](https://delta-io.github.io/delta-rs/api/delta_table/)

Native [Delta Lake](https://delta.io/) Python binding based on
[delta-rs](https://github.com/delta-io/delta-rs) with
[Pandas](https://pandas.pydata.org/) integration.


## Example

```python
from deltalake import DeltaTable
dt = DeltaTable("../rust/tests/data/delta-0.2.0")
dt.version()
3
dt.files()
['part-00000-cb6b150b-30b8-4662-ad28-ff32ddab96d2-c000.snappy.parquet',
 'part-00000-7c2deba3-1994-4fb8-bc07-d46c948aa415-c000.snappy.parquet',
 'part-00001-c373a5bd-85f0-4758-815e-7eb62007a15c-c000.snappy.parquet']
```

See the [user guide](https://delta-io.github.io/delta-rs/usage/installation/) for more examples.

## Installation

```bash
pip install deltalake
```

NOTE: official binary wheels are linked against openssl statically for remote
objection store communication. Please file Github issue to request for critical
openssl upgrade.


## Build custom wheels

Sometimes you may wish to build custom wheels. Maybe you want to try out some
unreleased features. Or maybe you want to tweak the optimization of the Rust code.

To compile the package, you will need the Rust compiler and [maturin](https://github.com/PyO3/maturin):

```sh
curl https://sh.rustup.rs -sSf | sh -s
pip install maturin
```

Then you can build wheels for your own platform like so:

```sh
maturin build --release --out wheels
```

For a build that is optimized for the system you are on (but sacrificing portability):

```sh
RUSTFLAGS="-C target-cpu=native" maturin build --release --out wheels
```

#### Cross compilation

The above command only works for your current platform. To create wheels for other
platforms, you'll need to cross compile. Cross compilation requires installing
two additional components: to cross compile Rust code, you will need to install
the target with `rustup`; to cross compile the Python bindings, you will need
to install `ziglang`.

The following example is for manylinux2014. Other targets will require different
Rust `target` and Python `compatibility` tags.

```sh
rustup target add x86_64-unknown-linux-gnu
pip install ziglang
```

Then you can build the wheel with:

```sh
maturin build --release --zig \
    --target x86_64-unknown-linux-gnu \
    --compatibility manylinux2014 \
    --out wheels
```

If you expect to only run on more modern system, you can set a newer `target-cpu`
flag to Rust and use a newer compatibility tag for Linux. For example, here
we set compatibility with CPUs newer than Haswell (2013) and Linux OS with 
glibc version of at least 2.24:

```sh
RUSTFLAGS="-C target-cpu=haswell" maturin build --release --zig \
    --target x86_64-unknown-linux-gnu \
    --compatibility manylinux_2_24 \
    --out wheels
```

See note about `RUSTFLAGS` from [the arrow-rs readme](https://github.com/apache/arrow-rs/blob/master/arrow/README.md#performance-tips).


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/delta-io/delta-rs",
    "name": "deltalake",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "deltalake, delta, datalake, pandas, arrow",
    "author": "Qingping Hou <dave2008713@gmail.com>, Will Jones <willjones127@gmail.com>",
    "author_email": "Qingping Hou <dave2008713@gmail.com>, Will Jones <willjones127@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/b6/2e/18684e7a1b077fd99cd91fcc0fa92885cac7f49ead0258dce5b95801077d/deltalake-0.16.3.tar.gz",
    "platform": null,
    "description": "# Deltalake-python\n\n[![PyPI](https://img.shields.io/pypi/v/deltalake.svg?style=flat-square)](https://pypi.org/project/deltalake/)\n[![userdoc](https://img.shields.io/badge/docs-user-blue)](https://delta-io.github.io/delta-rs/)\n[![apidoc](https://img.shields.io/badge/docs-api-blue)](https://delta-io.github.io/delta-rs/api/delta_table/)\n\nNative [Delta Lake](https://delta.io/) Python binding based on\n[delta-rs](https://github.com/delta-io/delta-rs) with\n[Pandas](https://pandas.pydata.org/) integration.\n\n\n## Example\n\n```python\nfrom deltalake import DeltaTable\ndt = DeltaTable(\"../rust/tests/data/delta-0.2.0\")\ndt.version()\n3\ndt.files()\n['part-00000-cb6b150b-30b8-4662-ad28-ff32ddab96d2-c000.snappy.parquet',\n 'part-00000-7c2deba3-1994-4fb8-bc07-d46c948aa415-c000.snappy.parquet',\n 'part-00001-c373a5bd-85f0-4758-815e-7eb62007a15c-c000.snappy.parquet']\n```\n\nSee the [user guide](https://delta-io.github.io/delta-rs/usage/installation/) for more examples.\n\n## Installation\n\n```bash\npip install deltalake\n```\n\nNOTE: official binary wheels are linked against openssl statically for remote\nobjection store communication. Please file Github issue to request for critical\nopenssl upgrade.\n\n\n## Build custom wheels\n\nSometimes you may wish to build custom wheels. Maybe you want to try out some\nunreleased features. Or maybe you want to tweak the optimization of the Rust code.\n\nTo compile the package, you will need the Rust compiler and [maturin](https://github.com/PyO3/maturin):\n\n```sh\ncurl https://sh.rustup.rs -sSf | sh -s\npip install maturin\n```\n\nThen you can build wheels for your own platform like so:\n\n```sh\nmaturin build --release --out wheels\n```\n\nFor a build that is optimized for the system you are on (but sacrificing portability):\n\n```sh\nRUSTFLAGS=\"-C target-cpu=native\" maturin build --release --out wheels\n```\n\n#### Cross compilation\n\nThe above command only works for your current platform. To create wheels for other\nplatforms, you'll need to cross compile. Cross compilation requires installing\ntwo additional components: to cross compile Rust code, you will need to install\nthe target with `rustup`; to cross compile the Python bindings, you will need\nto install `ziglang`.\n\nThe following example is for manylinux2014. Other targets will require different\nRust `target` and Python `compatibility` tags.\n\n```sh\nrustup target add x86_64-unknown-linux-gnu\npip install ziglang\n```\n\nThen you can build the wheel with:\n\n```sh\nmaturin build --release --zig \\\n    --target x86_64-unknown-linux-gnu \\\n    --compatibility manylinux2014 \\\n    --out wheels\n```\n\nIf you expect to only run on more modern system, you can set a newer `target-cpu`\nflag to Rust and use a newer compatibility tag for Linux. For example, here\nwe set compatibility with CPUs newer than Haswell (2013) and Linux OS with \nglibc version of at least 2.24:\n\n```sh\nRUSTFLAGS=\"-C target-cpu=haswell\" maturin build --release --zig \\\n    --target x86_64-unknown-linux-gnu \\\n    --compatibility manylinux_2_24 \\\n    --out wheels\n```\n\nSee note about `RUSTFLAGS` from [the arrow-rs readme](https://github.com/apache/arrow-rs/blob/master/arrow/README.md#performance-tips).\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Native Delta Lake Python binding based on delta-rs with Pandas integration",
    "version": "0.16.3",
    "project_urls": {
        "Homepage": "https://github.com/delta-io/delta-rs",
        "documentation": "https://delta-io.github.io/delta-rs/",
        "repository": "https://github.com/delta-io/delta-rs/tree/main/python/"
    },
    "split_keywords": [
        "deltalake",
        " delta",
        " datalake",
        " pandas",
        " arrow"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a008e5eee850c1b2d3ce14a72cbebf4010d75579cdb6d6a2fe5b45709e497a18",
                "md5": "958c8d70ea45830a1f2e563d0519d59b",
                "sha256": "0de0cfe64aff4b41f8cc7a2b4acc59a1bfa7149afd2bdca5d48cac457e72622f"
            },
            "downloads": -1,
            "filename": "deltalake-0.16.3-cp38-abi3-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "958c8d70ea45830a1f2e563d0519d59b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 22024630,
            "upload_time": "2024-03-25T20:58:50",
            "upload_time_iso_8601": "2024-03-25T20:58:50.427550Z",
            "url": "https://files.pythonhosted.org/packages/a0/08/e5eee850c1b2d3ce14a72cbebf4010d75579cdb6d6a2fe5b45709e497a18/deltalake-0.16.3-cp38-abi3-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06fc9a898413c6ae2d09e8a133b3016d26a0267adedcdb122213267fd0a141c7",
                "md5": "60d853893d68bb880c0044764b232225",
                "sha256": "c9f7b039f9cd457480442f3e3de06e383f09e68306a20ae8acaf28b0d25f8529"
            },
            "downloads": -1,
            "filename": "deltalake-0.16.3-cp38-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "60d853893d68bb880c0044764b232225",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 20746541,
            "upload_time": "2024-03-25T21:02:23",
            "upload_time_iso_8601": "2024-03-25T21:02:23.089198Z",
            "url": "https://files.pythonhosted.org/packages/06/fc/9a898413c6ae2d09e8a133b3016d26a0267adedcdb122213267fd0a141c7/deltalake-0.16.3-cp38-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cac908472fbd745d4e4b5852226211ee63505d64c9f04ba8b113359aac923637",
                "md5": "249074b751e3bd647a4dbda0a41b0e55",
                "sha256": "cc00c0d208c5c6c5a89889712f1c8e74901b43b41ef1384e7bd186f9f9407a82"
            },
            "downloads": -1,
            "filename": "deltalake-0.16.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "249074b751e3bd647a4dbda0a41b0e55",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 24002832,
            "upload_time": "2024-03-25T21:08:59",
            "upload_time_iso_8601": "2024-03-25T21:08:59.502480Z",
            "url": "https://files.pythonhosted.org/packages/ca/c9/08472fbd745d4e4b5852226211ee63505d64c9f04ba8b113359aac923637/deltalake-0.16.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce0505734f2e4aafdaf41eda0c2f07612c3cada688c9647c1ce694dd0ea8a581",
                "md5": "5db5cc0811e665cd3784fbe2e3d22259",
                "sha256": "5112fb67ac7a630d47907a98f16eab1957e97a55b4fb593ffdfbbb96705aa202"
            },
            "downloads": -1,
            "filename": "deltalake-0.16.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5db5cc0811e665cd3784fbe2e3d22259",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 25436439,
            "upload_time": "2024-03-25T20:55:59",
            "upload_time_iso_8601": "2024-03-25T20:55:59.895513Z",
            "url": "https://files.pythonhosted.org/packages/ce/05/05734f2e4aafdaf41eda0c2f07612c3cada688c9647c1ce694dd0ea8a581/deltalake-0.16.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90f0b315c84063cfd846f735d2b65feec51b7b36d297f0836fa481823b634d85",
                "md5": "dcb987e39653a5d32f21b04cb0b1c535",
                "sha256": "a5861233d052960517cbfe57ab2d77fb79d8d87b1bf4a51f2c7ad11810c5d163"
            },
            "downloads": -1,
            "filename": "deltalake-0.16.3-cp38-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dcb987e39653a5d32f21b04cb0b1c535",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 22852021,
            "upload_time": "2024-03-25T21:05:12",
            "upload_time_iso_8601": "2024-03-25T21:05:12.939373Z",
            "url": "https://files.pythonhosted.org/packages/90/f0/b315c84063cfd846f735d2b65feec51b7b36d297f0836fa481823b634d85/deltalake-0.16.3-cp38-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b62e18684e7a1b077fd99cd91fcc0fa92885cac7f49ead0258dce5b95801077d",
                "md5": "cbde38ae06d55e09b69e84dd0d6c1924",
                "sha256": "aa972900c8f956d64edb4a93b548b18ae40d31fca602186b83b4a5370d6ebd24"
            },
            "downloads": -1,
            "filename": "deltalake-0.16.3.tar.gz",
            "has_sig": false,
            "md5_digest": "cbde38ae06d55e09b69e84dd0d6c1924",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 4746149,
            "upload_time": "2024-03-25T20:56:03",
            "upload_time_iso_8601": "2024-03-25T20:56:03.857992Z",
            "url": "https://files.pythonhosted.org/packages/b6/2e/18684e7a1b077fd99cd91fcc0fa92885cac7f49ead0258dce5b95801077d/deltalake-0.16.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-25 20:56:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "delta-io",
    "github_project": "delta-rs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "deltalake"
}
        
Elapsed time: 0.23424s