Name | numpy-rms JSON |
Version |
0.4.2
JSON |
| download |
home_page | None |
Summary | A fast python library for calculating the RMS of a NumPy array |
upload_time | 2024-07-13 21:05:23 |
maintainer | None |
docs_url | None |
author | Iver Jordal |
requires_python | None |
license | MIT License Copyright (c) 2024 Nomono Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# numpy-rms: a fast function for calculating a series of Root Mean Square (RMS) values
* Written in C and takes advantage of AVX (on x86-64) or NEON (on ARM) for speed
* The fast implementation is tailored for C-contiguous 1-dimensional and 2-dimensional float32 arrays
# Installation
[![PyPI version](https://img.shields.io/pypi/v/numpy-rms.svg?style=flat)](https://pypi.org/project/numpy-rms/)
![python 3.8, 3.9, 3.10, 3.11, 3.12](https://img.shields.io/badge/Python-3.8%20|%203.9%20|%203.10%20|%203.11|%203.12-blue)
![os: Linux, macOS, Windows](https://img.shields.io/badge/OS-Linux%20|%20macOS%20|%20Windows-blue)
![CPU: x86_64 & arm64](https://img.shields.io/badge/CPU-x86__64%20|%20arm64-blue)
```
$ pip install numpy-rms
```
# Usage
```py
import numpy_rms
import numpy as np
arr = np.arange(40, dtype=np.float32)
rms_series = numpy_rms.rms(arr, window_size=10)
print(rms_series.shape) # (4,)
```
# Changelog
## [0.4.2] - 2024-07-13
### Changed
* Optimize the processing of multichannel arrays
For the complete changelog, go to [CHANGELOG.md](CHANGELOG.md)
# Development
* Install dev/build/test dependencies as denoted in pyproject.toml
* `CC=clang pip install -e .`
* `pytest`
# Acknowledgements
This library is maintained/backed by [Nomono](https://nomono.co/), a Norwegian audio AI startup.
Raw data
{
"_id": null,
"home_page": null,
"name": "numpy-rms",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Iver Jordal",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/b1/d8/6fc4d9409ecc9ff84fb3c6ad43c48f11331f8f6f51accc412287a0b349fd/numpy_rms-0.4.2.tar.gz",
"platform": null,
"description": "# numpy-rms: a fast function for calculating a series of Root Mean Square (RMS) values\n\n* Written in C and takes advantage of AVX (on x86-64) or NEON (on ARM) for speed\n* The fast implementation is tailored for C-contiguous 1-dimensional and 2-dimensional float32 arrays\n\n# Installation\n\n[![PyPI version](https://img.shields.io/pypi/v/numpy-rms.svg?style=flat)](https://pypi.org/project/numpy-rms/)\n![python 3.8, 3.9, 3.10, 3.11, 3.12](https://img.shields.io/badge/Python-3.8%20|%203.9%20|%203.10%20|%203.11|%203.12-blue)\n![os: Linux, macOS, Windows](https://img.shields.io/badge/OS-Linux%20|%20macOS%20|%20Windows-blue)\n![CPU: x86_64 & arm64](https://img.shields.io/badge/CPU-x86__64%20|%20arm64-blue)\n\n```\n$ pip install numpy-rms\n```\n\n# Usage\n\n```py\nimport numpy_rms\nimport numpy as np\n\narr = np.arange(40, dtype=np.float32)\nrms_series = numpy_rms.rms(arr, window_size=10)\nprint(rms_series.shape) # (4,)\n```\n\n# Changelog\n\n## [0.4.2] - 2024-07-13\n\n### Changed\n\n* Optimize the processing of multichannel arrays\n\nFor the complete changelog, go to [CHANGELOG.md](CHANGELOG.md)\n\n# Development\n\n* Install dev/build/test dependencies as denoted in pyproject.toml\n* `CC=clang pip install -e .`\n* `pytest`\n\n# Acknowledgements\n\nThis library is maintained/backed by [Nomono](https://nomono.co/), a Norwegian audio AI startup.\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2024 Nomono Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
"summary": "A fast python library for calculating the RMS of a NumPy array",
"version": "0.4.2",
"project_urls": {
"Homepage": "https://github.com/nomonosound/numpy-rms"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "8ff6a3af8c08f672de135f7e53fd0fd99947df919f3735398fda3d79e1fe6692",
"md5": "85e2e745ca1e66de1cafd2782d3d9205",
"sha256": "0f872b70578b8db26255d2334391bb60ff30139a8013392531da17713e9962cf"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "85e2e745ca1e66de1cafd2782d3d9205",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 9987,
"upload_time": "2024-07-13T21:04:26",
"upload_time_iso_8601": "2024-07-13T21:04:26.618467Z",
"url": "https://files.pythonhosted.org/packages/8f/f6/a3af8c08f672de135f7e53fd0fd99947df919f3735398fda3d79e1fe6692/numpy_rms-0.4.2-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b38d9561f7bb96aba3877a56453e3dfcdd024eb894835a7b2c1bc288142c68d7",
"md5": "621e46de6cf48f7b0f846d36d92950c6",
"sha256": "6b836d6c7a5bc11e6373abfc74f4d77ad1f1b4260c136e5c067357fe50a373d2"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "621e46de6cf48f7b0f846d36d92950c6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 10639,
"upload_time": "2024-07-13T21:04:28",
"upload_time_iso_8601": "2024-07-13T21:04:28.120133Z",
"url": "https://files.pythonhosted.org/packages/b3/8d/9561f7bb96aba3877a56453e3dfcdd024eb894835a7b2c1bc288142c68d7/numpy_rms-0.4.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54b9b783528addaf882f82c8924617e99a121d309f26a46b6b098743bbb5078c",
"md5": "909edcb3986d3c07148fd9a617fe3977",
"sha256": "1733bac17dc77e3d3a535e4be9175d6360c50325196a851049a97e23c982f09e"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "909edcb3986d3c07148fd9a617fe3977",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 17872,
"upload_time": "2024-07-13T21:04:29",
"upload_time_iso_8601": "2024-07-13T21:04:29.248725Z",
"url": "https://files.pythonhosted.org/packages/54/b9/b783528addaf882f82c8924617e99a121d309f26a46b6b098743bbb5078c/numpy_rms-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "20a421aec9c5bdc3ff6ad52159ebfb163bc858e820740970223da5837e89a7fb",
"md5": "d1fbf369f15588a22379dbdaa60b2376",
"sha256": "7f9221e98c503a291a65ee4afff119c2e96432ac373b250d17c001c230cf9a86"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d1fbf369f15588a22379dbdaa60b2376",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 17672,
"upload_time": "2024-07-13T21:04:30",
"upload_time_iso_8601": "2024-07-13T21:04:30.627863Z",
"url": "https://files.pythonhosted.org/packages/20/a4/21aec9c5bdc3ff6ad52159ebfb163bc858e820740970223da5837e89a7fb/numpy_rms-0.4.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86282b73f77e44ee594719a9fa58159d00944e3d04449bfd9ef0fc0856074b56",
"md5": "5aada85bd15ec00ba5c188ee769a448a",
"sha256": "5a794f37c006e3a48e5d0702d379154618a9ff8a3f0a6cab92ac8453e4e0553a"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5aada85bd15ec00ba5c188ee769a448a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 18108,
"upload_time": "2024-07-13T21:04:31",
"upload_time_iso_8601": "2024-07-13T21:04:31.887691Z",
"url": "https://files.pythonhosted.org/packages/86/28/2b73f77e44ee594719a9fa58159d00944e3d04449bfd9ef0fc0856074b56/numpy_rms-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "debf95a8c9e20dd3411084b2308fc164fa4931c4e1998b35d73d700325e835c3",
"md5": "a2778d5018fee4b28cf534fae79990af",
"sha256": "67d3c682574991f727b5f0838530c290224a825aab17df85a2cb50de2aea5270"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a2778d5018fee4b28cf534fae79990af",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 17676,
"upload_time": "2024-07-13T21:04:33",
"upload_time_iso_8601": "2024-07-13T21:04:33.189907Z",
"url": "https://files.pythonhosted.org/packages/de/bf/95a8c9e20dd3411084b2308fc164fa4931c4e1998b35d73d700325e835c3/numpy_rms-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c504921b4ca08616b6baf64d90a8085de1800d614dd34f5f3e83965aa1aab4b6",
"md5": "eb43f4d6dd07022a623ad6f1e953515b",
"sha256": "2e4d813f896f603737fa7aaab39a7a47c15c1848819dbe515fe4864bb78041d6"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "eb43f4d6dd07022a623ad6f1e953515b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 13412,
"upload_time": "2024-07-13T21:04:34",
"upload_time_iso_8601": "2024-07-13T21:04:34.217320Z",
"url": "https://files.pythonhosted.org/packages/c5/04/921b4ca08616b6baf64d90a8085de1800d614dd34f5f3e83965aa1aab4b6/numpy_rms-0.4.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7bb5c44137d6b2a4455805fba078f33cc62cb03bc259c3af8ae5b1d137b9314e",
"md5": "71f62ab09ccfea0020947be2e0a9d2e4",
"sha256": "cdd435a00597c849e213c615fb67f2be4bb85c1283ad37ad6bf7ca00bb44fd1f"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "71f62ab09ccfea0020947be2e0a9d2e4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 9985,
"upload_time": "2024-07-13T21:04:35",
"upload_time_iso_8601": "2024-07-13T21:04:35.532664Z",
"url": "https://files.pythonhosted.org/packages/7b/b5/c44137d6b2a4455805fba078f33cc62cb03bc259c3af8ae5b1d137b9314e/numpy_rms-0.4.2-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8a46a56464a789a645e7144ce1871b32b82a57834893d19f8095730659cb4d5",
"md5": "2d7f12bb304d4e99a326218eef11b4bd",
"sha256": "136f233cacc9c3b7534a0877ad0c54174fee59c7ee6b59ebcd64bf814abbcc25"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2d7f12bb304d4e99a326218eef11b4bd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 10637,
"upload_time": "2024-07-13T21:04:37",
"upload_time_iso_8601": "2024-07-13T21:04:37.419751Z",
"url": "https://files.pythonhosted.org/packages/d8/a4/6a56464a789a645e7144ce1871b32b82a57834893d19f8095730659cb4d5/numpy_rms-0.4.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ebb00696f6cb492f41f95d2dad68a1e7ad969e05d0d966284550c8a4343de4f3",
"md5": "18e5012555f28446655e3ffb4c7535e8",
"sha256": "1be36a85afe2d8201f8d032a8f825c9c54d9f96fd1f2dd85c34252dee5319533"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "18e5012555f28446655e3ffb4c7535e8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 17858,
"upload_time": "2024-07-13T21:04:38",
"upload_time_iso_8601": "2024-07-13T21:04:38.737643Z",
"url": "https://files.pythonhosted.org/packages/eb/b0/0696f6cb492f41f95d2dad68a1e7ad969e05d0d966284550c8a4343de4f3/numpy_rms-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47ef8b59c0385040876cb3a94b727ef882dd496e3a9a379b826d73ab2befaec2",
"md5": "ec6ca716c724a1b3dbb203d91a630159",
"sha256": "a67ddc18c2a23972da7b6de38cfcea30b54f3b9cefd2dba00f7a198509b3c909"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ec6ca716c724a1b3dbb203d91a630159",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 17662,
"upload_time": "2024-07-13T21:04:40",
"upload_time_iso_8601": "2024-07-13T21:04:40.138740Z",
"url": "https://files.pythonhosted.org/packages/47/ef/8b59c0385040876cb3a94b727ef882dd496e3a9a379b826d73ab2befaec2/numpy_rms-0.4.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "449ff63baf559ba374d253c637dad8c6a78a6f2caf7e58c71643f5914af5f407",
"md5": "73de1506cc3d5d0a9411d7fed4427e90",
"sha256": "a2976156bb4356284e9367ff4f48ac25a0c512e5e481b359ce1f6dde6019c178"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "73de1506cc3d5d0a9411d7fed4427e90",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 18119,
"upload_time": "2024-07-13T21:04:41",
"upload_time_iso_8601": "2024-07-13T21:04:41.561105Z",
"url": "https://files.pythonhosted.org/packages/44/9f/f63baf559ba374d253c637dad8c6a78a6f2caf7e58c71643f5914af5f407/numpy_rms-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f76eb6494863fae6e835a087a16bf345a809fe629307b5c61d51a90088c42ac1",
"md5": "3063f68ebb2f5c67026d1f1e39ae0977",
"sha256": "15fd446e5b10447d6e97628f0c17cde7a3e7cd5f3b4f246072fb5f4cfd28642c"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3063f68ebb2f5c67026d1f1e39ae0977",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 17679,
"upload_time": "2024-07-13T21:04:42",
"upload_time_iso_8601": "2024-07-13T21:04:42.864924Z",
"url": "https://files.pythonhosted.org/packages/f7/6e/b6494863fae6e835a087a16bf345a809fe629307b5c61d51a90088c42ac1/numpy_rms-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "90aa870a760b24a9a8810f31c34ff2871b5c24aaa6e856347a56dbf6bf7e4da5",
"md5": "cc9e0be487cb5e4a79b9e0f30a5bbefd",
"sha256": "2a22ec807e44a32cfea592a5e10bfa212b2d6d668e257c3880daa0c9fd066f7f"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "cc9e0be487cb5e4a79b9e0f30a5bbefd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 13410,
"upload_time": "2024-07-13T21:04:44",
"upload_time_iso_8601": "2024-07-13T21:04:44.193105Z",
"url": "https://files.pythonhosted.org/packages/90/aa/870a760b24a9a8810f31c34ff2871b5c24aaa6e856347a56dbf6bf7e4da5/numpy_rms-0.4.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78b045d404281c521ad5689d966d95c5f6515250a1e9f9b171463026cf8dd404",
"md5": "c93f9e4828f4107bef969c1bb924b33c",
"sha256": "2dcaf1f257cea1b3fb28d58ad351de2184a5f23ff41234f262a237a000b8ce55"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c93f9e4828f4107bef969c1bb924b33c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 9998,
"upload_time": "2024-07-13T21:04:45",
"upload_time_iso_8601": "2024-07-13T21:04:45.433257Z",
"url": "https://files.pythonhosted.org/packages/78/b0/45d404281c521ad5689d966d95c5f6515250a1e9f9b171463026cf8dd404/numpy_rms-0.4.2-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14ffacb1bc07ddbeb36f56f275601dcf2f60ce587666784c8b4894044505fc7c",
"md5": "a9e86e0abdbf12d42033b076f002bf44",
"sha256": "e4d2636920e2bd1a221da7385d5da8000b9fd7393a1de091fbe3586ad31e7853"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a9e86e0abdbf12d42033b076f002bf44",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 10636,
"upload_time": "2024-07-13T21:04:46",
"upload_time_iso_8601": "2024-07-13T21:04:46.715208Z",
"url": "https://files.pythonhosted.org/packages/14/ff/acb1bc07ddbeb36f56f275601dcf2f60ce587666784c8b4894044505fc7c/numpy_rms-0.4.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e464e9dc2432427f7d18a57773709e5d26ad5e1c115b1c47eb4dfd65216aa9e",
"md5": "cd7bd98083f2d740d267cadc0dc32d50",
"sha256": "885fde34172eb15fdc1aa804629b8cdeeb01e21fcd5b1c2a6d8a6516fc07f8dd"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "cd7bd98083f2d740d267cadc0dc32d50",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 18215,
"upload_time": "2024-07-13T21:04:47",
"upload_time_iso_8601": "2024-07-13T21:04:47.591765Z",
"url": "https://files.pythonhosted.org/packages/1e/46/4e9dc2432427f7d18a57773709e5d26ad5e1c115b1c47eb4dfd65216aa9e/numpy_rms-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf6d740aae547cd6bb85250f47ddda636d3878cfe12f3a0558b13b9fb827c31d",
"md5": "affb37fec8c6972afd1bad960657b061",
"sha256": "b4a20f59a278eef196267858411fbd283e98373d2c6f989b02bcc33d785ac675"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "affb37fec8c6972afd1bad960657b061",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 18030,
"upload_time": "2024-07-13T21:04:48",
"upload_time_iso_8601": "2024-07-13T21:04:48.888658Z",
"url": "https://files.pythonhosted.org/packages/cf/6d/740aae547cd6bb85250f47ddda636d3878cfe12f3a0558b13b9fb827c31d/numpy_rms-0.4.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fdf925f74b5a8d89c0addb1a031bdb4e39758839c24aec6904fe5d8233692726",
"md5": "c38f22a0ade586459a7fe87e832bea9d",
"sha256": "c9a5163ac0effda16fda77aff04eeab65ebeaef4afc2e3fe08cd19cfef84ced7"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c38f22a0ade586459a7fe87e832bea9d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 18282,
"upload_time": "2024-07-13T21:04:50",
"upload_time_iso_8601": "2024-07-13T21:04:50.151884Z",
"url": "https://files.pythonhosted.org/packages/fd/f9/25f74b5a8d89c0addb1a031bdb4e39758839c24aec6904fe5d8233692726/numpy_rms-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26daee976d3101e7fdfa74344413ad8c20a360b747422836916605feaf139894",
"md5": "11c750030f7d666ecf3e9b0e4cdb9cc9",
"sha256": "f9cabb0bff8046b6343c0d10b94759b00a0fd64dc13f2b238798287a352ff170"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "11c750030f7d666ecf3e9b0e4cdb9cc9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 17974,
"upload_time": "2024-07-13T21:04:51",
"upload_time_iso_8601": "2024-07-13T21:04:51.721122Z",
"url": "https://files.pythonhosted.org/packages/26/da/ee976d3101e7fdfa74344413ad8c20a360b747422836916605feaf139894/numpy_rms-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ad7d266500ba47294274d300a848304b585a176dd5317700a92cd8ad5b0f01af",
"md5": "8e56fc6a40230b06c1f433e581ff2025",
"sha256": "ff66710c0214cf943aaa8303565cb05356364703495c4ba809c6744b07df29ce"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "8e56fc6a40230b06c1f433e581ff2025",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 13424,
"upload_time": "2024-07-13T21:04:52",
"upload_time_iso_8601": "2024-07-13T21:04:52.692335Z",
"url": "https://files.pythonhosted.org/packages/ad/7d/266500ba47294274d300a848304b585a176dd5317700a92cd8ad5b0f01af/numpy_rms-0.4.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d92ecc7e244a9e2e9b9f1ce66a9c2282f771fdc18ff64d48e10942159084ec89",
"md5": "6f2147937eb8edaac507e2f9761b0919",
"sha256": "5eb62c650861343641362b192df384716c8bac0c0ab63e9626a38e7e4e8f90e4"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "6f2147937eb8edaac507e2f9761b0919",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 9979,
"upload_time": "2024-07-13T21:04:53",
"upload_time_iso_8601": "2024-07-13T21:04:53.646408Z",
"url": "https://files.pythonhosted.org/packages/d9/2e/cc7e244a9e2e9b9f1ce66a9c2282f771fdc18ff64d48e10942159084ec89/numpy_rms-0.4.2-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f27f4a2ba41e3e5c17c9bfc297d2550fd0e8fdf192deef63a9409ce73b12709e",
"md5": "601147dd8d4f01266cf04979f1e1e947",
"sha256": "10021133c6ef2bdd07f1978c263ee186f5e9d970bded77fe7d93c8b13322dd34"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "601147dd8d4f01266cf04979f1e1e947",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 10633,
"upload_time": "2024-07-13T21:04:54",
"upload_time_iso_8601": "2024-07-13T21:04:54.795650Z",
"url": "https://files.pythonhosted.org/packages/f2/7f/4a2ba41e3e5c17c9bfc297d2550fd0e8fdf192deef63a9409ce73b12709e/numpy_rms-0.4.2-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0862573b5c0d22b7213048b5ac2f1f352e4c4c3b87966e13aa0ba196405042ee",
"md5": "d13d654254add5b6e2177417def092e0",
"sha256": "90dbd92c987fdd28536ef26128cd075d774a04fa5cfdf68f415bf0cacb6c0fd4"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d13d654254add5b6e2177417def092e0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 18019,
"upload_time": "2024-07-13T21:04:56",
"upload_time_iso_8601": "2024-07-13T21:04:56.064470Z",
"url": "https://files.pythonhosted.org/packages/08/62/573b5c0d22b7213048b5ac2f1f352e4c4c3b87966e13aa0ba196405042ee/numpy_rms-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7db69879beea535ce542ea9a0e153bb661fa27d5ff2b25e183d1c92ca7163340",
"md5": "632d87443c2c048817c15a1b7090cbb0",
"sha256": "793744df9d60daa7d58b3c7b62136bef127b49a8da5f71429ab65164082e2682"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "632d87443c2c048817c15a1b7090cbb0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 17810,
"upload_time": "2024-07-13T21:04:57",
"upload_time_iso_8601": "2024-07-13T21:04:57.351089Z",
"url": "https://files.pythonhosted.org/packages/7d/b6/9879beea535ce542ea9a0e153bb661fa27d5ff2b25e183d1c92ca7163340/numpy_rms-0.4.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0ad26798ba06198711f9e65f6f33436c3240318c08602d9d40b732638bf5e2a2",
"md5": "528dec3ca2ed42a119aa1c319da1afe9",
"sha256": "952ae4c9895745457f0611742caaba318066498e365a2f52d415928c664b72ab"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "528dec3ca2ed42a119aa1c319da1afe9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 18247,
"upload_time": "2024-07-13T21:04:58",
"upload_time_iso_8601": "2024-07-13T21:04:58.349911Z",
"url": "https://files.pythonhosted.org/packages/0a/d2/6798ba06198711f9e65f6f33436c3240318c08602d9d40b732638bf5e2a2/numpy_rms-0.4.2-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b25dd45b17afa861055d98fd2cdee4fbccbbc3c63a27d72c5a66c878e0536a51",
"md5": "537e54d1a7595a391b5d9e061696e6a9",
"sha256": "d01e1021e79affc2cf0fb1439247250728c40e354bc0b68357841f6a5fa9a84c"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "537e54d1a7595a391b5d9e061696e6a9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 17831,
"upload_time": "2024-07-13T21:04:59",
"upload_time_iso_8601": "2024-07-13T21:04:59.297505Z",
"url": "https://files.pythonhosted.org/packages/b2/5d/d45b17afa861055d98fd2cdee4fbccbbc3c63a27d72c5a66c878e0536a51/numpy_rms-0.4.2-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "144f22170154b9a33c87feecb20c7ad96319dc8ec5726b196be59004490bf717",
"md5": "eb7433ff63bcd83e9949d9618db3d1e2",
"sha256": "53ac4b32a819c06ab005213b358f74866dec40da30404be00250a661ed242657"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "eb7433ff63bcd83e9949d9618db3d1e2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 13405,
"upload_time": "2024-07-13T21:05:00",
"upload_time_iso_8601": "2024-07-13T21:05:00.761920Z",
"url": "https://files.pythonhosted.org/packages/14/4f/22170154b9a33c87feecb20c7ad96319dc8ec5726b196be59004490bf717/numpy_rms-0.4.2-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c1ca2f9fad3ae75f528dcdaf702240985bf577b92ecc8c265a8923778bcfdc7b",
"md5": "c3783605ff1b77e8865478b9144a271f",
"sha256": "660a8c46fd226140ac447ccb480c66b8b8ad207326a03db77063cfa645976b40"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c3783605ff1b77e8865478b9144a271f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 9984,
"upload_time": "2024-07-13T21:05:02",
"upload_time_iso_8601": "2024-07-13T21:05:02.363803Z",
"url": "https://files.pythonhosted.org/packages/c1/ca/2f9fad3ae75f528dcdaf702240985bf577b92ecc8c265a8923778bcfdc7b/numpy_rms-0.4.2-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6b8b63f157bccd003f6bf0f17089c1413888d3872f76eab45ad5a17444f4fc37",
"md5": "525b4079f7e30c2d0b8eb4e284c22bcf",
"sha256": "b609c9f6211a2667f336eaca717371f305cd142505bc737bef66f3314f923c50"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "525b4079f7e30c2d0b8eb4e284c22bcf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 10636,
"upload_time": "2024-07-13T21:05:04",
"upload_time_iso_8601": "2024-07-13T21:05:04.136332Z",
"url": "https://files.pythonhosted.org/packages/6b/8b/63f157bccd003f6bf0f17089c1413888d3872f76eab45ad5a17444f4fc37/numpy_rms-0.4.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9bb7c1784377f28501bf03018d3bc85697f66b557f1af10e250573bd1782cf95",
"md5": "ba8d97a25a65cee4764066a65388b8f7",
"sha256": "9bee29a0f5fff0d5b5a94d001a64163a4114dd4181721b53f46592aa19726422"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ba8d97a25a65cee4764066a65388b8f7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 17870,
"upload_time": "2024-07-13T21:05:05",
"upload_time_iso_8601": "2024-07-13T21:05:05.312600Z",
"url": "https://files.pythonhosted.org/packages/9b/b7/c1784377f28501bf03018d3bc85697f66b557f1af10e250573bd1782cf95/numpy_rms-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a400ebb3da4d7d6be2ce03f909bc2fc48ce23f66e6d6e3c8c968ad304481060",
"md5": "641d6bcda6aa48c9b394d14c37405282",
"sha256": "db118e117ff51c3467aba7f4d12c87f129f65b5d2216f9640621838711fe72dd"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "641d6bcda6aa48c9b394d14c37405282",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 17665,
"upload_time": "2024-07-13T21:05:06",
"upload_time_iso_8601": "2024-07-13T21:05:06.561126Z",
"url": "https://files.pythonhosted.org/packages/1a/40/0ebb3da4d7d6be2ce03f909bc2fc48ce23f66e6d6e3c8c968ad304481060/numpy_rms-0.4.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d92c6da6d7d183a15e3b9661e26efb0790e51cdd531d2de621f5e5c23c7fb5ae",
"md5": "16dde0193f72b60174ed8355f352b960",
"sha256": "18000baa61aec01f9930a993cc8893c6dca0b0dcfd198e6bb180a898a0ac7264"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "16dde0193f72b60174ed8355f352b960",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 18101,
"upload_time": "2024-07-13T21:05:07",
"upload_time_iso_8601": "2024-07-13T21:05:07.868699Z",
"url": "https://files.pythonhosted.org/packages/d9/2c/6da6d7d183a15e3b9661e26efb0790e51cdd531d2de621f5e5c23c7fb5ae/numpy_rms-0.4.2-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "49d42fda5e7ded2b202e9dfbdd9df5bd31f148c7dcb42904f0572a518ba3f1c4",
"md5": "b2a258095d8584070a92bd7426732f24",
"sha256": "a0f97949cf9198fcbe849c0cf90a8ebaf5192916b84a39b90ec26564d889bab5"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b2a258095d8584070a92bd7426732f24",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 17670,
"upload_time": "2024-07-13T21:05:09",
"upload_time_iso_8601": "2024-07-13T21:05:09.078220Z",
"url": "https://files.pythonhosted.org/packages/49/d4/2fda5e7ded2b202e9dfbdd9df5bd31f148c7dcb42904f0572a518ba3f1c4/numpy_rms-0.4.2-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d846b2ea5a3d2da2ec6fb8e12061197edc2ae8ab99bb81ffc70d62ef2b2f57c0",
"md5": "34827ec991e8a683dc89552dd34dda22",
"sha256": "6308b0f00025ebeea63c1876a0815e026afb09eb47a8f109cbd2fc71c8abb501"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "34827ec991e8a683dc89552dd34dda22",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 13411,
"upload_time": "2024-07-13T21:05:10",
"upload_time_iso_8601": "2024-07-13T21:05:10.566583Z",
"url": "https://files.pythonhosted.org/packages/d8/46/b2ea5a3d2da2ec6fb8e12061197edc2ae8ab99bb81ffc70d62ef2b2f57c0/numpy_rms-0.4.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d195a2842ffde725a4e0b5a2d2cd3ca9cc559c18d11c347d51664fd74ce236e",
"md5": "7d4b3e1b7a0f9e49a656db2bc447b515",
"sha256": "ada1351d0a4475338ea77463e85a8af129fa1096020ac2a7bfc3bc6c95b1196d"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7d4b3e1b7a0f9e49a656db2bc447b515",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 8429,
"upload_time": "2024-07-13T21:05:11",
"upload_time_iso_8601": "2024-07-13T21:05:11.778397Z",
"url": "https://files.pythonhosted.org/packages/2d/19/5a2842ffde725a4e0b5a2d2cd3ca9cc559c18d11c347d51664fd74ce236e/numpy_rms-0.4.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff642e283b59dc8435cf22ce24e40c054485d4f0056523059089bf4baa283fff",
"md5": "39514347589c1a0bd7eb0f848af286f3",
"sha256": "bc1996b8c04a000c7678775d28ff2bf9a064eef8deadd47d63d4a322592bb873"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "39514347589c1a0bd7eb0f848af286f3",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 9146,
"upload_time": "2024-07-13T21:05:13",
"upload_time_iso_8601": "2024-07-13T21:05:13.112326Z",
"url": "https://files.pythonhosted.org/packages/ff/64/2e283b59dc8435cf22ce24e40c054485d4f0056523059089bf4baa283fff/numpy_rms-0.4.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22a947c7c858864edf5a60ff228ca439fc693081954d129888d252dfd88ec6c3",
"md5": "ffb9afea210cddf8ccd8110b87282c87",
"sha256": "fe67f568583708418ee54f27fb10029ccfad71048f6d6bd5a3f78c35330d0db2"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ffb9afea210cddf8ccd8110b87282c87",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 10448,
"upload_time": "2024-07-13T21:05:14",
"upload_time_iso_8601": "2024-07-13T21:05:14.573216Z",
"url": "https://files.pythonhosted.org/packages/22/a9/47c7c858864edf5a60ff228ca439fc693081954d129888d252dfd88ec6c3/numpy_rms-0.4.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5d2c0056ca1f441a7a93defa059b8e3ba81470c807f460292cb8d13f21323755",
"md5": "b2a7ce91297c74b95e7941a62100506b",
"sha256": "913d6336759d1255b275b04724aba20a6352ff971863d1e3dfce41681e7046ad"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b2a7ce91297c74b95e7941a62100506b",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 10195,
"upload_time": "2024-07-13T21:05:15",
"upload_time_iso_8601": "2024-07-13T21:05:15.665090Z",
"url": "https://files.pythonhosted.org/packages/5d/2c/0056ca1f441a7a93defa059b8e3ba81470c807f460292cb8d13f21323755/numpy_rms-0.4.2-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0add7514dce91f9ef95da4ec917f63c679b32cc665a0cf9760fcbba183716336",
"md5": "f7e710cc5ebb9144cd99e38004387a98",
"sha256": "c3e77e1a9fe2ff13318679e73ed3cfdc2e857308bb6eb2e2facde099556b9ee1"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "f7e710cc5ebb9144cd99e38004387a98",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 12452,
"upload_time": "2024-07-13T21:05:16",
"upload_time_iso_8601": "2024-07-13T21:05:16.761352Z",
"url": "https://files.pythonhosted.org/packages/0a/dd/7514dce91f9ef95da4ec917f63c679b32cc665a0cf9760fcbba183716336/numpy_rms-0.4.2-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc1af09e64b26cb683b55341dd75631aed5d704febb578d6c19b5bf72c32704e",
"md5": "214a121f98013d54c3eaa8096c57db57",
"sha256": "405e9591aeec05fe5ba5c1011e2d21b6b2aefc3043917f9ad57bc0b0a799f3a9"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "214a121f98013d54c3eaa8096c57db57",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 8506,
"upload_time": "2024-07-13T21:05:18",
"upload_time_iso_8601": "2024-07-13T21:05:18.020993Z",
"url": "https://files.pythonhosted.org/packages/cc/1a/f09e64b26cb683b55341dd75631aed5d704febb578d6c19b5bf72c32704e/numpy_rms-0.4.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "365450039c6de41efd9b06fed689fe1fc8761e49d47417d1340b6e02c5c3ed8e",
"md5": "b4a9856558e0584250ceaad6b2bdc960",
"sha256": "b1e9ed9d77fe5e5e253e3eef0d3c8e7ee0ca47ddb7a178a2e12f863979747be2"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b4a9856558e0584250ceaad6b2bdc960",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 9147,
"upload_time": "2024-07-13T21:05:19",
"upload_time_iso_8601": "2024-07-13T21:05:19.095222Z",
"url": "https://files.pythonhosted.org/packages/36/54/50039c6de41efd9b06fed689fe1fc8761e49d47417d1340b6e02c5c3ed8e/numpy_rms-0.4.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f1da7b48e3779593e213a58c98c63f97c14a66e1f6d8bccc296c541021691c95",
"md5": "0e22ebb613ade71c128c183ce0b77825",
"sha256": "0e6fbb544f5d75552b35549047b339adc3d34e0da49deb8ba5201b732c8ee032"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0e22ebb613ade71c128c183ce0b77825",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 10448,
"upload_time": "2024-07-13T21:05:20",
"upload_time_iso_8601": "2024-07-13T21:05:20.699233Z",
"url": "https://files.pythonhosted.org/packages/f1/da/7b48e3779593e213a58c98c63f97c14a66e1f6d8bccc296c541021691c95/numpy_rms-0.4.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f452012d76bf2e1da4b84da14ccf168ca748b133ddad709e5d8031f2c3cc4165",
"md5": "db2903ee13b31f05449cae6b5fb47a34",
"sha256": "1c81c5f194f4e879e70b6dce8e4ac8afb654fffc89c1a1e26695cc6bf643725c"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "db2903ee13b31f05449cae6b5fb47a34",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 10195,
"upload_time": "2024-07-13T21:05:21",
"upload_time_iso_8601": "2024-07-13T21:05:21.840303Z",
"url": "https://files.pythonhosted.org/packages/f4/52/012d76bf2e1da4b84da14ccf168ca748b133ddad709e5d8031f2c3cc4165/numpy_rms-0.4.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d3257a082b6d677e2267ffd14bde5e1e90b76fa77660c98d271581501b52012b",
"md5": "6def76d35a062f64ea365bea91267303",
"sha256": "7bc7fe2df93cdf5d9b4478110320d14dadd8587c5846fcab006f370c37c3bcae"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "6def76d35a062f64ea365bea91267303",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 12451,
"upload_time": "2024-07-13T21:05:22",
"upload_time_iso_8601": "2024-07-13T21:05:22.814287Z",
"url": "https://files.pythonhosted.org/packages/d3/25/7a082b6d677e2267ffd14bde5e1e90b76fa77660c98d271581501b52012b/numpy_rms-0.4.2-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1d86fc4d9409ecc9ff84fb3c6ad43c48f11331f8f6f51accc412287a0b349fd",
"md5": "43bf8dea633001718cd7aa9121f2d02a",
"sha256": "cd1e82fb85afe24e963ec0f3465b90308b870b2395ec5144983d9b6c3979bff7"
},
"downloads": -1,
"filename": "numpy_rms-0.4.2.tar.gz",
"has_sig": false,
"md5_digest": "43bf8dea633001718cd7aa9121f2d02a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9578,
"upload_time": "2024-07-13T21:05:23",
"upload_time_iso_8601": "2024-07-13T21:05:23.789944Z",
"url": "https://files.pythonhosted.org/packages/b1/d8/6fc4d9409ecc9ff84fb3c6ad43c48f11331f8f6f51accc412287a0b349fd/numpy_rms-0.4.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-07-13 21:05:23",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "nomonosound",
"github_project": "numpy-rms",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "numpy-rms"
}