Name | rms-fpzip JSON |
Version |
1.3.2
JSON |
| download |
home_page | https://github.com/SETI/rms-fpzip/ |
Summary | Numpy wrapper for fpzip algorithm (P. Lindstrom & M. Isenburg, 2006) RMS Fork |
upload_time | 2024-06-20 00:11:33 |
maintainer | Robert French |
docs_url | None |
author | William Silversmith |
requires_python | >=3.9 |
license | BSD |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
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.2",
"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": "b3b52891a366a4326d9747b3107ec6a0d0174b53faa23bd647e1b7912d7f95db",
"md5": "49c96860f16fd85a6fb8431365d49e6c",
"sha256": "234dc1f70579102ec4bcff8a140c4e429b56929d8375ea52c5684dded03e27f3"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "49c96860f16fd85a6fb8431365d49e6c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 140651,
"upload_time": "2024-06-20T00:11:33",
"upload_time_iso_8601": "2024-06-20T00:11:33.716580Z",
"url": "https://files.pythonhosted.org/packages/b3/b5/2891a366a4326d9747b3107ec6a0d0174b53faa23bd647e1b7912d7f95db/rms_fpzip-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "08eee0a3c5a217d31d91f065c4fc01b19b8f42b484d77627c6768234c0f50d53",
"md5": "189673380c3b7be7ab678866326b0d42",
"sha256": "2e8bef7c3d12ca7dc5cf76e37c8bd988061e3146c1239ef2294ffb8b8f4b5559"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "189673380c3b7be7ab678866326b0d42",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 129733,
"upload_time": "2024-06-20T00:11:35",
"upload_time_iso_8601": "2024-06-20T00:11:35.333186Z",
"url": "https://files.pythonhosted.org/packages/08/ee/e0a3c5a217d31d91f065c4fc01b19b8f42b484d77627c6768234c0f50d53/rms_fpzip-1.3.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "afece71b157a64dea686c77c1033991f6ebf406119001bac34cec984537175c1",
"md5": "b585831d94dfa610d86c500405b745b5",
"sha256": "3a411d0a22be9c4eae348af761424f63cb9281df963e8e532f64b9556015964f"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b585831d94dfa610d86c500405b745b5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 968695,
"upload_time": "2024-06-20T00:11:37",
"upload_time_iso_8601": "2024-06-20T00:11:37.025738Z",
"url": "https://files.pythonhosted.org/packages/af/ec/e71b157a64dea686c77c1033991f6ebf406119001bac34cec984537175c1/rms_fpzip-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2474a9b6c96c064eafd715942caef03b49dcbd7e8f742738c117a0bce10933a8",
"md5": "7c56526cccb35d0cd473620489c540ca",
"sha256": "ff385dc4f255258f583d41d0231a2e7427235b55279475dd4534e4c561cbc8aa"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7c56526cccb35d0cd473620489c540ca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1002562,
"upload_time": "2024-06-20T00:11:39",
"upload_time_iso_8601": "2024-06-20T00:11:39.056419Z",
"url": "https://files.pythonhosted.org/packages/24/74/a9b6c96c064eafd715942caef03b49dcbd7e8f742738c117a0bce10933a8/rms_fpzip-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "98d5542325bde572a1f57279ad1c1c373d98abfbbe65a2df954d837c23b337d1",
"md5": "b6f731db19f6e88bd559cb8130a1d5c1",
"sha256": "b12edd844ef466c60709f0dcd73ca010671e2523b250e1fab7ebe87570d7aef0"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b6f731db19f6e88bd559cb8130a1d5c1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 996348,
"upload_time": "2024-06-20T00:11:41",
"upload_time_iso_8601": "2024-06-20T00:11:41.097282Z",
"url": "https://files.pythonhosted.org/packages/98/d5/542325bde572a1f57279ad1c1c373d98abfbbe65a2df954d837c23b337d1/rms_fpzip-1.3.2-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": "b961718c9e56a66a7a2ea212adf798db147428ab6d820a3fb39ece13d774d2e8",
"md5": "3e28428b79157c6d8e7b2961f103521c",
"sha256": "2aa5324772c1f2827bcef164c347fda3029c38db01fcd1e4f70cecbd31ad0d2d"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "3e28428b79157c6d8e7b2961f103521c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 98081,
"upload_time": "2024-06-20T00:11:42",
"upload_time_iso_8601": "2024-06-20T00:11:42.958499Z",
"url": "https://files.pythonhosted.org/packages/b9/61/718c9e56a66a7a2ea212adf798db147428ab6d820a3fb39ece13d774d2e8/rms_fpzip-1.3.2-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d87e83bb251c02613a8610af1bf5413da90a79d0c063755d41113a4b31aa0b30",
"md5": "e59afc0ffb4537e0665a1f9ac3abbc40",
"sha256": "6bd5f46a53a78b95a62315f19de62127392515b6b51883d1cffd849d19afbbb0"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "e59afc0ffb4537e0665a1f9ac3abbc40",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 111202,
"upload_time": "2024-06-20T00:11:44",
"upload_time_iso_8601": "2024-06-20T00:11:44.523772Z",
"url": "https://files.pythonhosted.org/packages/d8/7e/83bb251c02613a8610af1bf5413da90a79d0c063755d41113a4b31aa0b30/rms_fpzip-1.3.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b5bfa375993dd0843e26c3474325084a5b9cc0bf20a4e4309fcc824fc4d8a38",
"md5": "d9170e592fd217a9b9bd977f69b3d436",
"sha256": "5e4db49c326b72736b07e11d90ae16ee38e6a606fbdd957a06346d6e53b7e752"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d9170e592fd217a9b9bd977f69b3d436",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 140733,
"upload_time": "2024-06-20T00:11:45",
"upload_time_iso_8601": "2024-06-20T00:11:45.715301Z",
"url": "https://files.pythonhosted.org/packages/9b/5b/fa375993dd0843e26c3474325084a5b9cc0bf20a4e4309fcc824fc4d8a38/rms_fpzip-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5a8467623f383c019dc90103bf0bd60f6b9a1427ff122ff09332b3284ad1762",
"md5": "2691cdb975cbb5a6d044a6b6d08bf38a",
"sha256": "ec8c9957969939b2e6c4419485653d81c431c54de301179772f4693e3fcd3c36"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2691cdb975cbb5a6d044a6b6d08bf38a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 129781,
"upload_time": "2024-06-20T00:11:46",
"upload_time_iso_8601": "2024-06-20T00:11:46.905467Z",
"url": "https://files.pythonhosted.org/packages/c5/a8/467623f383c019dc90103bf0bd60f6b9a1427ff122ff09332b3284ad1762/rms_fpzip-1.3.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb99a16f3b2c3ca7df68183fd29e1a85d9583ea9017a761112b04be3bbb128da",
"md5": "6b39ca9954efa0ff3d912700fe46e8c5",
"sha256": "cd952ae425a137d43d974277a5d5de483e2cd5987d5475da5b0574ab091d12b7"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6b39ca9954efa0ff3d912700fe46e8c5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1013957,
"upload_time": "2024-06-20T00:11:48",
"upload_time_iso_8601": "2024-06-20T00:11:48.051240Z",
"url": "https://files.pythonhosted.org/packages/fb/99/a16f3b2c3ca7df68183fd29e1a85d9583ea9017a761112b04be3bbb128da/rms_fpzip-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7698aa7e97687c30bb98a226616aaf3ee634ab2da938b77d191372edbbfcf0d3",
"md5": "1cf6131d93dc706e7fbf59b6436828db",
"sha256": "09828cd3c150c8ae0379efff80c53e8adc3aaeed540ca1ce51ca245aa3b76b07"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1cf6131d93dc706e7fbf59b6436828db",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1045588,
"upload_time": "2024-06-20T00:11:49",
"upload_time_iso_8601": "2024-06-20T00:11:49.980227Z",
"url": "https://files.pythonhosted.org/packages/76/98/aa7e97687c30bb98a226616aaf3ee634ab2da938b77d191372edbbfcf0d3/rms_fpzip-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45238d89c0da275d9404175d7ba23ec0a5473fb5981e2f90fd38552dbd4f4f72",
"md5": "373152c1cd428bce4ce9e5472afa220f",
"sha256": "79eeffccc812de4255f26180bce3238e7b4e371e11aef3d1cdc44ed193982fc5"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "373152c1cd428bce4ce9e5472afa220f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1035804,
"upload_time": "2024-06-20T00:11:52",
"upload_time_iso_8601": "2024-06-20T00:11:52.096604Z",
"url": "https://files.pythonhosted.org/packages/45/23/8d89c0da275d9404175d7ba23ec0a5473fb5981e2f90fd38552dbd4f4f72/rms_fpzip-1.3.2-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": "ead5ed282596c66d09ec1424db3b2cef7f25a439e72e0543a2ff9c085789ee8a",
"md5": "5804e2cf7287a9d38e0c68c2f30aba7c",
"sha256": "673eb0633a910be15e4d6574f6b7223f539564bbecfbe551cf36663846ab7703"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "5804e2cf7287a9d38e0c68c2f30aba7c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 97674,
"upload_time": "2024-06-20T00:11:54",
"upload_time_iso_8601": "2024-06-20T00:11:54.033017Z",
"url": "https://files.pythonhosted.org/packages/ea/d5/ed282596c66d09ec1424db3b2cef7f25a439e72e0543a2ff9c085789ee8a/rms_fpzip-1.3.2-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c810ff2895a7b2a94f9842397bbde36914cba9dd62178870d379b29d8c12f9ae",
"md5": "c3c69dd174e964ae3326e53d25981f91",
"sha256": "2a7093e0ced35e3267c6b63fa903bbbc57a4d39b81948a9ffdcad83149e7a2dd"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "c3c69dd174e964ae3326e53d25981f91",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 111326,
"upload_time": "2024-06-20T00:11:55",
"upload_time_iso_8601": "2024-06-20T00:11:55.625025Z",
"url": "https://files.pythonhosted.org/packages/c8/10/ff2895a7b2a94f9842397bbde36914cba9dd62178870d379b29d8c12f9ae/rms_fpzip-1.3.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e8811f3a8d3f14b30f5780a5b43cadb8e4bd8fc507b8da9e1db311ec0a36d3e",
"md5": "3e329ac92c8a4c71281bae0f7ad0942c",
"sha256": "d2364a5ec765a22fb304afc06e2ac4c967a12907d02872e68935dd3597e9d873"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "3e329ac92c8a4c71281bae0f7ad0942c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 141468,
"upload_time": "2024-06-20T00:11:57",
"upload_time_iso_8601": "2024-06-20T00:11:57.417079Z",
"url": "https://files.pythonhosted.org/packages/9e/88/11f3a8d3f14b30f5780a5b43cadb8e4bd8fc507b8da9e1db311ec0a36d3e/rms_fpzip-1.3.2-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "408cd17b642416a759d1721f5d07ba39fb6df99ec6b4743dd36935c7543bb818",
"md5": "30128ab15e0c1f49f4baa337e21aba5c",
"sha256": "3ef69807ff07f1024655bb6d2fc615ca59b0fc961f9e618fd1989f2977787748"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "30128ab15e0c1f49f4baa337e21aba5c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 130104,
"upload_time": "2024-06-20T00:11:59",
"upload_time_iso_8601": "2024-06-20T00:11:59.138414Z",
"url": "https://files.pythonhosted.org/packages/40/8c/d17b642416a759d1721f5d07ba39fb6df99ec6b4743dd36935c7543bb818/rms_fpzip-1.3.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce1ccfb46daf6b30dde3f8a918e1da65b46d75a5aba2a5c7015a7609e321188d",
"md5": "f0a2d6383052115adad71a8d56ce2ccf",
"sha256": "eb6cc1aa9c97378c74dae080144aaab0d4904cb0c4c100293aec97cc02d6356c"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f0a2d6383052115adad71a8d56ce2ccf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1004246,
"upload_time": "2024-06-20T00:12:00",
"upload_time_iso_8601": "2024-06-20T00:12:00.883613Z",
"url": "https://files.pythonhosted.org/packages/ce/1c/cfb46daf6b30dde3f8a918e1da65b46d75a5aba2a5c7015a7609e321188d/rms_fpzip-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2ddf330c42edcfb8203079ca2fbba7bec184bedaf51a6e25c93351c5ba0b90a",
"md5": "9e3f5f234756e2f0f9f51e8fc5f759fd",
"sha256": "9a26697ff963eb3ac6f8d3d84ad3448705bf5c550bffbce0b0edd5c24d8bc496"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9e3f5f234756e2f0f9f51e8fc5f759fd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1043004,
"upload_time": "2024-06-20T00:12:02",
"upload_time_iso_8601": "2024-06-20T00:12:02.609083Z",
"url": "https://files.pythonhosted.org/packages/a2/dd/f330c42edcfb8203079ca2fbba7bec184bedaf51a6e25c93351c5ba0b90a/rms_fpzip-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0fdf61eb1111ad8cc8db9aec036b980818a1b4f0e27f0aaf4dea925465277749",
"md5": "a3c8fb86fe3d08e16f612e31e5aa8356",
"sha256": "a9a401e73224cfb71df80cd6fe0760f685e01492c8f8b3af1af3d8f34bfc6cbe"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a3c8fb86fe3d08e16f612e31e5aa8356",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1024036,
"upload_time": "2024-06-20T00:12:04",
"upload_time_iso_8601": "2024-06-20T00:12:04.647539Z",
"url": "https://files.pythonhosted.org/packages/0f/df/61eb1111ad8cc8db9aec036b980818a1b4f0e27f0aaf4dea925465277749/rms_fpzip-1.3.2-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": "fc06bbd83abf81da1d7500240b73135900dea57fe9a52117b66725888747821b",
"md5": "65d6f90a812aae484c401aecedc6e353",
"sha256": "6488dc849a4bf0423ad40e0721f5e12ad61b772abfb4148cc567e675a45fd335"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "65d6f90a812aae484c401aecedc6e353",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 97095,
"upload_time": "2024-06-20T00:12:06",
"upload_time_iso_8601": "2024-06-20T00:12:06.014563Z",
"url": "https://files.pythonhosted.org/packages/fc/06/bbd83abf81da1d7500240b73135900dea57fe9a52117b66725888747821b/rms_fpzip-1.3.2-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa0ebf690c773038abb8daa3cd6e41f801bf4f070949eed3cf68d952551e0cf0",
"md5": "32d8481e715b3f728e58b27264a5d45e",
"sha256": "2004ad09e6e1b681cd96189038c2a5f8b05bdf655c97a6bdd1be99c5cef329c8"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "32d8481e715b3f728e58b27264a5d45e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 110813,
"upload_time": "2024-06-20T00:12:07",
"upload_time_iso_8601": "2024-06-20T00:12:07.212386Z",
"url": "https://files.pythonhosted.org/packages/fa/0e/bf690c773038abb8daa3cd6e41f801bf4f070949eed3cf68d952551e0cf0/rms_fpzip-1.3.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f62bbabb5f568dbc598561d420e3051d2217ddd5a90878093579015d7a22f6a0",
"md5": "a5837473fc2d2155cb980ea91e45017e",
"sha256": "5452e21aae4170034479cd79bce60323ab1af8d53f804538dc0e5896c0f16188"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a5837473fc2d2155cb980ea91e45017e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 141240,
"upload_time": "2024-06-20T00:12:27",
"upload_time_iso_8601": "2024-06-20T00:12:27.981285Z",
"url": "https://files.pythonhosted.org/packages/f6/2b/babb5f568dbc598561d420e3051d2217ddd5a90878093579015d7a22f6a0/rms_fpzip-1.3.2-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a955e00023dedde7c31af1f228388a0f85ec893b0e41a7989671e8907b46f9c",
"md5": "07197d4b6e7a691aa9a9d93e865f57d2",
"sha256": "29860a5cf83dd98430a6e5954464cb6512d99e48dc819065d3c6f4d5cde63795"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "07197d4b6e7a691aa9a9d93e865f57d2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 130390,
"upload_time": "2024-06-20T00:12:30",
"upload_time_iso_8601": "2024-06-20T00:12:30.932762Z",
"url": "https://files.pythonhosted.org/packages/2a/95/5e00023dedde7c31af1f228388a0f85ec893b0e41a7989671e8907b46f9c/rms_fpzip-1.3.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1cc5e99ceb02ba9c268c7de1878921f0469b3144d41b55bcad5120974329499b",
"md5": "821db2b8da7c125e8bf51dd90671dadf",
"sha256": "e4017a6881902a2a485e721a75aac5dc8dc3740fac50dcee4ca649e7a3b612ef"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "821db2b8da7c125e8bf51dd90671dadf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 970669,
"upload_time": "2024-06-20T00:12:32",
"upload_time_iso_8601": "2024-06-20T00:12:32.160263Z",
"url": "https://files.pythonhosted.org/packages/1c/c5/e99ceb02ba9c268c7de1878921f0469b3144d41b55bcad5120974329499b/rms_fpzip-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d515fbfe4e35f7e5407f596cddee337bfa7eed15b3042c58a6306bfc594d0ca",
"md5": "b698512f3c34f53bc515b144303af7b0",
"sha256": "17abc8cb3f62fae69cd10f22ef809aabccdce3c885c88d0cb9ca3da79df04d91"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b698512f3c34f53bc515b144303af7b0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1004846,
"upload_time": "2024-06-20T00:12:34",
"upload_time_iso_8601": "2024-06-20T00:12:34.170505Z",
"url": "https://files.pythonhosted.org/packages/5d/51/5fbfe4e35f7e5407f596cddee337bfa7eed15b3042c58a6306bfc594d0ca/rms_fpzip-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc598fc30469ada12d2fd18a16ebdb9022988199628c52e30b0960d6fe8e1ce4",
"md5": "2f9458c486bf84ba05cacb97354590a5",
"sha256": "bcf1920b8ac0e7e2e3b6e321fb65dbbb997bcc9717696e177fafeac4a98c460f"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2f9458c486bf84ba05cacb97354590a5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 998760,
"upload_time": "2024-06-20T00:12:35",
"upload_time_iso_8601": "2024-06-20T00:12:35.550705Z",
"url": "https://files.pythonhosted.org/packages/fc/59/8fc30469ada12d2fd18a16ebdb9022988199628c52e30b0960d6fe8e1ce4/rms_fpzip-1.3.2-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": "1c7eac6185c22e392709165b5938afb77c25106e9613547db7385f3ac56c117a",
"md5": "2be5299a8b440cbba3fb9843a443c5eb",
"sha256": "bd82d9d5b9a75eefce3965ea88c1454c8aba9cfff85e552606c2e849cd14c833"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "2be5299a8b440cbba3fb9843a443c5eb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 98614,
"upload_time": "2024-06-20T00:12:37",
"upload_time_iso_8601": "2024-06-20T00:12:37.040980Z",
"url": "https://files.pythonhosted.org/packages/1c/7e/ac6185c22e392709165b5938afb77c25106e9613547db7385f3ac56c117a/rms_fpzip-1.3.2-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e80af99bc7edb42a0994f7f55002f22de2936792e937ec5e9667d8e27b3983a2",
"md5": "26246541de025100a53351978fd5a4f9",
"sha256": "749d80a5a5c5db8d0feefa83e4a98a54ebff4a1deb110756e030bdb56b5b071c"
},
"downloads": -1,
"filename": "rms_fpzip-1.3.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "26246541de025100a53351978fd5a4f9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 111713,
"upload_time": "2024-06-20T00:12:38",
"upload_time_iso_8601": "2024-06-20T00:12:38.210034Z",
"url": "https://files.pythonhosted.org/packages/e8/0a/f99bc7edb42a0994f7f55002f22de2936792e937ec5e9667d8e27b3983a2/rms_fpzip-1.3.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-20 00:11:33",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "SETI",
"github_project": "rms-fpzip",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "rms-fpzip"
}