rms-fpzip


Namerms-fpzip JSON
Version 1.2.12 PyPI version JSON
download
home_pagehttps://github.com/SETI/rms-fpzip/
SummaryNumpy wrapper for fpzip algorithm (P. Lindstrom & M. Isenburg, 2006) RMS Fork
upload_time2024-05-15 20:44:17
maintainerRobert French
docs_urlNone
authorWilliam Silversmith
requires_python>=3.7
licenseBSD
keywords
VCS
bugtrack_url
requirements numpy
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![GitHub release; latest by date](https://img.shields.io/github/v/release/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/releases)
[![GitHub Release Date](https://img.shields.io/github/release-date/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/releases)
[![Test Status](https://img.shields.io/github/actions/workflow/status/SETI/rms-fpzip/run-tests.yml?branch=main)](https://github.com/SETI/rms-fpzip/actions)
[![Code coverage](https://img.shields.io/codecov/c/github/SETI/rms-fpzip/main?logo=codecov)](https://codecov.io/gh/SETI/rms-fpzip)
<br />
[![PyPI - Version](https://img.shields.io/pypi/v/rms-fpzip)](https://pypi.org/project/rms-fpzip)
[![PyPI - Format](https://img.shields.io/pypi/format/rms-fpzip)](https://pypi.org/project/rms-fpzip)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/rms-fpzip)](https://pypi.org/project/rms-fpzip)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/rms-fpzip)](https://pypi.org/project/rms-fpzip)
<br />
[![GitHub commits since latest release](https://img.shields.io/github/commits-since/SETI/rms-fpzip/latest)](https://github.com/SETI/rms-fpzip/commits/main/)
[![GitHub commit activity](https://img.shields.io/github/commit-activity/m/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/commits/main/)
[![GitHub last commit](https://img.shields.io/github/last-commit/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/commits/main/)
<br />
[![Number of GitHub open issues](https://img.shields.io/github/issues-raw/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/issues)
[![Number of GitHub closed issues](https://img.shields.io/github/issues-closed-raw/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/issues)
[![Number of GitHub open pull requests](https://img.shields.io/github/issues-pr-raw/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/pulls)
[![Number of GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed-raw/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/pulls)
<br />
![GitHub License](https://img.shields.io/github/license/SETI/rms-fpzip)
[![Number of GitHub stars](https://img.shields.io/github/stars/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/stargazers)
![GitHub forks](https://img.shields.io/github/forks/SETI/rms-fpzip)

# Introduction

This is a fork of https://github.com/seung-lab/fpzip with changes to allow it to work
with Python 3.11 and 3.12; it also has a different test and PyPI deployment system.
We are grateful to William Silversmith for all of the hard work necessary to make this
project in the first place.

This fork is maintained by the Ring-Moon Systems Node of NASA's Planetary Data System.

# fpzip

fpzip is a compression algorithm supporting lossless and lossy encoding for up to 4 dimensional floating point data. This package contains Python C++ bindings for the fpzip algorithm (version 1.3.0). The version number for this package is independent. Python 3.8+ is supported.

```python
import fpzip
import numpy as np

data = np.array(..., dtype=np.float32) # up to 4d float or double array
# Compress data losslessly, interpreting the underlying buffer in C (default) or F order.
compressed_bytes = fpzip.compress(data, precision=0, order='C') # returns byte string
# Back to 3d or 4d float or double array, decode as C (default) or F order.
data_again = fpzip.decompress(compressed_bytes, order='C')
```

## Installation

#### `pip` Binary Installation

```bash
pip install rms-fpzip
```

If we have a precompiled binary available the above command should just work. However, if you have to compile from source, it's unfortunately necessary to install numpy first because of a quirk in the Python installation procedure that won't easily recognize when a numpy installation completes in the same process. There are some hacks, but I haven't gotten them to work.

#### `pip` Source Installation

*Requires C++ compiler.*

```bash
pip install numpy
pip install rms-fpzip
```

#### Direct Installation

*Requires C++ compiler.*

```bash
$ pip install numpy
$ python setup.py develop
```

## References

Algorithm and C++ code by Peter Lindstrom and Martin Isenburg. Cython interface code by William Silversmith. Check out [Dr. Lindstrom's site](https://computing.llnl.gov/projects/fpzip) or the [fpzip Github page](https://github.com/LLNL/fpzip).

1. Peter Lindstrom and Martin Isenburg, "[Fast and Efficient Compression of Floating-Point Data,](https://www.researchgate.net/publication/6715625_Fast_and_Efficient_Compression_of_Floating-Point_Data)" IEEE Transactions on Visualization and Computer Graphics, 12(5):1245-1250, September-October 2006, doi:[10.1109/TVCG.2006.143](http://dx.doi.org/10.1109/TVCG.2006.143).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/SETI/rms-fpzip/",
    "name": "rms-fpzip",
    "maintainer": "Robert French",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "rfrench@seti.org",
    "keywords": null,
    "author": "William Silversmith",
    "author_email": "ws9@princeton.edu",
    "download_url": null,
    "platform": null,
    "description": "[![GitHub release; latest by date](https://img.shields.io/github/v/release/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/releases)\n[![GitHub Release Date](https://img.shields.io/github/release-date/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/releases)\n[![Test Status](https://img.shields.io/github/actions/workflow/status/SETI/rms-fpzip/run-tests.yml?branch=main)](https://github.com/SETI/rms-fpzip/actions)\n[![Code coverage](https://img.shields.io/codecov/c/github/SETI/rms-fpzip/main?logo=codecov)](https://codecov.io/gh/SETI/rms-fpzip)\n<br />\n[![PyPI - Version](https://img.shields.io/pypi/v/rms-fpzip)](https://pypi.org/project/rms-fpzip)\n[![PyPI - Format](https://img.shields.io/pypi/format/rms-fpzip)](https://pypi.org/project/rms-fpzip)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/rms-fpzip)](https://pypi.org/project/rms-fpzip)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/rms-fpzip)](https://pypi.org/project/rms-fpzip)\n<br />\n[![GitHub commits since latest release](https://img.shields.io/github/commits-since/SETI/rms-fpzip/latest)](https://github.com/SETI/rms-fpzip/commits/main/)\n[![GitHub commit activity](https://img.shields.io/github/commit-activity/m/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/commits/main/)\n[![GitHub last commit](https://img.shields.io/github/last-commit/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/commits/main/)\n<br />\n[![Number of GitHub open issues](https://img.shields.io/github/issues-raw/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/issues)\n[![Number of GitHub closed issues](https://img.shields.io/github/issues-closed-raw/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/issues)\n[![Number of GitHub open pull requests](https://img.shields.io/github/issues-pr-raw/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/pulls)\n[![Number of GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed-raw/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/pulls)\n<br />\n![GitHub License](https://img.shields.io/github/license/SETI/rms-fpzip)\n[![Number of GitHub stars](https://img.shields.io/github/stars/SETI/rms-fpzip)](https://github.com/SETI/rms-fpzip/stargazers)\n![GitHub forks](https://img.shields.io/github/forks/SETI/rms-fpzip)\n\n# Introduction\n\nThis is a fork of https://github.com/seung-lab/fpzip with changes to allow it to work\nwith Python 3.11 and 3.12; it also has a different test and PyPI deployment system.\nWe are grateful to William Silversmith for all of the hard work necessary to make this\nproject in the first place.\n\nThis fork is maintained by the Ring-Moon Systems Node of NASA's Planetary Data System.\n\n# fpzip\n\nfpzip is a compression algorithm supporting lossless and lossy encoding for up to 4 dimensional floating point data. This package contains Python C++ bindings for the fpzip algorithm (version 1.3.0). The version number for this package is independent. Python 3.8+ is supported.\n\n```python\nimport fpzip\nimport numpy as np\n\ndata = np.array(..., dtype=np.float32) # up to 4d float or double array\n# Compress data losslessly, interpreting the underlying buffer in C (default) or F order.\ncompressed_bytes = fpzip.compress(data, precision=0, order='C') # returns byte string\n# Back to 3d or 4d float or double array, decode as C (default) or F order.\ndata_again = fpzip.decompress(compressed_bytes, order='C')\n```\n\n## Installation\n\n#### `pip` Binary Installation\n\n```bash\npip install rms-fpzip\n```\n\nIf we have a precompiled binary available the above command should just work. However, if you have to compile from source, it's unfortunately necessary to install numpy first because of a quirk in the Python installation procedure that won't easily recognize when a numpy installation completes in the same process. There are some hacks, but I haven't gotten them to work.\n\n#### `pip` Source Installation\n\n*Requires C++ compiler.*\n\n```bash\npip install numpy\npip install rms-fpzip\n```\n\n#### Direct Installation\n\n*Requires C++ compiler.*\n\n```bash\n$ pip install numpy\n$ python setup.py develop\n```\n\n## References\n\nAlgorithm and C++ code by Peter Lindstrom and Martin Isenburg. Cython interface code by William Silversmith. Check out [Dr. Lindstrom's site](https://computing.llnl.gov/projects/fpzip) or the [fpzip Github page](https://github.com/LLNL/fpzip).\n\n1. Peter Lindstrom and Martin Isenburg, \"[Fast and Efficient Compression of Floating-Point Data,](https://www.researchgate.net/publication/6715625_Fast_and_Efficient_Compression_of_Floating-Point_Data)\" IEEE Transactions on Visualization and Computer Graphics, 12(5):1245-1250, September-October 2006, doi:[10.1109/TVCG.2006.143](http://dx.doi.org/10.1109/TVCG.2006.143).\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Numpy wrapper for fpzip algorithm (P. Lindstrom & M. Isenburg, 2006) RMS Fork",
    "version": "1.2.12",
    "project_urls": {
        "Homepage": "https://github.com/SETI/rms-fpzip/",
        "Issues": "https://github.com/SETI/rms-fpzip/issues",
        "Repository": "https://github.com/SETI/rms-fpzip",
        "Source": "https://github.com/SETI/rms-fpzip",
        "homepage": "https://github.com/SETI/rms-fpzip"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8e8ed180800ec28d9c5284c7b264d0de7bb74113caed1f2669fa24a69abbb92",
                "md5": "f78cc1eba35949d3b9dba3165ceb1631",
                "sha256": "8fd142a7c693cae00e8e1a24965b64be711ec284be6fa5088c6c6e1596cfc059"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f78cc1eba35949d3b9dba3165ceb1631",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 115556,
            "upload_time": "2024-05-15T20:44:17",
            "upload_time_iso_8601": "2024-05-15T20:44:17.583807Z",
            "url": "https://files.pythonhosted.org/packages/d8/e8/ed180800ec28d9c5284c7b264d0de7bb74113caed1f2669fa24a69abbb92/rms_fpzip-1.2.12-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47908ee1ad6acbaff000fbb24eaf62953ff60c64405cb78327bd561387bedae2",
                "md5": "697a2d51683d636e174913518c595afc",
                "sha256": "3965d712e42e7b0675bd84963dfd2b58b4640c293445fffe4d49aa8d7d988f00"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "697a2d51683d636e174913518c595afc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 903628,
            "upload_time": "2024-05-15T20:44:18",
            "upload_time_iso_8601": "2024-05-15T20:44:18.906350Z",
            "url": "https://files.pythonhosted.org/packages/47/90/8ee1ad6acbaff000fbb24eaf62953ff60c64405cb78327bd561387bedae2/rms_fpzip-1.2.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "850f1b098955f8918c3a63a2527a04c99e01d1ddbb09f073af38f2d6bb3fcaa4",
                "md5": "b51c57209ba60fd3bb69d884298ced62",
                "sha256": "779995f6a8245e54c59118454fab648bebd830564eef34c798e97d3f4f25035c"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b51c57209ba60fd3bb69d884298ced62",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 939277,
            "upload_time": "2024-05-15T20:44:20",
            "upload_time_iso_8601": "2024-05-15T20:44:20.241346Z",
            "url": "https://files.pythonhosted.org/packages/85/0f/1b098955f8918c3a63a2527a04c99e01d1ddbb09f073af38f2d6bb3fcaa4/rms_fpzip-1.2.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ef3f252de55d1ede12efdacf714ca753598fdd072bca89cd7565b7292c2af3a",
                "md5": "45210da7ef7ec1dc58a26a83af501463",
                "sha256": "2d1584b6cb86f3af8734150b34d4b310d2d2cd5ebddcd5a44dab95520ac46efb"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "45210da7ef7ec1dc58a26a83af501463",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 934161,
            "upload_time": "2024-05-15T20:44:21",
            "upload_time_iso_8601": "2024-05-15T20:44:21.675486Z",
            "url": "https://files.pythonhosted.org/packages/7e/f3/f252de55d1ede12efdacf714ca753598fdd072bca89cd7565b7292c2af3a/rms_fpzip-1.2.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdba42ab489019408886fb849e21ab1b910ec5d7d4bdd59e47bfa949058844c4",
                "md5": "d7d5f97f6bdd5cca4f10848be263aa86",
                "sha256": "640bda0635039f910af2a1ea1c07c3dd96ad3a7544aed3800e3826daf3e7bebd"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "d7d5f97f6bdd5cca4f10848be263aa86",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 86129,
            "upload_time": "2024-05-15T20:44:23",
            "upload_time_iso_8601": "2024-05-15T20:44:23.591526Z",
            "url": "https://files.pythonhosted.org/packages/bd/ba/42ab489019408886fb849e21ab1b910ec5d7d4bdd59e47bfa949058844c4/rms_fpzip-1.2.12-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f201f584b9aec32eb535a1410260658ff821ba962da78205208a21a13f5181c",
                "md5": "7ad52f1039c52ad2616e56441499011c",
                "sha256": "beb2af80dfb71929a758ea10f044a7ad5366b72b381fdca48bc1f7d09da47ca2"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7ad52f1039c52ad2616e56441499011c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 98721,
            "upload_time": "2024-05-15T20:44:24",
            "upload_time_iso_8601": "2024-05-15T20:44:24.606086Z",
            "url": "https://files.pythonhosted.org/packages/4f/20/1f584b9aec32eb535a1410260658ff821ba962da78205208a21a13f5181c/rms_fpzip-1.2.12-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1a6b239ba07917ce8ec83a9c99732831962085d4e33ba1760c7597920641a9e",
                "md5": "fb6d8bebd16a2d62ceb53d51a2437c4b",
                "sha256": "1ae05ed9341b076373e6f06c8f208ab3b893a33bacb570eea4c83d9cf2eec2f3"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fb6d8bebd16a2d62ceb53d51a2437c4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 114806,
            "upload_time": "2024-05-15T20:44:25",
            "upload_time_iso_8601": "2024-05-15T20:44:25.669954Z",
            "url": "https://files.pythonhosted.org/packages/f1/a6/b239ba07917ce8ec83a9c99732831962085d4e33ba1760c7597920641a9e/rms_fpzip-1.2.12-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01b2ad17d6b626ac20ddc084095e0ef9d8ca0a10a7fd9cb7768e3dc04975dc33",
                "md5": "827d1898fb786136c8fa973db0f6184c",
                "sha256": "33d4c571f8c2aa9b2d38482a04e7e5088e66b2bf0273c1e5fc9499bf16a4b126"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "827d1898fb786136c8fa973db0f6184c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 937040,
            "upload_time": "2024-05-15T20:44:27",
            "upload_time_iso_8601": "2024-05-15T20:44:27.388359Z",
            "url": "https://files.pythonhosted.org/packages/01/b2/ad17d6b626ac20ddc084095e0ef9d8ca0a10a7fd9cb7768e3dc04975dc33/rms_fpzip-1.2.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8154fcc936325f0d6a8dd82221bccee618aa76077370c0519b36e0869fbd79dd",
                "md5": "9a7b0288e59cd2e30c6d85420ed2bda4",
                "sha256": "426f6eb70b1e732beae95a7ff6c6502f149dcf62b08ec71143433483bd610c4a"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a7b0288e59cd2e30c6d85420ed2bda4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 970186,
            "upload_time": "2024-05-15T20:44:29",
            "upload_time_iso_8601": "2024-05-15T20:44:29.230980Z",
            "url": "https://files.pythonhosted.org/packages/81/54/fcc936325f0d6a8dd82221bccee618aa76077370c0519b36e0869fbd79dd/rms_fpzip-1.2.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52355a39fd4748c07a37ac401d1857c1ac551ef6ac9d457f10f529142e341475",
                "md5": "78a433ac09957571a75a36a22054d78e",
                "sha256": "6441cc1a237e99d21b9adac11eed97c39b6e0e7bd4bd9e3430f9ecb4648283ae"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "78a433ac09957571a75a36a22054d78e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 957639,
            "upload_time": "2024-05-15T20:44:30",
            "upload_time_iso_8601": "2024-05-15T20:44:30.509961Z",
            "url": "https://files.pythonhosted.org/packages/52/35/5a39fd4748c07a37ac401d1857c1ac551ef6ac9d457f10f529142e341475/rms_fpzip-1.2.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0593104f3f15411efb4870d645cad96271b85b8d5c97918d7a08c57bd019992",
                "md5": "8bee3b2e27726613d4bc7228f48e0b71",
                "sha256": "7dbb98ce5c484a4700545d8c9a5449431d6adb9ec5aa773e0bbb77bae0faf41e"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "8bee3b2e27726613d4bc7228f48e0b71",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 85557,
            "upload_time": "2024-05-15T20:44:31",
            "upload_time_iso_8601": "2024-05-15T20:44:31.698966Z",
            "url": "https://files.pythonhosted.org/packages/e0/59/3104f3f15411efb4870d645cad96271b85b8d5c97918d7a08c57bd019992/rms_fpzip-1.2.12-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04df8f6d46f9ee3dc6da8f0edba30cbd1aec2a564acfb98ae40822d3ebd31a01",
                "md5": "bc694b4d8a08d0bc0c2eb33f4b22b46d",
                "sha256": "5b1ff115324490208e55084c587d0de714e73d9b5f377ef3d3eb247573fb4c9a"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bc694b4d8a08d0bc0c2eb33f4b22b46d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 97954,
            "upload_time": "2024-05-15T20:44:33",
            "upload_time_iso_8601": "2024-05-15T20:44:33.228356Z",
            "url": "https://files.pythonhosted.org/packages/04/df/8f6d46f9ee3dc6da8f0edba30cbd1aec2a564acfb98ae40822d3ebd31a01/rms_fpzip-1.2.12-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "212bef9bbe71eb42e9968cb18f03b132a4712e69623b5601a22149aa24cd30cc",
                "md5": "cb41427f0324e51641dfac85bc872002",
                "sha256": "e036f421403fd31597273e572742ce9d8d64cace3ef48abbdbba58da7310efd5"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cb41427f0324e51641dfac85bc872002",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 114134,
            "upload_time": "2024-05-15T20:44:34",
            "upload_time_iso_8601": "2024-05-15T20:44:34.850898Z",
            "url": "https://files.pythonhosted.org/packages/21/2b/ef9bbe71eb42e9968cb18f03b132a4712e69623b5601a22149aa24cd30cc/rms_fpzip-1.2.12-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d24042b40068fba2621970fbc1e0329a10722724cc96c1f7ef30da70f11abace",
                "md5": "c43a3aad44649442fea0310896c4ea9f",
                "sha256": "4fa3ec9284f8d77766f3e4dce057dce18fd18cc091d8730ea42d1a7d281abb95"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c43a3aad44649442fea0310896c4ea9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 914184,
            "upload_time": "2024-05-15T20:44:35",
            "upload_time_iso_8601": "2024-05-15T20:44:35.955787Z",
            "url": "https://files.pythonhosted.org/packages/d2/40/42b40068fba2621970fbc1e0329a10722724cc96c1f7ef30da70f11abace/rms_fpzip-1.2.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e01307ad29678f1ed912c31dcd7454f04c5b4b66aa137579ed4b4fb426afd70",
                "md5": "a11801a8f40d39f10f2590f8929e1c71",
                "sha256": "b315a8c431fd14436c769fbf011641fd964c8839b08de9f054ef4aec441b0bcb"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a11801a8f40d39f10f2590f8929e1c71",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 945887,
            "upload_time": "2024-05-15T20:44:37",
            "upload_time_iso_8601": "2024-05-15T20:44:37.422993Z",
            "url": "https://files.pythonhosted.org/packages/2e/01/307ad29678f1ed912c31dcd7454f04c5b4b66aa137579ed4b4fb426afd70/rms_fpzip-1.2.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49dba93b88c3b208a387475b348cb56d1066cf33f1e77499efcdce0d288ca3d2",
                "md5": "bc4564af870de23e231fb68271b2341c",
                "sha256": "bb2a6825b4ad3d1987e5baf5909844268ae03f20d9e186024c5cb5d8d246f7aa"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bc4564af870de23e231fb68271b2341c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 939432,
            "upload_time": "2024-05-15T20:44:38",
            "upload_time_iso_8601": "2024-05-15T20:44:38.654342Z",
            "url": "https://files.pythonhosted.org/packages/49/db/a93b88c3b208a387475b348cb56d1066cf33f1e77499efcdce0d288ca3d2/rms_fpzip-1.2.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf956895330e35f48d36a523ea73d0470dcad4cd87e60dadae487be98c311830",
                "md5": "142d43ec714fe4da67f1b754b8119112",
                "sha256": "c63f2dc89841460355118550946fb481a6533b257a244d0b5de8a99201239649"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "142d43ec714fe4da67f1b754b8119112",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 84955,
            "upload_time": "2024-05-15T20:44:40",
            "upload_time_iso_8601": "2024-05-15T20:44:40.131213Z",
            "url": "https://files.pythonhosted.org/packages/bf/95/6895330e35f48d36a523ea73d0470dcad4cd87e60dadae487be98c311830/rms_fpzip-1.2.12-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bed70a9517240215bede6c7dabe0347b606fc15d0a0255dc0fd562b8d557d275",
                "md5": "71f2df65a02a18c6e2b59e33f820c0b1",
                "sha256": "79daf99f955f86da16a867aee7f7907f00b3b5f1d56a5e21d070eadc69ea6f36"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "71f2df65a02a18c6e2b59e33f820c0b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 96749,
            "upload_time": "2024-05-15T20:44:41",
            "upload_time_iso_8601": "2024-05-15T20:44:41.147639Z",
            "url": "https://files.pythonhosted.org/packages/be/d7/0a9517240215bede6c7dabe0347b606fc15d0a0255dc0fd562b8d557d275/rms_fpzip-1.2.12-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97aaac805b5cf5c903467695e2fb25a7247419e6fc2dc3b89a46ebdaf0eb440b",
                "md5": "daff5c85ccd84ac66b5caf12439d88ac",
                "sha256": "86cd8c76335973aeba52fc0725ecb3e2ffbe26acfa3c907ddac20586f426f948"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "daff5c85ccd84ac66b5caf12439d88ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 115515,
            "upload_time": "2024-05-15T20:44:42",
            "upload_time_iso_8601": "2024-05-15T20:44:42.752032Z",
            "url": "https://files.pythonhosted.org/packages/97/aa/ac805b5cf5c903467695e2fb25a7247419e6fc2dc3b89a46ebdaf0eb440b/rms_fpzip-1.2.12-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "659dd9215e8bf3f4149888905bdcc8732a3388364e7142375577aa5b3f1eaf69",
                "md5": "9db29afca7e79bb448d2053fbf3d52b4",
                "sha256": "0de9c5b24769a52cda2312dc537895834d1d8798ad92261d03317b11444d72d7"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9db29afca7e79bb448d2053fbf3d52b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 911642,
            "upload_time": "2024-05-15T20:44:44",
            "upload_time_iso_8601": "2024-05-15T20:44:44.598897Z",
            "url": "https://files.pythonhosted.org/packages/65/9d/d9215e8bf3f4149888905bdcc8732a3388364e7142375577aa5b3f1eaf69/rms_fpzip-1.2.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9a50fad7c414e37091a34afba9f76cd0c6c87c3ef85b6c8fbfc4d30fae95ddc",
                "md5": "05d24fd5ba9e57f6d638bbdbd02fd272",
                "sha256": "0517bf171fbad93d9353df50f2f919fc9fd9d50af593e41a5a69b085040b4e2f"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05d24fd5ba9e57f6d638bbdbd02fd272",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 946652,
            "upload_time": "2024-05-15T20:44:46",
            "upload_time_iso_8601": "2024-05-15T20:44:46.446407Z",
            "url": "https://files.pythonhosted.org/packages/d9/a5/0fad7c414e37091a34afba9f76cd0c6c87c3ef85b6c8fbfc4d30fae95ddc/rms_fpzip-1.2.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0feeb9c2aaa5c3be6f17bca3fbc11f715fecf4b2a0e8debd258bc23c3c55bf16",
                "md5": "e6886b9e0e980a8a3d87500d6348767d",
                "sha256": "be9a3b35897b21a9a0561c8f0095447a45d6b2320b23381cf9d9fbebc81ef35f"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e6886b9e0e980a8a3d87500d6348767d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 941429,
            "upload_time": "2024-05-15T20:44:47",
            "upload_time_iso_8601": "2024-05-15T20:44:47.739109Z",
            "url": "https://files.pythonhosted.org/packages/0f/ee/b9c2aaa5c3be6f17bca3fbc11f715fecf4b2a0e8debd258bc23c3c55bf16/rms_fpzip-1.2.12-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81aa45ece7c65e24ca9dd445a0633ff3201c4877526f8b3fc41f6dd5800a3161",
                "md5": "caa448e56ca6241aa2c1e63e3bcd7b57",
                "sha256": "b38a92ddbb3ff957a27b84f5610937fff18942c218ccea3970d769c878487a85"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "caa448e56ca6241aa2c1e63e3bcd7b57",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 86964,
            "upload_time": "2024-05-15T20:44:48",
            "upload_time_iso_8601": "2024-05-15T20:44:48.869641Z",
            "url": "https://files.pythonhosted.org/packages/81/aa/45ece7c65e24ca9dd445a0633ff3201c4877526f8b3fc41f6dd5800a3161/rms_fpzip-1.2.12-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e05a3cabe700c58b5801d6c1e7511ba450bc0cf816aa1b3cac493dd7cdaa64d6",
                "md5": "4f0253772e7d243e19a3f9cd37166f3b",
                "sha256": "2ef96593d2c077a1ed13092c3ffccb4ed9d21e8d844c53b0a2da123b38b6bce8"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4f0253772e7d243e19a3f9cd37166f3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 99643,
            "upload_time": "2024-05-15T20:44:50",
            "upload_time_iso_8601": "2024-05-15T20:44:50.537975Z",
            "url": "https://files.pythonhosted.org/packages/e0/5a/3cabe700c58b5801d6c1e7511ba450bc0cf816aa1b3cac493dd7cdaa64d6/rms_fpzip-1.2.12-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f8df44949213880c54d40a6cb94771a4b5e1ee5c0be2f5ff29b6371e5dfeb60",
                "md5": "a451bf291200b39a19c934a17910191b",
                "sha256": "4a84184d28e5c617cbeb64ec05a783cb0ea66eca7c06e97ddaaae32959eadf79"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a451bf291200b39a19c934a17910191b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 115419,
            "upload_time": "2024-05-15T20:44:52",
            "upload_time_iso_8601": "2024-05-15T20:44:52.163663Z",
            "url": "https://files.pythonhosted.org/packages/2f/8d/f44949213880c54d40a6cb94771a4b5e1ee5c0be2f5ff29b6371e5dfeb60/rms_fpzip-1.2.12-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9e6c3a44ae692eb7888801103d72a9ca74f7cb00a8244f75f115ef20353fd9f",
                "md5": "285a6538bdc469b83c3adf8ec2f6a53e",
                "sha256": "7b9efb9cec6a2d1f27226910378c4f7ffe796c6788c3cab19e2d293c5ca2d176"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "285a6538bdc469b83c3adf8ec2f6a53e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 908234,
            "upload_time": "2024-05-15T20:44:53",
            "upload_time_iso_8601": "2024-05-15T20:44:53.198120Z",
            "url": "https://files.pythonhosted.org/packages/d9/e6/c3a44ae692eb7888801103d72a9ca74f7cb00a8244f75f115ef20353fd9f/rms_fpzip-1.2.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d60ef658ca4954a91d03d63a89911fa2f61b66a7c87a47c02edb4cfdac2b487",
                "md5": "5d1e398006504e12e7ac6e69a7a76d90",
                "sha256": "c59ec15c4d27b5ccc9e22a7e33bedd851cd325299e9eb6ed23420405a4e2912f"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d1e398006504e12e7ac6e69a7a76d90",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 942195,
            "upload_time": "2024-05-15T20:44:54",
            "upload_time_iso_8601": "2024-05-15T20:44:54.511280Z",
            "url": "https://files.pythonhosted.org/packages/8d/60/ef658ca4954a91d03d63a89911fa2f61b66a7c87a47c02edb4cfdac2b487/rms_fpzip-1.2.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a7d09cd39447e60c50fa6a3842a86bc076f8a5bd5000bc031ea5ee2f4ae193a",
                "md5": "c3b182cf0a1aa94693a1e14e759d4afb",
                "sha256": "a9590989e069f82e2983e86ad83ef4eac3a41fb53e0f34ac7c9cd0901bb4af7f"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c3b182cf0a1aa94693a1e14e759d4afb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 939263,
            "upload_time": "2024-05-15T20:44:56",
            "upload_time_iso_8601": "2024-05-15T20:44:56.349789Z",
            "url": "https://files.pythonhosted.org/packages/6a/7d/09cd39447e60c50fa6a3842a86bc076f8a5bd5000bc031ea5ee2f4ae193a/rms_fpzip-1.2.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f03881a3295878c071e16943d5f6696d7c1a2214358e751550f5b9e66cb6d82",
                "md5": "03c3d721cc48987f3f253e6642841bb0",
                "sha256": "9a3b8be11e6cd126b7b18c3f4a2aa7b170028698027850a7401044c60ef3f6f3"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "03c3d721cc48987f3f253e6642841bb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 87019,
            "upload_time": "2024-05-15T20:44:57",
            "upload_time_iso_8601": "2024-05-15T20:44:57.568170Z",
            "url": "https://files.pythonhosted.org/packages/2f/03/881a3295878c071e16943d5f6696d7c1a2214358e751550f5b9e66cb6d82/rms_fpzip-1.2.12-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e0a125e4dadaa5fea84dba2d63ef5d581d0c2f633dc0e746b41198040e61b97",
                "md5": "6b6b2ab6cc2649d1677c5b605260b7a4",
                "sha256": "564646fab7b40e95228a29e441610d980ee986d964480a4013f8c08477ff07d8"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.2.12-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6b6b2ab6cc2649d1677c5b605260b7a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 99671,
            "upload_time": "2024-05-15T20:44:58",
            "upload_time_iso_8601": "2024-05-15T20:44:58.502760Z",
            "url": "https://files.pythonhosted.org/packages/6e/0a/125e4dadaa5fea84dba2d63ef5d581d0c2f633dc0e746b41198040e61b97/rms_fpzip-1.2.12-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-15 20:44:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "SETI",
    "github_project": "rms-fpzip",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": []
        }
    ],
    "lcname": "rms-fpzip"
}
        
Elapsed time: 0.25735s