zrxp


Namezrxp JSON
Version 2.0.1 PyPI version JSON
download
home_pageNone
SummaryZRXP File Reader and Writer
upload_time2024-07-30 22:03:17
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseLGPL
keywords kisters zrxp time series time series
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ZRXP Lib
Library to read and write ZRXP Files.

Written in Rust with a Python API

## Run
Inside your Python Environment run
```commandline
pip install zrxp
```
Then you can start Python
```commandline
python
```

```python
>> from zrxp import read, write, writes
>> data = zrxp.read("test.zrxp")

# Pandas or Polars DataFrame
>> data = pd.DataFrame(...)
>> metadata = {...}
# writes to string
>> string_zrxp = zrxp.writes(data, metadata)
# writes to file
>> zrxp.write("write.zrxp", data, metadata)
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "zrxp",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "kisters, zrxp, time series, time, series",
    "author": null,
    "author_email": "Johannes Uttecht <johannes.uttecht@kisters.de>",
    "download_url": null,
    "platform": null,
    "description": "# ZRXP Lib\nLibrary to read and write ZRXP Files.\n\nWritten in Rust with a Python API\n\n## Run\nInside your Python Environment run\n```commandline\npip install zrxp\n```\nThen you can start Python\n```commandline\npython\n```\n\n```python\n>> from zrxp import read, write, writes\n>> data = zrxp.read(\"test.zrxp\")\n\n# Pandas or Polars DataFrame\n>> data = pd.DataFrame(...)\n>> metadata = {...}\n# writes to string\n>> string_zrxp = zrxp.writes(data, metadata)\n# writes to file\n>> zrxp.write(\"write.zrxp\", data, metadata)\n```\n",
    "bugtrack_url": null,
    "license": "LGPL",
    "summary": "ZRXP File Reader and Writer",
    "version": "2.0.1",
    "project_urls": {
        "Homepage": "https://gitlab.com/kisters/time-series/zrxp",
        "Repository": "https://gitlab.com/kisters/time-series/zrxp.git"
    },
    "split_keywords": [
        "kisters",
        " zrxp",
        " time series",
        " time",
        " series"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72750e13711d0b6de982d45f072ad874dd0866e6ba4291f564839ef4e8555d50",
                "md5": "8bc9b8a51c37747ffe1b45846ddf5c26",
                "sha256": "ee13c6b42caaee039e6e0f3765d1e289a07e872c206f56552d1d5a2f189ec4f5"
            },
            "downloads": -1,
            "filename": "zrxp-2.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8bc9b8a51c37747ffe1b45846ddf5c26",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 3497148,
            "upload_time": "2024-07-30T22:03:17",
            "upload_time_iso_8601": "2024-07-30T22:03:17.536053Z",
            "url": "https://files.pythonhosted.org/packages/72/75/0e13711d0b6de982d45f072ad874dd0866e6ba4291f564839ef4e8555d50/zrxp-2.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7aebb02a54148a88d5fb3d44d07c2400974fa4c63d45dc51f897b36a876c2b08",
                "md5": "9dfb76f619e9afa00eae299138ae2aaa",
                "sha256": "206b3af9d4c8df583fe9bdb476cf4b4a0074a14ecc02e87e4072f5cd0b6991e9"
            },
            "downloads": -1,
            "filename": "zrxp-2.0.1-cp37-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9dfb76f619e9afa00eae299138ae2aaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 8536281,
            "upload_time": "2024-07-30T22:03:20",
            "upload_time_iso_8601": "2024-07-30T22:03:20.198245Z",
            "url": "https://files.pythonhosted.org/packages/7a/eb/b02a54148a88d5fb3d44d07c2400974fa4c63d45dc51f897b36a876c2b08/zrxp-2.0.1-cp37-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-30 22:03:17",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "kisters",
    "gitlab_project": "time-series",
    "lcname": "zrxp"
}
        
Elapsed time: 0.42778s