rms-fpzip


Namerms-fpzip JSON
Version 1.3.5 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-12-16 22:40:27
maintainerRobert French
docs_urlNone
authorWilliam Silversmith
requires_python>=3.9
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.9+ is supported. This
package works with both NumPy 1.x and 2.x.

```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.9",
    "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.9+ is supported. This\npackage works with both NumPy 1.x and 2.x.\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.3.5",
    "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": "dfe4582a34dd64177788e5dfbb48751874f7d6ed3ebba1e44d5473c8dc6f8ec0",
                "md5": "b2458adccd86ae6538080a8ca8712760",
                "sha256": "e8d59c0218efdfb3dca23a3ac2731b8fbc35a27812d09769d3cfe521473576d5"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b2458adccd86ae6538080a8ca8712760",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 140484,
            "upload_time": "2024-12-16T22:40:27",
            "upload_time_iso_8601": "2024-12-16T22:40:27.497402Z",
            "url": "https://files.pythonhosted.org/packages/df/e4/582a34dd64177788e5dfbb48751874f7d6ed3ebba1e44d5473c8dc6f8ec0/rms_fpzip-1.3.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d96e59bbf6b55fe9747b8240393404776907a796612142502c7a61fb820eb6b6",
                "md5": "07abee06a3c96e52b875e5c5a934a9b4",
                "sha256": "26853e6a8a83b980d38612cfeaca217675a1acc3160c5b6cac10e4d44e28f4f2"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "07abee06a3c96e52b875e5c5a934a9b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 129728,
            "upload_time": "2024-12-16T22:40:28",
            "upload_time_iso_8601": "2024-12-16T22:40:28.783689Z",
            "url": "https://files.pythonhosted.org/packages/d9/6e/59bbf6b55fe9747b8240393404776907a796612142502c7a61fb820eb6b6/rms_fpzip-1.3.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9389fbe4d2c8aa30d163a8955d43d13c4045909463a2015b7976489048b2fa47",
                "md5": "9af4bb272786fe831ecd6896d06a6bb2",
                "sha256": "feadb55473517e7de54d0cfd0d3f6d98c6ed72f34829138bab72006615ab78f3"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9af4bb272786fe831ecd6896d06a6bb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 968577,
            "upload_time": "2024-12-16T22:40:29",
            "upload_time_iso_8601": "2024-12-16T22:40:29.974156Z",
            "url": "https://files.pythonhosted.org/packages/93/89/fbe4d2c8aa30d163a8955d43d13c4045909463a2015b7976489048b2fa47/rms_fpzip-1.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58fed6fe7f519c0cca4b64c2bb59d78b3eb90040749e2c8c09c2660870636f50",
                "md5": "1e9e9001bfe8f040cc001e1d39b631cb",
                "sha256": "124cd32e3d96a9e9c26a4dc8470e284354a20d72fd6e5eee0ba8ec29b0614a73"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e9e9001bfe8f040cc001e1d39b631cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1002456,
            "upload_time": "2024-12-16T22:40:32",
            "upload_time_iso_8601": "2024-12-16T22:40:32.770281Z",
            "url": "https://files.pythonhosted.org/packages/58/fe/d6fe7f519c0cca4b64c2bb59d78b3eb90040749e2c8c09c2660870636f50/rms_fpzip-1.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61ef195d36d567354f7ebeaf6e739f34b053d79d40b86d20b651386ee2bd378e",
                "md5": "d2856b18e01875ef8bae8d06432b986b",
                "sha256": "703a04c7b80065d964b2c557a310cd7dd44d2cb255873a2dc5c9e24463146789"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d2856b18e01875ef8bae8d06432b986b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 996259,
            "upload_time": "2024-12-16T22:40:35",
            "upload_time_iso_8601": "2024-12-16T22:40:35.365353Z",
            "url": "https://files.pythonhosted.org/packages/61/ef/195d36d567354f7ebeaf6e739f34b053d79d40b86d20b651386ee2bd378e/rms_fpzip-1.3.5-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": "f992e7cb80b467f95828d8e659f76a4ae4423d03fdb83b1726d8fbe840bc68ff",
                "md5": "94deb69e6a56e44c7ec23d2b13e015ad",
                "sha256": "db841e684e7db1708731e798849a8b9cc35d941ca71a06943fb4d7d66c73020d"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "94deb69e6a56e44c7ec23d2b13e015ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 98034,
            "upload_time": "2024-12-16T22:40:37",
            "upload_time_iso_8601": "2024-12-16T22:40:37.871456Z",
            "url": "https://files.pythonhosted.org/packages/f9/92/e7cb80b467f95828d8e659f76a4ae4423d03fdb83b1726d8fbe840bc68ff/rms_fpzip-1.3.5-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b7a3dde45936b5f7faddacb300e83df86d85f378027ea01e77cf4f6cefad81d",
                "md5": "f843ca9d96bf7d04a997ad2e20217f1c",
                "sha256": "858164b910cc90c094ef10e8dfa14a86473e9431fa352a9bdb318a98af19bf33"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f843ca9d96bf7d04a997ad2e20217f1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 111298,
            "upload_time": "2024-12-16T22:40:40",
            "upload_time_iso_8601": "2024-12-16T22:40:40.138150Z",
            "url": "https://files.pythonhosted.org/packages/3b/7a/3dde45936b5f7faddacb300e83df86d85f378027ea01e77cf4f6cefad81d/rms_fpzip-1.3.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a4128335ba907506ecec8fe8d769f126d2e4dcf137ab8d9d8628a8dfa381d57",
                "md5": "493c5e2cbca0c03e8099ee808035ffe4",
                "sha256": "570ddeb964473d7abfc4c3296b09c7017c561c94a9fabaeda34dec70d26e83ff"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "493c5e2cbca0c03e8099ee808035ffe4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 140584,
            "upload_time": "2024-12-16T22:40:42",
            "upload_time_iso_8601": "2024-12-16T22:40:42.552328Z",
            "url": "https://files.pythonhosted.org/packages/1a/41/28335ba907506ecec8fe8d769f126d2e4dcf137ab8d9d8628a8dfa381d57/rms_fpzip-1.3.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9077b145528a4604e6f239577279db6d488ee16ec0133ea879fcac1489d1ea73",
                "md5": "9848f395b3ed48ca21f786983a55fd38",
                "sha256": "b665b6352093242912ffe835ec4774cae74fc2cf03a9a385eab0ce0fcb4cbad4"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9848f395b3ed48ca21f786983a55fd38",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 129783,
            "upload_time": "2024-12-16T22:40:43",
            "upload_time_iso_8601": "2024-12-16T22:40:43.761241Z",
            "url": "https://files.pythonhosted.org/packages/90/77/b145528a4604e6f239577279db6d488ee16ec0133ea879fcac1489d1ea73/rms_fpzip-1.3.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91ed345c76c22814b03154065f787939def749d28297589747149b9b7d162b4a",
                "md5": "dd179c4eec0d624d320db17c46f07c6d",
                "sha256": "7f3d47069c62653e508c87de91204352193295ba2b74015cd51cd0dc5755be74"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dd179c4eec0d624d320db17c46f07c6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1013860,
            "upload_time": "2024-12-16T22:40:46",
            "upload_time_iso_8601": "2024-12-16T22:40:46.551427Z",
            "url": "https://files.pythonhosted.org/packages/91/ed/345c76c22814b03154065f787939def749d28297589747149b9b7d162b4a/rms_fpzip-1.3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "190c0e78c255d2ebc7f1fe0951fd24ad3ebcbe4a61459e632e29c31c1e624ecc",
                "md5": "5f96b5905e99212b15e67ca09aea9fcc",
                "sha256": "b8420755a0399e0ab1f0b8b1fd5897faa680f9ec15f50423b25637d81c251c5e"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f96b5905e99212b15e67ca09aea9fcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1045484,
            "upload_time": "2024-12-16T22:40:49",
            "upload_time_iso_8601": "2024-12-16T22:40:49.076995Z",
            "url": "https://files.pythonhosted.org/packages/19/0c/0e78c255d2ebc7f1fe0951fd24ad3ebcbe4a61459e632e29c31c1e624ecc/rms_fpzip-1.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10c3876b262e3d1c78025954c632ce6bd9082973a9d991f66d06ac5fe4c920f3",
                "md5": "37f7436b59274cc7281ffcbcc7f5df07",
                "sha256": "3dd81d2704c43c20a6b77e1374b1056deaccd1e49fac59f56cb9704cd0599443"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "37f7436b59274cc7281ffcbcc7f5df07",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1035700,
            "upload_time": "2024-12-16T22:40:50",
            "upload_time_iso_8601": "2024-12-16T22:40:50.918709Z",
            "url": "https://files.pythonhosted.org/packages/10/c3/876b262e3d1c78025954c632ce6bd9082973a9d991f66d06ac5fe4c920f3/rms_fpzip-1.3.5-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": "b18bf7757c9345e7d4cd752f9696e235cd06a2eee0d746b0a967e71863e77c85",
                "md5": "0f6692b54ab6b8bfb7026b017f9e973f",
                "sha256": "d6bf4af3b1e9e6ad92a06fa11ff7511582b6e031ec66ce74fa343fb94411fa9f"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "0f6692b54ab6b8bfb7026b017f9e973f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 97723,
            "upload_time": "2024-12-16T22:40:55",
            "upload_time_iso_8601": "2024-12-16T22:40:55.603026Z",
            "url": "https://files.pythonhosted.org/packages/b1/8b/f7757c9345e7d4cd752f9696e235cd06a2eee0d746b0a967e71863e77c85/rms_fpzip-1.3.5-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ffe47f2b786a4545c70b5486ec3cff271a569051485d92dec9cf930eb1ae847",
                "md5": "25ec8448fd4ded54b8eb582e2423de4b",
                "sha256": "556788e8a445aac3943f07eb43479afa674aabb015ba910789bc6bee7a0f98f6"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "25ec8448fd4ded54b8eb582e2423de4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 111436,
            "upload_time": "2024-12-16T22:40:58",
            "upload_time_iso_8601": "2024-12-16T22:40:58.000553Z",
            "url": "https://files.pythonhosted.org/packages/9f/fe/47f2b786a4545c70b5486ec3cff271a569051485d92dec9cf930eb1ae847/rms_fpzip-1.3.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "428de1228ab1d71e43b8af0caa4fbb6c217b75ed88e4661b1bca179093236217",
                "md5": "4f1b7b7543f61c28eb64e6af9dcb7aaf",
                "sha256": "9d46d9d0ba2ed41dba251960ab58c6b4ab75060e252317032be21bece408cbcd"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f1b7b7543f61c28eb64e6af9dcb7aaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 141275,
            "upload_time": "2024-12-16T22:41:00",
            "upload_time_iso_8601": "2024-12-16T22:41:00.430029Z",
            "url": "https://files.pythonhosted.org/packages/42/8d/e1228ab1d71e43b8af0caa4fbb6c217b75ed88e4661b1bca179093236217/rms_fpzip-1.3.5-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cee52ea99b625070d05ef3fdc085b7945accb79d742be8b5baba350cb4b18e04",
                "md5": "aa6f05fed9e1dcdab944778a1471d034",
                "sha256": "e4e43ea41a4e0923d048e0ffc58eb6afba6b86a0a6e2471c44f1656450e1bfb0"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "aa6f05fed9e1dcdab944778a1471d034",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 130115,
            "upload_time": "2024-12-16T22:41:01",
            "upload_time_iso_8601": "2024-12-16T22:41:01.575337Z",
            "url": "https://files.pythonhosted.org/packages/ce/e5/2ea99b625070d05ef3fdc085b7945accb79d742be8b5baba350cb4b18e04/rms_fpzip-1.3.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b61813f42abfeebcdd18e8b1042532dd1c2906baed15a12c2b293111a9f73578",
                "md5": "2efef6f695c415bc7f446698804dd2ce",
                "sha256": "64dc5efa1e156758d92715406dad3009d105f66947e5e2623105663fb6fbf8e1"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2efef6f695c415bc7f446698804dd2ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1002951,
            "upload_time": "2024-12-16T22:41:02",
            "upload_time_iso_8601": "2024-12-16T22:41:02.702566Z",
            "url": "https://files.pythonhosted.org/packages/b6/18/13f42abfeebcdd18e8b1042532dd1c2906baed15a12c2b293111a9f73578/rms_fpzip-1.3.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1932019f77e825bdb63822baf08695d1a6fbd1741ab0c118c6696987a347ef5a",
                "md5": "a0fa8b51a4c2f70b3c5c9e867ca8c25e",
                "sha256": "8b3a799127f8a5f7506caed8723f98048d47bbd8aba792d90f23e76681f86fca"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a0fa8b51a4c2f70b3c5c9e867ca8c25e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1041767,
            "upload_time": "2024-12-16T22:41:05",
            "upload_time_iso_8601": "2024-12-16T22:41:05.373094Z",
            "url": "https://files.pythonhosted.org/packages/19/32/019f77e825bdb63822baf08695d1a6fbd1741ab0c118c6696987a347ef5a/rms_fpzip-1.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b936903ac94174305165e8487ed16adda1f3c12e8dbe8fbe1de2bda31ea58580",
                "md5": "5dc43f53342a07fbf87200dcaff96889",
                "sha256": "6536547391d3ff281afa8d8f88c690781890f480c46dd11d569328d8a5381ac3"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5dc43f53342a07fbf87200dcaff96889",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1023033,
            "upload_time": "2024-12-16T22:41:08",
            "upload_time_iso_8601": "2024-12-16T22:41:08.075653Z",
            "url": "https://files.pythonhosted.org/packages/b9/36/903ac94174305165e8487ed16adda1f3c12e8dbe8fbe1de2bda31ea58580/rms_fpzip-1.3.5-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": "881d8e9d18e14707bc38a5a38d68a0e7365bf127d7039d503ad32b7d5910e012",
                "md5": "d6995c43df2aace9022babdc879697c3",
                "sha256": "b868b8aba50d83f49bc9ae9ec6020850512c0687880a41ad9919c6603917ff4d"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d6995c43df2aace9022babdc879697c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 97058,
            "upload_time": "2024-12-16T22:41:09",
            "upload_time_iso_8601": "2024-12-16T22:41:09.232359Z",
            "url": "https://files.pythonhosted.org/packages/88/1d/8e9d18e14707bc38a5a38d68a0e7365bf127d7039d503ad32b7d5910e012/rms_fpzip-1.3.5-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fea546c83ef2474a54c13e0482ad9afc30d1be7028911dba7014ea4d5d950cf5",
                "md5": "6a419e6cab3b4df506a15abf36ccc3e6",
                "sha256": "95f3b8b1d85bc721d365c2c73a9a894d0ead6aae2d3ff7f36f9cc95a9f0e685e"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6a419e6cab3b4df506a15abf36ccc3e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 111042,
            "upload_time": "2024-12-16T22:41:10",
            "upload_time_iso_8601": "2024-12-16T22:41:10.467337Z",
            "url": "https://files.pythonhosted.org/packages/fe/a5/46c83ef2474a54c13e0482ad9afc30d1be7028911dba7014ea4d5d950cf5/rms_fpzip-1.3.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30e7970f85e1bcd043eeda4b480857fa64311d4617789ea72e9cafc58a42bb38",
                "md5": "fc844dbba46fa51ef950aaa2a3da3699",
                "sha256": "50b210b70f488dd1aa8d9d4b3b8fd74f088dc449d01a36971684b58117fa5de8"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc844dbba46fa51ef950aaa2a3da3699",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 139838,
            "upload_time": "2024-12-16T22:41:12",
            "upload_time_iso_8601": "2024-12-16T22:41:12.721113Z",
            "url": "https://files.pythonhosted.org/packages/30/e7/970f85e1bcd043eeda4b480857fa64311d4617789ea72e9cafc58a42bb38/rms_fpzip-1.3.5-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3313d7c24470aa42511f24db09255594f5310c94f983542511750f0e017a1fa",
                "md5": "c6da7432c70a2a40cc77d594688b4103",
                "sha256": "ffee38b6320123b941d4250b75765db9d70c37a112291a47aa9e7d9372d65d6d"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c6da7432c70a2a40cc77d594688b4103",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 128797,
            "upload_time": "2024-12-16T22:41:15",
            "upload_time_iso_8601": "2024-12-16T22:41:15.287858Z",
            "url": "https://files.pythonhosted.org/packages/c3/31/3d7c24470aa42511f24db09255594f5310c94f983542511750f0e017a1fa/rms_fpzip-1.3.5-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e9d13a456dbfb40ad0d7038f558b836a0163931419380b868b6c63439e32c68",
                "md5": "7414575933c6dbd1b738d923cfaf6bb8",
                "sha256": "bda9978273f0aeb9d75057b1c909925f667db3322e77a50f3e52cda443624e96"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7414575933c6dbd1b738d923cfaf6bb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 997945,
            "upload_time": "2024-12-16T22:41:16",
            "upload_time_iso_8601": "2024-12-16T22:41:16.441118Z",
            "url": "https://files.pythonhosted.org/packages/3e/9d/13a456dbfb40ad0d7038f558b836a0163931419380b868b6c63439e32c68/rms_fpzip-1.3.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d5532d0964864f8cab38a716e428f0583029a66857640b0dac58b22c99c8578",
                "md5": "d24a25e63370cbc8e039d8f7fa0a85c9",
                "sha256": "c184b6a43d6f6200213cc6e11a11ce2134db834747ac4b62e411767c1dac1072"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d24a25e63370cbc8e039d8f7fa0a85c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1038545,
            "upload_time": "2024-12-16T22:41:17",
            "upload_time_iso_8601": "2024-12-16T22:41:17.796997Z",
            "url": "https://files.pythonhosted.org/packages/8d/55/32d0964864f8cab38a716e428f0583029a66857640b0dac58b22c99c8578/rms_fpzip-1.3.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a19877ecd4f9d561d631e65c93af6ba0f79a88be5258120318a25439fe0e57fd",
                "md5": "1390fc9e007b3b942b54583216e821db",
                "sha256": "cded5fd7029ccf8bc17722d79488ceacb1aaa6acf591cb1645c0bc03946f2784"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1390fc9e007b3b942b54583216e821db",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1019556,
            "upload_time": "2024-12-16T22:41:19",
            "upload_time_iso_8601": "2024-12-16T22:41:19.181312Z",
            "url": "https://files.pythonhosted.org/packages/a1/98/77ecd4f9d561d631e65c93af6ba0f79a88be5258120318a25439fe0e57fd/rms_fpzip-1.3.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cc93fe14bb66f74cb2262a9c418c7f39c9b6f0563fb56e229ebc0b6b8a23b34",
                "md5": "77dc35bcde6d79a794bb2eb2dffd9382",
                "sha256": "d2de4347b23e0da42bba8e02992f64328327cb7ddd3814e62dd3afa453379749"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "77dc35bcde6d79a794bb2eb2dffd9382",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 96788,
            "upload_time": "2024-12-16T22:41:21",
            "upload_time_iso_8601": "2024-12-16T22:41:21.752415Z",
            "url": "https://files.pythonhosted.org/packages/6c/c9/3fe14bb66f74cb2262a9c418c7f39c9b6f0563fb56e229ebc0b6b8a23b34/rms_fpzip-1.3.5-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26c4462b097080bcbf178bc7ee7867797112fd8cf11f5448f89f2429418ff31e",
                "md5": "0f66ab3d35d93fd22de0828900c241d8",
                "sha256": "188e9ac10807a6d0ea3e8df1783bf5c098db610f748c77c1eba8505e5f6de64c"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0f66ab3d35d93fd22de0828900c241d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 110676,
            "upload_time": "2024-12-16T22:41:22",
            "upload_time_iso_8601": "2024-12-16T22:41:22.787514Z",
            "url": "https://files.pythonhosted.org/packages/26/c4/462b097080bcbf178bc7ee7867797112fd8cf11f5448f89f2429418ff31e/rms_fpzip-1.3.5-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fafce40b46501b83743d3428a7ff2b0e44534628aeaa10075510c7f8777d1ce",
                "md5": "7f5ca6c8672f2b247090caaa82c185ba",
                "sha256": "2c6b63c600a4d71b6ad352363a2465c356d545bde1d6801ae4ba32ca4b4ded2e"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f5ca6c8672f2b247090caaa82c185ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 141131,
            "upload_time": "2024-12-16T22:41:23",
            "upload_time_iso_8601": "2024-12-16T22:41:23.812796Z",
            "url": "https://files.pythonhosted.org/packages/6f/af/ce40b46501b83743d3428a7ff2b0e44534628aeaa10075510c7f8777d1ce/rms_fpzip-1.3.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa8f4588439cff284bb2cd38795c9354f420aa7ace92d5814c276a95e117d81d",
                "md5": "90c8adee4d1017d6f55d08e1453c1e7c",
                "sha256": "a1911add34c3db0c6e609762750da05cea12890ebc44396135bd4eecfe8d7e24"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "90c8adee4d1017d6f55d08e1453c1e7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 130407,
            "upload_time": "2024-12-16T22:41:24",
            "upload_time_iso_8601": "2024-12-16T22:41:24.975902Z",
            "url": "https://files.pythonhosted.org/packages/aa/8f/4588439cff284bb2cd38795c9354f420aa7ace92d5814c276a95e117d81d/rms_fpzip-1.3.5-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92c0b722c101e67a30eea5b7192db355df4619480ab85769a7f238f3704ebbcd",
                "md5": "5918cb1e3b2ec64c6a6c284843108081",
                "sha256": "7bb9b383fc86bb986b02f1f1f3d11fa31c1cd7dd539e60054b5ecde2207a76f5"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5918cb1e3b2ec64c6a6c284843108081",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 970567,
            "upload_time": "2024-12-16T22:41:27",
            "upload_time_iso_8601": "2024-12-16T22:41:27.473932Z",
            "url": "https://files.pythonhosted.org/packages/92/c0/b722c101e67a30eea5b7192db355df4619480ab85769a7f238f3704ebbcd/rms_fpzip-1.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33ac7c64df393f736f0649315636ff2e926fa74594a3acf7c8ba507818664dec",
                "md5": "addb6a21e7116ae6bfb714e4dcd0b335",
                "sha256": "f876fccd9076ee8a779b8396560e5809aca7467008faf27ad7f3bd354a6fb458"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "addb6a21e7116ae6bfb714e4dcd0b335",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1004748,
            "upload_time": "2024-12-16T22:41:28",
            "upload_time_iso_8601": "2024-12-16T22:41:28.907148Z",
            "url": "https://files.pythonhosted.org/packages/33/ac/7c64df393f736f0649315636ff2e926fa74594a3acf7c8ba507818664dec/rms_fpzip-1.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25dbfacde9f1979cf447e72e5e723166a5b4574b6ba987ca093986a3389c4e68",
                "md5": "e816001b4f0053ac18e44a4f7f79c5fe",
                "sha256": "a87e60b0d152ae3113a5ad005969cdb609ce7e103fc74a1a330a15e4253b4e81"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e816001b4f0053ac18e44a4f7f79c5fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 998655,
            "upload_time": "2024-12-16T22:41:31",
            "upload_time_iso_8601": "2024-12-16T22:41:31.983546Z",
            "url": "https://files.pythonhosted.org/packages/25/db/facde9f1979cf447e72e5e723166a5b4574b6ba987ca093986a3389c4e68/rms_fpzip-1.3.5-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": "85598d9d83603e58fdbba7a38ed33671f88db436c68e3f71e7ac791ba521bc10",
                "md5": "0e7b0c55101e8640ce68f35943985262",
                "sha256": "95a115fa7b55df36cd44352ea62dc9d5e63f698bd8d9cce35921a336f68e6baa"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "0e7b0c55101e8640ce68f35943985262",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 98580,
            "upload_time": "2024-12-16T22:41:33",
            "upload_time_iso_8601": "2024-12-16T22:41:33.334996Z",
            "url": "https://files.pythonhosted.org/packages/85/59/8d9d83603e58fdbba7a38ed33671f88db436c68e3f71e7ac791ba521bc10/rms_fpzip-1.3.5-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d35cbbff75795cc91cb1f4e3110f9f0bf3c77bd0acafde5d32d112fb92798fe",
                "md5": "45e2b62ef8d4a52bfd9cc9ff2b03baab",
                "sha256": "7312704976bb44c71858a185b1a64b92ad5cf1e0ed125f17542e33bf95061cd7"
            },
            "downloads": -1,
            "filename": "rms_fpzip-1.3.5-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "45e2b62ef8d4a52bfd9cc9ff2b03baab",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 111810,
            "upload_time": "2024-12-16T22:41:34",
            "upload_time_iso_8601": "2024-12-16T22:41:34.381333Z",
            "url": "https://files.pythonhosted.org/packages/2d/35/cbbff75795cc91cb1f4e3110f9f0bf3c77bd0acafde5d32d112fb92798fe/rms_fpzip-1.3.5-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-16 22:40:27",
    "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: 8.45672s