delta-sync


Namedelta-sync JSON
Version 0.0.1 PyPI version JSON
download
home_pagehttps://github.com/ffinfo/delta-sync
SummarySyncing delta tables
upload_time2023-09-01 11:23:19
maintainer
docs_urlNone
authorPeter van 't Hof'
requires_python>=3.8.1,<4.0
licenseMIT
keywords pydantic spark
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Delta Sync

**This package is not ready to use, still in development**

This package will contain methods to sync delta table. It will use


### Example

```python
from delta import DeltaTable

from delta_sync import sync_table

source_table = DeltaTable.forName("<source table name>")
output_table = DeltaTable.forName("<output table name>")
status_table = DeltaTable.forName("<status table name>")

sync_table(source_table, output_table, status_table)
```


### Install

##### pip
```shell
pip install delta-sync
```

##### poetry
```shell
poetry add delta-sync
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ffinfo/delta-sync",
    "name": "delta-sync",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8.1,<4.0",
    "maintainer_email": "",
    "keywords": "pydantic,spark",
    "author": "Peter van 't Hof'",
    "author_email": "pjrvanthof@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/54/e4/218b6e2b13e21d35dd60d4470c74f98f41e96953aa5ddffd7e256783a81e/delta_sync-0.0.1.tar.gz",
    "platform": null,
    "description": "# Delta Sync\n\n**This package is not ready to use, still in development**\n\nThis package will contain methods to sync delta table. It will use\n\n\n### Example\n\n```python\nfrom delta import DeltaTable\n\nfrom delta_sync import sync_table\n\nsource_table = DeltaTable.forName(\"<source table name>\")\noutput_table = DeltaTable.forName(\"<output table name>\")\nstatus_table = DeltaTable.forName(\"<status table name>\")\n\nsync_table(source_table, output_table, status_table)\n```\n\n\n### Install\n\n##### pip\n```shell\npip install delta-sync\n```\n\n##### poetry\n```shell\npoetry add delta-sync\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Syncing delta tables",
    "version": "0.0.1",
    "project_urls": {
        "Homepage": "https://github.com/ffinfo/delta-sync",
        "Repository": "https://github.com/ffinfo/delta-sync"
    },
    "split_keywords": [
        "pydantic",
        "spark"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0f3fc317e953fa84c6809d76526a420bb6bd10691566413c5d9a02bf1c8eea0",
                "md5": "d09c9c73190ccf18ad6e3ac4fd720358",
                "sha256": "05ca7aa385acdbe78ab5da9e02a01b46c9ad57252d600d236d463e8859eeb41f"
            },
            "downloads": -1,
            "filename": "delta_sync-0.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d09c9c73190ccf18ad6e3ac4fd720358",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.1,<4.0",
            "size": 1840,
            "upload_time": "2023-09-01T11:23:18",
            "upload_time_iso_8601": "2023-09-01T11:23:18.011160Z",
            "url": "https://files.pythonhosted.org/packages/b0/f3/fc317e953fa84c6809d76526a420bb6bd10691566413c5d9a02bf1c8eea0/delta_sync-0.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54e4218b6e2b13e21d35dd60d4470c74f98f41e96953aa5ddffd7e256783a81e",
                "md5": "8c23441e8de923143259efce407cddbc",
                "sha256": "d4db1a77397dbe6a94104338dbb77bec7d23988991e901afcd33966e7b981fb1"
            },
            "downloads": -1,
            "filename": "delta_sync-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "8c23441e8de923143259efce407cddbc",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8.1,<4.0",
            "size": 2157,
            "upload_time": "2023-09-01T11:23:19",
            "upload_time_iso_8601": "2023-09-01T11:23:19.439934Z",
            "url": "https://files.pythonhosted.org/packages/54/e4/218b6e2b13e21d35dd60d4470c74f98f41e96953aa5ddffd7e256783a81e/delta_sync-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-01 11:23:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ffinfo",
    "github_project": "delta-sync",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "delta-sync"
}
        
Elapsed time: 0.10057s