| Name | msgpack-white JSON |
| Version |
1.0.0
JSON |
| download |
| home_page | None |
| Summary | Determine the end of MessagePack data quickly |
| upload_time | 2025-10-10 03:32:53 |
| maintainer | None |
| docs_url | None |
| author | None |
| requires_python | >=3.9 |
| license | None |
| keywords |
msgpack
messagepack
|
| VCS |
|
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
No coveralls.
|
# msgpack-white
"MessagePack -- WHere Is The End?"
This package allows quickly determining the end of a MessagePack message.
## Usage
After installation, a single module `msgpack_white` is available, itself
containing a single class `White`. A `White` object maintains the state of a
MessagePack stream:
```python
>>> import msgpack_white
>>> w = msgpack_white.White()
```
Suppose we have three objects:
```python
>>> o1 = bytes.fromhex("81A17801")
>>> o2 = bytes.fromhex("81A179A3616263")
>>> o3 = bytes.fromhex("C3")
>>> import msgpack
>>> msgpack.loads(o1)
{'x': 1}
>>> msgpack.loads(o2)
{'y': 'abc'}
>>> msgpack.loads(o3)
True
```
But we've packed them together into a stream:
```python
>>> stream = o1 + o2 + o3
```
msgpack-white will let you split this back out into the separate components o1,
o2, and o3, so that they can be decoded individually.
`White` objects have only a single method, `feed`. You provide a byte string
(or other object supporting the buffer interface). There are three possible
outcomes:
* The byte string you provided includes the end of an object. In this case,
`feed` will return the index into the byte string you provided at which the
object ends. The `White` object is automatically reset at this point, so to
extract further objects, you'll need to re-feed the portion of the string
after this point.
* The byte string you provided does not include the end of an object. In this
case, `feed` returns `None`. The `White` object remembers everything that
has been provided to it so far, so when you receive more data, you should
only `feed` the new data you receive and not repeat any data that has already
been provided to `feed`.
* The byte string you provided does not represent valid MessagePack data. In
this case, a `ValueError` is raised. Since msgpack-white only does a very
minimal parse of the data, this is not guaranteed to catch all invalid
MessagePack messages, but it can catch some.
Let's say that our `stream` was broken up into 4 pieces of 3 bytes each:
```python
>>> p1 = stream[:3]
>>> p2 = stream[3:6]
>>> p3 = stream[6:9]
>>> p4 = stream[9:]
```
You feed data in piece-by-piece. (Note that pieces need not all be the same
size; this is just an example.)
```python
>>> w.feed(p1)
```
`feed` first returned `None`. This means that `p1` contains the prefix of an
object, not a complete object.
```python
>>> w.feed(p2)
1
```
`feed` returned 1 for `p2`. This means that `p1 + p2[:1]` represents a valid
object, and indeed it does:
```python
>>> msgpack.loads(p1 + p2[:1])
{'x': 1}
```
To decode the next object, we need to start by feeding the remainder of `p2`
in:
```python
>>> w.feed(p2[1:])
```
We get `None`, so there is no end of an object here. Same for `p3`, but not
`p4`:
```python
>>> w.feed(p3)
>>> w.feed(p4)
2
```
Hence, the next object is `p2[1:] + p3 + p4[:2]`:
```python
>>> w.feed(p2[1:] + p3 + p4[:2])
{'y': 'abc'}
```
Then to extract the last object:
```python
>>> w.feed(p4[2:])
1
```
Hence `p4[2:][:1]` is the last object:
```python
>>> msgpack.decode(p4[2:][:1])
True
```
If there was an error in the stream, we'd get a `ValueError`:
```python
>>> w.feed(b"\xC1")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: Invalid MessagePack message
```
msgpack-white is completely agnostic to whichever library you use to eventually
decode your MessagePack data. You can use it with the official msgpack Python
library, the MessagePack implementation inside msgspec, or no library at all if
you simply care about splitting valid MessagePack messages out of a stream.
Raw data
{
"_id": null,
"home_page": null,
"name": "msgpack-white",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "Alex Kirchhoff <py-msgpack-white@kirchhoff.digital>",
"keywords": "msgpack, MessagePack",
"author": null,
"author_email": "Alex Kirchhoff <py-msgpack-white@kirchhoff.digital>",
"download_url": "https://files.pythonhosted.org/packages/ad/6f/7a7d028074ba2cf55d9ff1360bbc695947f839ec30d1ea9b70d5b25b30e5/msgpack_white-1.0.0.tar.gz",
"platform": null,
"description": "# msgpack-white\n\n\"MessagePack -- WHere Is The End?\"\n\nThis package allows quickly determining the end of a MessagePack message.\n\n## Usage\n\nAfter installation, a single module `msgpack_white` is available, itself\ncontaining a single class `White`. A `White` object maintains the state of a\nMessagePack stream:\n\n```python\n>>> import msgpack_white\n>>> w = msgpack_white.White()\n```\n\nSuppose we have three objects:\n\n```python\n>>> o1 = bytes.fromhex(\"81A17801\")\n>>> o2 = bytes.fromhex(\"81A179A3616263\")\n>>> o3 = bytes.fromhex(\"C3\")\n>>> import msgpack\n>>> msgpack.loads(o1)\n{'x': 1}\n>>> msgpack.loads(o2)\n{'y': 'abc'}\n>>> msgpack.loads(o3)\nTrue\n```\n\nBut we've packed them together into a stream:\n\n```python\n>>> stream = o1 + o2 + o3\n```\n\nmsgpack-white will let you split this back out into the separate components o1,\no2, and o3, so that they can be decoded individually.\n\n`White` objects have only a single method, `feed`. You provide a byte string\n(or other object supporting the buffer interface). There are three possible\noutcomes:\n\n* The byte string you provided includes the end of an object. In this case,\n `feed` will return the index into the byte string you provided at which the\n object ends. The `White` object is automatically reset at this point, so to\n extract further objects, you'll need to re-feed the portion of the string\n after this point.\n* The byte string you provided does not include the end of an object. In this\n case, `feed` returns `None`. The `White` object remembers everything that\n has been provided to it so far, so when you receive more data, you should\n only `feed` the new data you receive and not repeat any data that has already\n been provided to `feed`.\n* The byte string you provided does not represent valid MessagePack data. In\n this case, a `ValueError` is raised. Since msgpack-white only does a very\n minimal parse of the data, this is not guaranteed to catch all invalid\n MessagePack messages, but it can catch some.\n\nLet's say that our `stream` was broken up into 4 pieces of 3 bytes each:\n\n```python\n>>> p1 = stream[:3]\n>>> p2 = stream[3:6]\n>>> p3 = stream[6:9]\n>>> p4 = stream[9:]\n```\n\nYou feed data in piece-by-piece. (Note that pieces need not all be the same\nsize; this is just an example.)\n\n```python\n>>> w.feed(p1)\n```\n\n`feed` first returned `None`. This means that `p1` contains the prefix of an\nobject, not a complete object.\n\n```python\n>>> w.feed(p2)\n1\n```\n\n`feed` returned 1 for `p2`. This means that `p1 + p2[:1]` represents a valid\nobject, and indeed it does:\n\n```python\n>>> msgpack.loads(p1 + p2[:1])\n{'x': 1}\n```\n\nTo decode the next object, we need to start by feeding the remainder of `p2`\nin:\n\n```python\n>>> w.feed(p2[1:])\n```\n\nWe get `None`, so there is no end of an object here. Same for `p3`, but not\n`p4`:\n\n```python\n>>> w.feed(p3)\n>>> w.feed(p4)\n2\n```\n\nHence, the next object is `p2[1:] + p3 + p4[:2]`:\n\n```python\n>>> w.feed(p2[1:] + p3 + p4[:2])\n{'y': 'abc'}\n```\n\nThen to extract the last object:\n\n```python\n>>> w.feed(p4[2:])\n1\n```\n\nHence `p4[2:][:1]` is the last object:\n\n```python\n>>> msgpack.decode(p4[2:][:1])\nTrue\n```\n\nIf there was an error in the stream, we'd get a `ValueError`:\n\n```python\n>>> w.feed(b\"\\xC1\")\nTraceback (most recent call last):\n File \"<stdin>\", line 1, in <module>\nValueError: Invalid MessagePack message\n```\n\nmsgpack-white is completely agnostic to whichever library you use to eventually\ndecode your MessagePack data. You can use it with the official msgpack Python\nlibrary, the MessagePack implementation inside msgspec, or no library at all if\nyou simply care about splitting valid MessagePack messages out of a stream.\n",
"bugtrack_url": null,
"license": null,
"summary": "Determine the end of MessagePack data quickly",
"version": "1.0.0",
"project_urls": null,
"split_keywords": [
"msgpack",
" messagepack"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "dc359ed6e2bc95bbb19d0818c8d74dce6c33afc8b4cf6be01981a34d63e601e7",
"md5": "0a158d74a06352827fdad08e62fa563c",
"sha256": "879e07549a4fdbadbdb73f550d6c9a57d33bfe8852da2a734006fce1e1c755c9"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "0a158d74a06352827fdad08e62fa563c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 10842,
"upload_time": "2025-10-10T03:30:45",
"upload_time_iso_8601": "2025-10-10T03:30:45.230908Z",
"url": "https://files.pythonhosted.org/packages/dc/35/9ed6e2bc95bbb19d0818c8d74dce6c33afc8b4cf6be01981a34d63e601e7/msgpack_white-1.0.0-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ade627a5e51a21d7df6d1728b2215b80ddc60c0626d6e2bfd3dcf9c3de41f4f6",
"md5": "b3611edf104830b3f332b1eb0d19b8b5",
"sha256": "ee2123847e1ea0129cf35a43d0cd570210bf16d676f270ddf083abba342f9732"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "b3611edf104830b3f332b1eb0d19b8b5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 17794,
"upload_time": "2025-10-10T03:30:46",
"upload_time_iso_8601": "2025-10-10T03:30:46.483432Z",
"url": "https://files.pythonhosted.org/packages/ad/e6/27a5e51a21d7df6d1728b2215b80ddc60c0626d6e2bfd3dcf9c3de41f4f6/msgpack_white-1.0.0-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06f0b1d95624897302735b7349639435603b7827a22091992bc982c1e9d8caf7",
"md5": "95800fdbd440d11cf6ed82b3c5c9d1a5",
"sha256": "7cada29d2cd1ac9e15ddd753370a016484a441724134b43d91370471e16e7500"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"has_sig": false,
"md5_digest": "95800fdbd440d11cf6ed82b3c5c9d1a5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 17764,
"upload_time": "2025-10-10T03:30:47",
"upload_time_iso_8601": "2025-10-10T03:30:47.508517Z",
"url": "https://files.pythonhosted.org/packages/06/f0/b1d95624897302735b7349639435603b7827a22091992bc982c1e9d8caf7/msgpack_white-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "582bcb7b41c8253807d33c80d0be26fdbe6a38201fda5a575c5dcb2cb918b4e2",
"md5": "5bc6ad91fca1ed0d7a813253e4e18eb4",
"sha256": "60c7dcceb1b9b9d8fb5a2299718736ee0248f035a3cdade07f8a1e646dd24b60"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "5bc6ad91fca1ed0d7a813253e4e18eb4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 18427,
"upload_time": "2025-10-10T03:30:48",
"upload_time_iso_8601": "2025-10-10T03:30:48.532971Z",
"url": "https://files.pythonhosted.org/packages/58/2b/cb7b41c8253807d33c80d0be26fdbe6a38201fda5a575c5dcb2cb918b4e2/msgpack_white-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c6c77575c93b31cc9e79dbb079e55180b024a6515483144c75196a989828b202",
"md5": "60536247944ca823d488b51784c76d31",
"sha256": "ae4d74530d809a77c92822fe17852239f2ec3c175cba19604af6ed2e59953130"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "60536247944ca823d488b51784c76d31",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 22457,
"upload_time": "2025-10-10T03:30:49",
"upload_time_iso_8601": "2025-10-10T03:30:49.555249Z",
"url": "https://files.pythonhosted.org/packages/c6/c7/7575c93b31cc9e79dbb079e55180b024a6515483144c75196a989828b202/msgpack_white-1.0.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0849a2a132fbf7d7c036960d5492a290c7fc39ae6125cb07a9b25722b9095935",
"md5": "5dc89af38afa9637242ee01ba7438b0a",
"sha256": "1d3c04c183a61d7c32c88fb72035981f4f5cfa98e73d9e9eca007bcd7a31aed1"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"has_sig": false,
"md5_digest": "5dc89af38afa9637242ee01ba7438b0a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 18440,
"upload_time": "2025-10-10T03:30:50",
"upload_time_iso_8601": "2025-10-10T03:30:50.477674Z",
"url": "https://files.pythonhosted.org/packages/08/49/a2a132fbf7d7c036960d5492a290c7fc39ae6125cb07a9b25722b9095935/msgpack_white-1.0.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8091dd97de5b46781795d56871b2149d17d5ddb29a66dc0d2056b57e080cdaee",
"md5": "5c0679174bde3907abf4f602baa339a3",
"sha256": "a9ea95f46c2547915bece6def2a4f570579dff923b0959272ed018528d6e3c29"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"has_sig": false,
"md5_digest": "5c0679174bde3907abf4f602baa339a3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 17445,
"upload_time": "2025-10-10T03:30:51",
"upload_time_iso_8601": "2025-10-10T03:30:51.500277Z",
"url": "https://files.pythonhosted.org/packages/80/91/dd97de5b46781795d56871b2149d17d5ddb29a66dc0d2056b57e080cdaee/msgpack_white-1.0.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3ee05d94d0afc675b7eb839a928354f74592c79a9f178743b0277bd0797bf538",
"md5": "c43fd6834bbc9fb6e81fe2e704015765",
"sha256": "b0157d99b5e990e53f043e00391affdbc725797e2cbe3e9b1a8b6a90d193422a"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c43fd6834bbc9fb6e81fe2e704015765",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 18521,
"upload_time": "2025-10-10T03:30:52",
"upload_time_iso_8601": "2025-10-10T03:30:52.224024Z",
"url": "https://files.pythonhosted.org/packages/3e/e0/5d94d0afc675b7eb839a928354f74592c79a9f178743b0277bd0797bf538/msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f082217e8dbe7f453d1a2fb719f689cbf3542d7ac5b5bbb995425bae47aa9fe",
"md5": "0f510aed822d4b54a3a33386c9f58866",
"sha256": "9d79fcbdb31fea3dfae24baa80066897288dc07b4b14e181cd4f5982a5b06677"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "0f510aed822d4b54a3a33386c9f58866",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 17543,
"upload_time": "2025-10-10T03:30:53",
"upload_time_iso_8601": "2025-10-10T03:30:53.346661Z",
"url": "https://files.pythonhosted.org/packages/7f/08/2217e8dbe7f453d1a2fb719f689cbf3542d7ac5b5bbb995425bae47aa9fe/msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f0455bcf3b77f74aa8f31885d6b24d69cd0c5ca5548ff265ac6a56f2e342cec6",
"md5": "0c99b659ed86b0fcb0ef16e9f7fe6e35",
"sha256": "2f34d29fdf579aa66140e8e71b6960b6152857d6613b426e369d986ecbde0784"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0c99b659ed86b0fcb0ef16e9f7fe6e35",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 18148,
"upload_time": "2025-10-10T03:30:54",
"upload_time_iso_8601": "2025-10-10T03:30:54.469107Z",
"url": "https://files.pythonhosted.org/packages/f0/45/5bcf3b77f74aa8f31885d6b24d69cd0c5ca5548ff265ac6a56f2e342cec6/msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a0c188c97f18b53d09c2a81463aa2e242637316d2689eb5d08ee84f9c0aaf59",
"md5": "4c0c3483a02be2c29ba568c14325b470",
"sha256": "f403674a28d6f5c13688dcf1d151f569afd3df42abbf68d1ea3115c006d75a18"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "4c0c3483a02be2c29ba568c14325b470",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 18645,
"upload_time": "2025-10-10T03:30:55",
"upload_time_iso_8601": "2025-10-10T03:30:55.901393Z",
"url": "https://files.pythonhosted.org/packages/2a/0c/188c97f18b53d09c2a81463aa2e242637316d2689eb5d08ee84f9c0aaf59/msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a2364a5079aa2a7da306f5332ff157d731c08b7e7afabd3427736f9041ac045d",
"md5": "29ee2196b8a6fdd47aa97e134a9b887b",
"sha256": "cc45b81aa6a693dd0ead78ad7a2660e13b0c4589d1498494019f12852ce9270b"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "29ee2196b8a6fdd47aa97e134a9b887b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 17138,
"upload_time": "2025-10-10T03:30:56",
"upload_time_iso_8601": "2025-10-10T03:30:56.621423Z",
"url": "https://files.pythonhosted.org/packages/a2/36/4a5079aa2a7da306f5332ff157d731c08b7e7afabd3427736f9041ac045d/msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7041f3737f0fe440e779772bee50d8b49e087c816d25ea4f1837c83384f1ce4",
"md5": "1e0473d20b0db37fd1f113076bd643fc",
"sha256": "b1d45b8c43f7dfcd3fea8b3ee0340aee1a1250e7576ce6b28cac2fd2893925c0"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "1e0473d20b0db37fd1f113076bd643fc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 17585,
"upload_time": "2025-10-10T03:30:57",
"upload_time_iso_8601": "2025-10-10T03:30:57.440186Z",
"url": "https://files.pythonhosted.org/packages/e7/04/1f3737f0fe440e779772bee50d8b49e087c816d25ea4f1837c83384f1ce4/msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41996787e970abbafa83fc8397d38d53f3a067296d38bdcf005a4a229fb346b4",
"md5": "eb200a0d07ed4bbcba103d36e9ff069b",
"sha256": "273ca1961d293f5c4541f4c08f74c1f8d6aaa1e623bae1767ad25d10183ca00e"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "eb200a0d07ed4bbcba103d36e9ff069b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 17910,
"upload_time": "2025-10-10T03:30:58",
"upload_time_iso_8601": "2025-10-10T03:30:58.505254Z",
"url": "https://files.pythonhosted.org/packages/41/99/6787e970abbafa83fc8397d38d53f3a067296d38bdcf005a4a229fb346b4/msgpack_white-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "03f741930296f7dc24797f3a3a951d789026d2b70c6c6be9d9b143d32f15876b",
"md5": "dbb74ad712a05b5edb4d38c6e361225b",
"sha256": "f9c47dffc7b56345a30e975aa6f35fb79eefc8c9f7fc8fe9ea195c166c80b7db"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "dbb74ad712a05b5edb4d38c6e361225b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 11656,
"upload_time": "2025-10-10T03:31:00",
"upload_time_iso_8601": "2025-10-10T03:31:00.408912Z",
"url": "https://files.pythonhosted.org/packages/03/f7/41930296f7dc24797f3a3a951d789026d2b70c6c6be9d9b143d32f15876b/msgpack_white-1.0.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c6f6c7ecdb325a8f682eb437df77b458670691182b711679359ee5676ef08e62",
"md5": "7a889a666429a853cf20dc79b6a38d34",
"sha256": "bbb56e028646a0247797701a5f6830107b223c65deb277c667e0a4e12602b698"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "7a889a666429a853cf20dc79b6a38d34",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 12242,
"upload_time": "2025-10-10T03:30:59",
"upload_time_iso_8601": "2025-10-10T03:30:59.283470Z",
"url": "https://files.pythonhosted.org/packages/c6/f6/c7ecdb325a8f682eb437df77b458670691182b711679359ee5676ef08e62/msgpack_white-1.0.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8dbc02accb43ac209d40c86789a2ff4c19eb7e040580ab55fab7ea2a4310a69",
"md5": "2d84bdf73b03adb7e27ecb5a3915c660",
"sha256": "199d77ee1df1ac8cb2d06f47c8b0c001b10048c2f5dfa710408ef573268d0e23"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "2d84bdf73b03adb7e27ecb5a3915c660",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 10838,
"upload_time": "2025-10-10T03:31:01",
"upload_time_iso_8601": "2025-10-10T03:31:01.539261Z",
"url": "https://files.pythonhosted.org/packages/c8/db/c02accb43ac209d40c86789a2ff4c19eb7e040580ab55fab7ea2a4310a69/msgpack_white-1.0.0-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e705d7a93df0a90293f437f29b29bfadf31f43664e08997635fba516f317fec4",
"md5": "f8689807ca92860b7b4d6e289b2f04fa",
"sha256": "80cf57076e126457ecfc746a5014d73c46d2fd00ea29dba39c912a2c0b87d3b9"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "f8689807ca92860b7b4d6e289b2f04fa",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 17815,
"upload_time": "2025-10-10T03:31:02",
"upload_time_iso_8601": "2025-10-10T03:31:02.661210Z",
"url": "https://files.pythonhosted.org/packages/e7/05/d7a93df0a90293f437f29b29bfadf31f43664e08997635fba516f317fec4/msgpack_white-1.0.0-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dbf8d3e28d378ab89ac17257e993d35a7f6b395a676499b96222f57c5555b252",
"md5": "7fee10f34381a8325ef13c3676b9c7b5",
"sha256": "fb947216df206a6f876aa3bba7d47e4b496fe954b097764d63503eef1e0a3c2e"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"has_sig": false,
"md5_digest": "7fee10f34381a8325ef13c3676b9c7b5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 17773,
"upload_time": "2025-10-10T03:31:03",
"upload_time_iso_8601": "2025-10-10T03:31:03.379189Z",
"url": "https://files.pythonhosted.org/packages/db/f8/d3e28d378ab89ac17257e993d35a7f6b395a676499b96222f57c5555b252/msgpack_white-1.0.0-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d9334f4a2964cbf11b0674d6225014cf915602caad80ff189c2bdc71d944070",
"md5": "528804aff69050fb9571eebfcc67a05b",
"sha256": "8ec97f1f5c596feaedb718b33df5d01be86a8cc31aa76efb5d803703fb91db41"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "528804aff69050fb9571eebfcc67a05b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 18428,
"upload_time": "2025-10-10T03:31:04",
"upload_time_iso_8601": "2025-10-10T03:31:04.196045Z",
"url": "https://files.pythonhosted.org/packages/4d/93/34f4a2964cbf11b0674d6225014cf915602caad80ff189c2bdc71d944070/msgpack_white-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "acbe904356b7e92758d2eb3427ce83a9f9104c705e9fca2c5dabb73cb52da698",
"md5": "c59345153bc6c2debaaf7d0a67a32512",
"sha256": "57682a4070a598246838a25db92afde8fcd8fe3f0d2b353382907e49f58f228f"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "c59345153bc6c2debaaf7d0a67a32512",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 23278,
"upload_time": "2025-10-10T03:31:05",
"upload_time_iso_8601": "2025-10-10T03:31:05.017596Z",
"url": "https://files.pythonhosted.org/packages/ac/be/904356b7e92758d2eb3427ce83a9f9104c705e9fca2c5dabb73cb52da698/msgpack_white-1.0.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c1bc4a7a6ee7f3e602af6a3842137537fdb842138a2e2b732732afb283d619b",
"md5": "9d89339e7a05c7bfd0898bbc9045d895",
"sha256": "c8cf9c8e3d5458cf8ca20533946a6eeab097c2bc4daeb8ae204d8e7f0d674022"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"has_sig": false,
"md5_digest": "9d89339e7a05c7bfd0898bbc9045d895",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 18439,
"upload_time": "2025-10-10T03:31:05",
"upload_time_iso_8601": "2025-10-10T03:31:05.836881Z",
"url": "https://files.pythonhosted.org/packages/7c/1b/c4a7a6ee7f3e602af6a3842137537fdb842138a2e2b732732afb283d619b/msgpack_white-1.0.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32e4552ef496b0a617717807c61a6918242efc9e5aa60ddcda5d5dd086c271d3",
"md5": "c4f8755d96923f050bb8166beafb884d",
"sha256": "adbbd0a4cf3dcc7427ad2369be5ab8a906e2854d313d239a509ff03994602d5d"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"has_sig": false,
"md5_digest": "c4f8755d96923f050bb8166beafb884d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 17452,
"upload_time": "2025-10-10T03:31:06",
"upload_time_iso_8601": "2025-10-10T03:31:06.656746Z",
"url": "https://files.pythonhosted.org/packages/32/e4/552ef496b0a617717807c61a6918242efc9e5aa60ddcda5d5dd086c271d3/msgpack_white-1.0.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bb5ac74019ce194c3c38db3876c6e587ed1084df7aaf9d426e132b7ab4bf6a26",
"md5": "4453ba4d8a00a32edd9ce4e26c79f3d1",
"sha256": "62c4d14cd0dfbcf714dd476c1ae264cf38fbf4aeb043e73c557d77c3d4a48fcd"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4453ba4d8a00a32edd9ce4e26c79f3d1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 18531,
"upload_time": "2025-10-10T03:31:07",
"upload_time_iso_8601": "2025-10-10T03:31:07.587703Z",
"url": "https://files.pythonhosted.org/packages/bb/5a/c74019ce194c3c38db3876c6e587ed1084df7aaf9d426e132b7ab4bf6a26/msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bf1db3c4171bf6673528c3ef9ec08ddba33313d8e0ca9f970529ccbda7c6a200",
"md5": "dd4b5d27b8203ee7b732f3d1e3cc1ff3",
"sha256": "580fadfb493e0bac4a871ec7a59efe46c9cc46ecd21b96657823c6636e20f4da"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "dd4b5d27b8203ee7b732f3d1e3cc1ff3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 17566,
"upload_time": "2025-10-10T03:31:08",
"upload_time_iso_8601": "2025-10-10T03:31:08.364108Z",
"url": "https://files.pythonhosted.org/packages/bf/1d/b3c4171bf6673528c3ef9ec08ddba33313d8e0ca9f970529ccbda7c6a200/msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e87b9842994a7b8506cdaa03aea5066036c98f7037bbee8e8bc24a2eafe76dab",
"md5": "9492a3c8749b63e832e03fab6cf5ccd8",
"sha256": "3a979c1bdff3c59a2e0cad19db56569febbe0dc36ba0affc6b1aeb3e7830de66"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "9492a3c8749b63e832e03fab6cf5ccd8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 18152,
"upload_time": "2025-10-10T03:31:09",
"upload_time_iso_8601": "2025-10-10T03:31:09.116836Z",
"url": "https://files.pythonhosted.org/packages/e8/7b/9842994a7b8506cdaa03aea5066036c98f7037bbee8e8bc24a2eafe76dab/msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b0c6a88617533dfbc3a96bfbfaacfd38b47b4c876f0510e064606bbecc8581f1",
"md5": "133cd599f695d4b0439e4e5ad5aa43a4",
"sha256": "bfb970e45358ac72838d8ba3b76d24e16d2cfa27413c180437e98bc2a4903251"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "133cd599f695d4b0439e4e5ad5aa43a4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 18661,
"upload_time": "2025-10-10T03:31:09",
"upload_time_iso_8601": "2025-10-10T03:31:09.945077Z",
"url": "https://files.pythonhosted.org/packages/b0/c6/a88617533dfbc3a96bfbfaacfd38b47b4c876f0510e064606bbecc8581f1/msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b160a7bc0dc63ae80c4a302c30b5d6a0c90fac0897bdba5ff33555fd9789eb68",
"md5": "da50c0f2087cfaeb5ae883018f1670e6",
"sha256": "9b45205513fc285c6cfde5bbdc5ec46c0f981e62ce4c9dddb13566001ae252f9"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "da50c0f2087cfaeb5ae883018f1670e6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 17152,
"upload_time": "2025-10-10T03:31:10",
"upload_time_iso_8601": "2025-10-10T03:31:10.750901Z",
"url": "https://files.pythonhosted.org/packages/b1/60/a7bc0dc63ae80c4a302c30b5d6a0c90fac0897bdba5ff33555fd9789eb68/msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c5a7020dbc7fee0dc25cf66d51a1aff0c8938111403fdb53a26d35b53d81cb4",
"md5": "180286185184b3057dd99b2af1d033bc",
"sha256": "6983759ca2f671bf9d47d51fd33e1eb7f8a46cccacd44ee9f4a1134fe4331549"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "180286185184b3057dd99b2af1d033bc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 17608,
"upload_time": "2025-10-10T03:31:11",
"upload_time_iso_8601": "2025-10-10T03:31:11.574816Z",
"url": "https://files.pythonhosted.org/packages/7c/5a/7020dbc7fee0dc25cf66d51a1aff0c8938111403fdb53a26d35b53d81cb4/msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01c0f860751b9fd01e00deb4c19acf03481d9e56cb8ad4a4767ab7e9d5e19ce0",
"md5": "187c87a0d05239a291fa946c51ee0a5d",
"sha256": "e87c553be8cd4b33d395637eadeb60f540cf62157dbefa30fea916e15e5a99ff"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "187c87a0d05239a291fa946c51ee0a5d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 17918,
"upload_time": "2025-10-10T03:31:12",
"upload_time_iso_8601": "2025-10-10T03:31:12.392086Z",
"url": "https://files.pythonhosted.org/packages/01/c0/f860751b9fd01e00deb4c19acf03481d9e56cb8ad4a4767ab7e9d5e19ce0/msgpack_white-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7eb1220d72386d2557b724b9a8c64b7cddf12d02f9114cf7e318f40644c80696",
"md5": "a0d50feb8a4e7cb786b71f04591c1ddf",
"sha256": "28f2cda5df92ef5c3cb68e6398d07a60ca19dbf3463637e69d7f33c64d9e2dcd"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "a0d50feb8a4e7cb786b71f04591c1ddf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 11655,
"upload_time": "2025-10-10T03:31:15",
"upload_time_iso_8601": "2025-10-10T03:31:15.056303Z",
"url": "https://files.pythonhosted.org/packages/7e/b1/220d72386d2557b724b9a8c64b7cddf12d02f9114cf7e318f40644c80696/msgpack_white-1.0.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a4af8833c7276e479f473dc8b236aefa19544566faf92509bf9f9f32efe4a43",
"md5": "f9de267b6dce62f55eb12c0442ffd7a4",
"sha256": "21ae1268fdb1ed24889459b9dd4a51241e4e67a757d1ea8aae7ccc89a1273184"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "f9de267b6dce62f55eb12c0442ffd7a4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 12245,
"upload_time": "2025-10-10T03:31:13",
"upload_time_iso_8601": "2025-10-10T03:31:13.107927Z",
"url": "https://files.pythonhosted.org/packages/3a/4a/f8833c7276e479f473dc8b236aefa19544566faf92509bf9f9f32efe4a43/msgpack_white-1.0.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eef1219c715241cb78c56fd5f885796cad8d1b3ea3ef731cac4118373a7d6496",
"md5": "8b064c0bd5375f68841c68a0561bd3e8",
"sha256": "21097107793c57b024405ef0c8a9b8038f383979051cf6b603f89f640fbfa16a"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "8b064c0bd5375f68841c68a0561bd3e8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 10834,
"upload_time": "2025-10-10T03:31:14",
"upload_time_iso_8601": "2025-10-10T03:31:14.356434Z",
"url": "https://files.pythonhosted.org/packages/ee/f1/219c715241cb78c56fd5f885796cad8d1b3ea3ef731cac4118373a7d6496/msgpack_white-1.0.0-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79701ae0c00037565ae727c849c3e35e31db9f1e0e90403562533a9083139ffd",
"md5": "7ef32a23f9ec48e4000b863d0e25ef55",
"sha256": "4ae9110b3b260b6cd2b9fd976aaa5804a4fef4ed80a5ac28f3e2b723aa96394c"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "7ef32a23f9ec48e4000b863d0e25ef55",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 10882,
"upload_time": "2025-10-10T03:31:16",
"upload_time_iso_8601": "2025-10-10T03:31:16.165084Z",
"url": "https://files.pythonhosted.org/packages/79/70/1ae0c00037565ae727c849c3e35e31db9f1e0e90403562533a9083139ffd/msgpack_white-1.0.0-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3de795783d3d46c00672a988e896aefac98d5a5f300faa1d47d38b0974af27b3",
"md5": "810dab78ddf11b50d546de51b65b4369",
"sha256": "148e2e7c66e81921e8885b05ade86039a2a50570a54e6ff64f20bdd6ec94925e"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "810dab78ddf11b50d546de51b65b4369",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 17966,
"upload_time": "2025-10-10T03:31:16",
"upload_time_iso_8601": "2025-10-10T03:31:16.883712Z",
"url": "https://files.pythonhosted.org/packages/3d/e7/95783d3d46c00672a988e896aefac98d5a5f300faa1d47d38b0974af27b3/msgpack_white-1.0.0-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "491514c5025d948ae25b480e21326d89d858046f6a4a7acba53931edd1ad208d",
"md5": "b690281ac0855f1fc14e44eafbdbd379",
"sha256": "3799fd4b4b887aa44b343893935a76407fe760184c2d42ea0e717fb1c730d341"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"has_sig": false,
"md5_digest": "b690281ac0855f1fc14e44eafbdbd379",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 18014,
"upload_time": "2025-10-10T03:31:17",
"upload_time_iso_8601": "2025-10-10T03:31:17.615114Z",
"url": "https://files.pythonhosted.org/packages/49/15/14c5025d948ae25b480e21326d89d858046f6a4a7acba53931edd1ad208d/msgpack_white-1.0.0-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3062cd0e23dbb4b66cf029c4a9abff8d78cc7f613e1c81cb93e58b9c2a4bec3a",
"md5": "f9966ae6e4275b34a054b887f79112d9",
"sha256": "ba9d573c41afdac874be9edc81fd8e236bfda95e032cde52fc7e4353d6611cd0"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "f9966ae6e4275b34a054b887f79112d9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 18616,
"upload_time": "2025-10-10T03:31:18",
"upload_time_iso_8601": "2025-10-10T03:31:18.387094Z",
"url": "https://files.pythonhosted.org/packages/30/62/cd0e23dbb4b66cf029c4a9abff8d78cc7f613e1c81cb93e58b9c2a4bec3a/msgpack_white-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cbbeba5633872e3c0b59aaadbbc88812697d61122dd075b25bf01de7a3677568",
"md5": "76a4ede2a7fd301a0efd106af4116ada",
"sha256": "906967eec38e1c850acd34830eaac33ffe74055cec7afee01571f985bd376af1"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "76a4ede2a7fd301a0efd106af4116ada",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 23026,
"upload_time": "2025-10-10T03:31:19",
"upload_time_iso_8601": "2025-10-10T03:31:19.148319Z",
"url": "https://files.pythonhosted.org/packages/cb/be/ba5633872e3c0b59aaadbbc88812697d61122dd075b25bf01de7a3677568/msgpack_white-1.0.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff80e30b0ba76363120978c0259de52b38429dfeae3123f380c6d2836ed44c42",
"md5": "b00f0e6beff9a19fb7a670ab13f70ad3",
"sha256": "8e94e9dfdfcb71a74be5cd62f713920bdd887165e63b6e39a46e67513e5ba2e4"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"has_sig": false,
"md5_digest": "b00f0e6beff9a19fb7a670ab13f70ad3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 18597,
"upload_time": "2025-10-10T03:31:19",
"upload_time_iso_8601": "2025-10-10T03:31:19.966764Z",
"url": "https://files.pythonhosted.org/packages/ff/80/e30b0ba76363120978c0259de52b38429dfeae3123f380c6d2836ed44c42/msgpack_white-1.0.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27c7b9b179d1f3581fd473f454c5f47e8e7b31e72799c5e3d162475aca4e35e4",
"md5": "4593eadcbf3fe19e8fba59457f7eedff",
"sha256": "725450ee748e327fece3dcd96c959728801339455db2c9ab54a2ded8c3758948"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"has_sig": false,
"md5_digest": "4593eadcbf3fe19e8fba59457f7eedff",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 17680,
"upload_time": "2025-10-10T03:31:20",
"upload_time_iso_8601": "2025-10-10T03:31:20.788894Z",
"url": "https://files.pythonhosted.org/packages/27/c7/b9b179d1f3581fd473f454c5f47e8e7b31e72799c5e3d162475aca4e35e4/msgpack_white-1.0.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "200102603fb02f0443b89253c63d728b61c0490599a00bccfa87decf911df177",
"md5": "02b9b3dc11e2948542dd3c70debc695f",
"sha256": "93b896b1c8e520e85094a303531dafe34a2887aca215883b9cfa805b30e97f4d"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "02b9b3dc11e2948542dd3c70debc695f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 18751,
"upload_time": "2025-10-10T03:31:21",
"upload_time_iso_8601": "2025-10-10T03:31:21.614461Z",
"url": "https://files.pythonhosted.org/packages/20/01/02603fb02f0443b89253c63d728b61c0490599a00bccfa87decf911df177/msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "463a85c30a0edfffb6d9bb60f4c19f37f3262ae63cbe7451427602d58b04f455",
"md5": "052c9d98eb36174f3f4a916d750b3083",
"sha256": "9f416fee2bc36b069f69bcc82ed05a8a28d651ac3f7d9054c19121eda8353853"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "052c9d98eb36174f3f4a916d750b3083",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 17659,
"upload_time": "2025-10-10T03:31:22",
"upload_time_iso_8601": "2025-10-10T03:31:22.813569Z",
"url": "https://files.pythonhosted.org/packages/46/3a/85c30a0edfffb6d9bb60f4c19f37f3262ae63cbe7451427602d58b04f455/msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b054707e7ec1f2cddf67ccd7edc7eefab1eff4a12a9dba8469274de7f44ad8f",
"md5": "1a04b7b85c91fadd3113b08de57631f1",
"sha256": "cf0612a69798c212321ef5dea1b202e9dba8f034cdbc2f2f263bcf029b51aeff"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1a04b7b85c91fadd3113b08de57631f1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 18377,
"upload_time": "2025-10-10T03:31:23",
"upload_time_iso_8601": "2025-10-10T03:31:23.558527Z",
"url": "https://files.pythonhosted.org/packages/6b/05/4707e7ec1f2cddf67ccd7edc7eefab1eff4a12a9dba8469274de7f44ad8f/msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "427d0e0468aba09f5ba771da00a9d5b7bca6dc009cad55d9bf53cf91e8942217",
"md5": "1d5a7a762b8d74b152a21c08edde621f",
"sha256": "962fb81934485e999257094dfe42dbe50e454920a886062e8c135d0e6a55e883"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "1d5a7a762b8d74b152a21c08edde621f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 18839,
"upload_time": "2025-10-10T03:31:24",
"upload_time_iso_8601": "2025-10-10T03:31:24.301008Z",
"url": "https://files.pythonhosted.org/packages/42/7d/0e0468aba09f5ba771da00a9d5b7bca6dc009cad55d9bf53cf91e8942217/msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e8e8930fd5874271ac23d8cd4d6be9dac1f54c08e21ccf38491a08921cf082ff",
"md5": "97bda43010f5924e5602550cd7034537",
"sha256": "10d58b1389c3784c5ca1a2953d679101458853e1d2b1298799b3387b0cedee3d"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "97bda43010f5924e5602550cd7034537",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 17327,
"upload_time": "2025-10-10T03:31:25",
"upload_time_iso_8601": "2025-10-10T03:31:25.165613Z",
"url": "https://files.pythonhosted.org/packages/e8/e8/930fd5874271ac23d8cd4d6be9dac1f54c08e21ccf38491a08921cf082ff/msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3c647ec3f4d8fcc86420f49404862bc87a7a0d5b08efdddac90488778b7c41a4",
"md5": "28d4631f7fd16be594ba149aaba497e9",
"sha256": "b4f785b074b0903c422ed91f6c0646a19e1c92c0630b955e6c80961aba0bf072"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "28d4631f7fd16be594ba149aaba497e9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 17833,
"upload_time": "2025-10-10T03:31:26",
"upload_time_iso_8601": "2025-10-10T03:31:26.216818Z",
"url": "https://files.pythonhosted.org/packages/3c/64/7ec3f4d8fcc86420f49404862bc87a7a0d5b08efdddac90488778b7c41a4/msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20c54133aabc242cf29d9307cf58a0d2ef07da7cf96361e31d9d0a6b1c580be7",
"md5": "114ef97a52d22be7c5da4b1a5fe821b3",
"sha256": "49f38d3cba986bbab3b46cd89e90dd539e53f8627d48433c50016e67e1470800"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "114ef97a52d22be7c5da4b1a5fe821b3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 18265,
"upload_time": "2025-10-10T03:31:27",
"upload_time_iso_8601": "2025-10-10T03:31:27.034673Z",
"url": "https://files.pythonhosted.org/packages/20/c5/4133aabc242cf29d9307cf58a0d2ef07da7cf96361e31d9d0a6b1c580be7/msgpack_white-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a6465726c9f9599a28eaec80de63337babae4eba4d8c5966e7277abf79e135d",
"md5": "132aac1f2e3f81b9b6594171e9a40e3f",
"sha256": "e99f21b7dbadb15f0189abb8676edc306d37d339277c13ed7a85341a08317a82"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "132aac1f2e3f81b9b6594171e9a40e3f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 11666,
"upload_time": "2025-10-10T03:31:29",
"upload_time_iso_8601": "2025-10-10T03:31:29.594805Z",
"url": "https://files.pythonhosted.org/packages/7a/64/65726c9f9599a28eaec80de63337babae4eba4d8c5966e7277abf79e135d/msgpack_white-1.0.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "973ba241ea130d9691400acfe13a59fb8a09cb66c9f2ac19195ea0500795fc50",
"md5": "4f9589daa4e34ac8700a8bd35b97da39",
"sha256": "559917dc0753296a67e0f6ba607d4161ca6c0406d35418154b932386f5a8cde4"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "4f9589daa4e34ac8700a8bd35b97da39",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 12271,
"upload_time": "2025-10-10T03:31:27",
"upload_time_iso_8601": "2025-10-10T03:31:27.852502Z",
"url": "https://files.pythonhosted.org/packages/97/3b/a241ea130d9691400acfe13a59fb8a09cb66c9f2ac19195ea0500795fc50/msgpack_white-1.0.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f32e6b32dc5cfc58ebc949c38a797a7f2b61cc3fd5c26b2dd535d7d52f91ba47",
"md5": "3f48a9ade921a925ca9da0217c51daa0",
"sha256": "de75c8a3486a5b3c8775e1e7e8f1ba298733e016ea171ecbf30d35157ad61f23"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "3f48a9ade921a925ca9da0217c51daa0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 10849,
"upload_time": "2025-10-10T03:31:28",
"upload_time_iso_8601": "2025-10-10T03:31:28.837891Z",
"url": "https://files.pythonhosted.org/packages/f3/2e/6b32dc5cfc58ebc949c38a797a7f2b61cc3fd5c26b2dd535d7d52f91ba47/msgpack_white-1.0.0-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "63deb682a53c8ff1da69da2e723291354955efd87a2da4b375f397be04afe02a",
"md5": "b2f96c1946d55310d3e4bc105482db64",
"sha256": "ae80662e7a989ebdd1ec0ceefb87a66591cd8a926e176f65e05fe9adb26aed3a"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313d-win32.whl",
"has_sig": false,
"md5_digest": "b2f96c1946d55310d3e4bc105482db64",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 11672,
"upload_time": "2025-10-10T03:31:45",
"upload_time_iso_8601": "2025-10-10T03:31:45.464297Z",
"url": "https://files.pythonhosted.org/packages/63/de/b682a53c8ff1da69da2e723291354955efd87a2da4b375f397be04afe02a/msgpack_white-1.0.0-cp313-cp313d-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3edbbfdbf22f3c425f87722d0d45e6ea49f9f17aabf86b444e599b23cc13fd92",
"md5": "159d7c04797ce1801789a6ba6995bd4c",
"sha256": "4a81b464b0c85e48edea749131828ed145dbf366bad494cbaad87d28ca37c0c8"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313d-win_amd64.whl",
"has_sig": false,
"md5_digest": "159d7c04797ce1801789a6ba6995bd4c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 12288,
"upload_time": "2025-10-10T03:31:43",
"upload_time_iso_8601": "2025-10-10T03:31:43.744527Z",
"url": "https://files.pythonhosted.org/packages/3e/db/bfdbf22f3c425f87722d0d45e6ea49f9f17aabf86b444e599b23cc13fd92/msgpack_white-1.0.0-cp313-cp313d-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b36c8575a327bd8d5ea8817a559bc3b64ae3744c5d09c1e28b8b3c7b51d8411",
"md5": "c47477712be7ff5f15a1406a0d72d7e5",
"sha256": "2f341313eb17692c8a58236e03818ed084aa6f818393a65e090e2fa03577ba48"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313d-win_arm64.whl",
"has_sig": false,
"md5_digest": "c47477712be7ff5f15a1406a0d72d7e5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 10856,
"upload_time": "2025-10-10T03:31:44",
"upload_time_iso_8601": "2025-10-10T03:31:44.443475Z",
"url": "https://files.pythonhosted.org/packages/3b/36/c8575a327bd8d5ea8817a559bc3b64ae3744c5d09c1e28b8b3c7b51d8411/msgpack_white-1.0.0-cp313-cp313d-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e3ee73f35792898367494b489753cb575ce45333353a1742941c0b9cf8c801a7",
"md5": "a884133b191da961617113d5b844db1b",
"sha256": "d34bb6000282dce57289e54d02a4fec0f799be3a8957fd22b48b7cd6f455f538"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "a884133b191da961617113d5b844db1b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 10885,
"upload_time": "2025-10-10T03:31:30",
"upload_time_iso_8601": "2025-10-10T03:31:30.313047Z",
"url": "https://files.pythonhosted.org/packages/e3/ee/73f35792898367494b489753cb575ce45333353a1742941c0b9cf8c801a7/msgpack_white-1.0.0-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fc28e27829c8b56ab28ef5127c5be739467fdf4054cbb9acd5d1076e26ddf79b",
"md5": "ac476855fb355bff4096f0c8813c86eb",
"sha256": "accefb54086a1235e9af32ba98713e38bc9f012b7039ff31cca744a4526b5fff"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "ac476855fb355bff4096f0c8813c86eb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 17932,
"upload_time": "2025-10-10T03:31:31",
"upload_time_iso_8601": "2025-10-10T03:31:31.027945Z",
"url": "https://files.pythonhosted.org/packages/fc/28/e27829c8b56ab28ef5127c5be739467fdf4054cbb9acd5d1076e26ddf79b/msgpack_white-1.0.0-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f405901bb806ffb39bbc6828d917442a496ecc69c1804a04a437842d94525732",
"md5": "116ae2d0845ff6181c511cb2333dd1e6",
"sha256": "44b9988b8249b105f5d44a66c0422a0de54d5b1d933ef50d274d35d84ca5d53a"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"has_sig": false,
"md5_digest": "116ae2d0845ff6181c511cb2333dd1e6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 17981,
"upload_time": "2025-10-10T03:31:31",
"upload_time_iso_8601": "2025-10-10T03:31:31.746419Z",
"url": "https://files.pythonhosted.org/packages/f4/05/901bb806ffb39bbc6828d917442a496ecc69c1804a04a437842d94525732/msgpack_white-1.0.0-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "299b404b24441dfb206f1b505debbecd4f11a9c77b68f6fe557f855d8944ff8b",
"md5": "5d797d13474dc08aa9fad0e642ce8a8b",
"sha256": "5f1c06c4ae9fc0abe58a847c4d4aa7d440ea31196f5353b518abab9bfe4c6aa5"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "5d797d13474dc08aa9fad0e642ce8a8b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 18584,
"upload_time": "2025-10-10T03:31:32",
"upload_time_iso_8601": "2025-10-10T03:31:32.504966Z",
"url": "https://files.pythonhosted.org/packages/29/9b/404b24441dfb206f1b505debbecd4f11a9c77b68f6fe557f855d8944ff8b/msgpack_white-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "59ef64c2c06df3dc3ee6d764c3e664a0bbe5d241d3932453b23ee7b6d2d6d719",
"md5": "bed0524df43a475fe97d1388cc8103ec",
"sha256": "180974b7a292718ec2e92b6d7e839164c84fb626ae9b9737193cc71d0e526aba"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "bed0524df43a475fe97d1388cc8103ec",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 21729,
"upload_time": "2025-10-10T03:31:33",
"upload_time_iso_8601": "2025-10-10T03:31:33.281072Z",
"url": "https://files.pythonhosted.org/packages/59/ef/64c2c06df3dc3ee6d764c3e664a0bbe5d241d3932453b23ee7b6d2d6d719/msgpack_white-1.0.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c3a22cc697306027125ffa10c39be11184ffdb7c8ed6b31eaa943ccf743aadf",
"md5": "bf992dd7f21c05cb9c9eab82666784bc",
"sha256": "e7d3e29bbff211e7547fe8e0e7c707b77857c1324cf454b563eba30e651aa5cc"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"has_sig": false,
"md5_digest": "bf992dd7f21c05cb9c9eab82666784bc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 18564,
"upload_time": "2025-10-10T03:31:34",
"upload_time_iso_8601": "2025-10-10T03:31:34.103002Z",
"url": "https://files.pythonhosted.org/packages/1c/3a/22cc697306027125ffa10c39be11184ffdb7c8ed6b31eaa943ccf743aadf/msgpack_white-1.0.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e1664b362e5006460b2f1e464542cb9748019f8e53d2d1d70560eb1188b982f6",
"md5": "691074bc9fce459789f898b89ea004a3",
"sha256": "2d87443be9219996bf81d42c781dacddf65ef1871509b8d50f490d8e5b657f8c"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"has_sig": false,
"md5_digest": "691074bc9fce459789f898b89ea004a3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 17639,
"upload_time": "2025-10-10T03:31:34",
"upload_time_iso_8601": "2025-10-10T03:31:34.922165Z",
"url": "https://files.pythonhosted.org/packages/e1/66/4b362e5006460b2f1e464542cb9748019f8e53d2d1d70560eb1188b982f6/msgpack_white-1.0.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "44109baaf27784c5522e5191fba2ba494638ef1206fc587ec8b3a444e14ad5cc",
"md5": "56a1156e31a234a22cb3ed6b2b8d6481",
"sha256": "409c36432153d47235a1dd7b3edef0db9ba3809e94d3e0c9e478afb251fb9e69"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "56a1156e31a234a22cb3ed6b2b8d6481",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 18789,
"upload_time": "2025-10-10T03:31:35",
"upload_time_iso_8601": "2025-10-10T03:31:35.680020Z",
"url": "https://files.pythonhosted.org/packages/44/10/9baaf27784c5522e5191fba2ba494638ef1206fc587ec8b3a444e14ad5cc/msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f76c14cb1485d37969ccd16cc4500ad2c5befe7d815d4d53013d459c56c4a14",
"md5": "7ba5babc7f7487f74504efaed8accf4c",
"sha256": "27acad0474802f6e0cb992b51e9ff4fc8ef2566ff552e637cb37535d9f82492d"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "7ba5babc7f7487f74504efaed8accf4c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 17707,
"upload_time": "2025-10-10T03:31:36",
"upload_time_iso_8601": "2025-10-10T03:31:36.403587Z",
"url": "https://files.pythonhosted.org/packages/0f/76/c14cb1485d37969ccd16cc4500ad2c5befe7d815d4d53013d459c56c4a14/msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "540b2d740790b711da914ed063e43a98b4aa24e882c0a2ff5b2cd745f5a9d549",
"md5": "c460013879ba118fff99f63d53c4e440",
"sha256": "03652e2cb9a298fc2a30a2e2b7b05b41844797240de86c208dede9f4011e1204"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c460013879ba118fff99f63d53c4e440",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 18434,
"upload_time": "2025-10-10T03:31:37",
"upload_time_iso_8601": "2025-10-10T03:31:37.172316Z",
"url": "https://files.pythonhosted.org/packages/54/0b/2d740790b711da914ed063e43a98b4aa24e882c0a2ff5b2cd745f5a9d549/msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "939e7a620637a806e1444c4f2a2ece353b66685633b333125815d6ceb8cd3724",
"md5": "b548bdb7d352e6968ccd36aa33bd2d87",
"sha256": "2ce93f3a4383980f5d21f761b4939a2054b1ca2e7c96896ec72cdfe779aa7493"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "b548bdb7d352e6968ccd36aa33bd2d87",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 18880,
"upload_time": "2025-10-10T03:31:38",
"upload_time_iso_8601": "2025-10-10T03:31:38.267232Z",
"url": "https://files.pythonhosted.org/packages/93/9e/7a620637a806e1444c4f2a2ece353b66685633b333125815d6ceb8cd3724/msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c4e60b240b8ef1c3f5e01b33c76c4f7715d25463ac577fe733fdda38e420b62",
"md5": "76a14342b4b41aa1956f4473aecf64bf",
"sha256": "1888b27cafeb8aa4184cdf01e59f6e1a93db0a068d5e316e90d836ff52d0a1b9"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "76a14342b4b41aa1956f4473aecf64bf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 17386,
"upload_time": "2025-10-10T03:31:39",
"upload_time_iso_8601": "2025-10-10T03:31:39.005711Z",
"url": "https://files.pythonhosted.org/packages/1c/4e/60b240b8ef1c3f5e01b33c76c4f7715d25463ac577fe733fdda38e420b62/msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cbed9e65308fcd3449ae3ea88ece412e7309c92574b6002335ed5fae3629b43f",
"md5": "1ef0ce4e9bab0cb0a0f74fb832dba92c",
"sha256": "8a87f8aaca6fae983bfaea55e10050e22f4a3c84df21b7471a2f52e727c7eb39"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "1ef0ce4e9bab0cb0a0f74fb832dba92c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 17881,
"upload_time": "2025-10-10T03:31:39",
"upload_time_iso_8601": "2025-10-10T03:31:39.707213Z",
"url": "https://files.pythonhosted.org/packages/cb/ed/9e65308fcd3449ae3ea88ece412e7309c92574b6002335ed5fae3629b43f/msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e8714c7cb897493cc709e0b0ce9c5bf9ed3fb1d82a5081f1caa85f3efd7aea14",
"md5": "f11b91941b41ca83e08926a6b7bbfe33",
"sha256": "2f86d8f18c2d67c7c6dc69439aca598dad749c80040692c9ea6b73301cf4b465"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f11b91941b41ca83e08926a6b7bbfe33",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 18301,
"upload_time": "2025-10-10T03:31:40",
"upload_time_iso_8601": "2025-10-10T03:31:40.500235Z",
"url": "https://files.pythonhosted.org/packages/e8/71/4c7cb897493cc709e0b0ce9c5bf9ed3fb1d82a5081f1caa85f3efd7aea14/msgpack_white-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4019cb66d4c1f5110606de2092513b53e1092058917d5fc897a6d9db647d9d9",
"md5": "46d27ff7ad320179f55e09f7928b3a1c",
"sha256": "c382a2daf5c17b1742c15620f663175e3f3afabc5b26395a35f479e55570966c"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313td-win32.whl",
"has_sig": false,
"md5_digest": "46d27ff7ad320179f55e09f7928b3a1c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 11785,
"upload_time": "2025-10-10T03:32:02",
"upload_time_iso_8601": "2025-10-10T03:32:02.056721Z",
"url": "https://files.pythonhosted.org/packages/b4/01/9cb66d4c1f5110606de2092513b53e1092058917d5fc897a6d9db647d9d9/msgpack_white-1.0.0-cp313-cp313td-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d7569d7c1d18798f6767796b6130acde811d24764cbab5af72b1af8686d51b7b",
"md5": "66d1d60a9f5f05fa00e06d95317fddec",
"sha256": "b533a9ef0f3633814176b1bd2649f8defd7ebe65716f5eaa54560ce58c24f3a2"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313td-win_amd64.whl",
"has_sig": false,
"md5_digest": "66d1d60a9f5f05fa00e06d95317fddec",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 12400,
"upload_time": "2025-10-10T03:32:00",
"upload_time_iso_8601": "2025-10-10T03:32:00.589712Z",
"url": "https://files.pythonhosted.org/packages/d7/56/9d7c1d18798f6767796b6130acde811d24764cbab5af72b1af8686d51b7b/msgpack_white-1.0.0-cp313-cp313td-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9fb0f95bd20d742769bd80348a9285fa37b6d0b94f6d1376704721c4e27df103",
"md5": "2598ab985e794ccb21f74aeea20e85ba",
"sha256": "3ee56a84dc0b14fd4bcd2f5242499b3bf00ab9b2844c7952bab139f7cf2142b1"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313td-win_arm64.whl",
"has_sig": false,
"md5_digest": "2598ab985e794ccb21f74aeea20e85ba",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 10952,
"upload_time": "2025-10-10T03:32:01",
"upload_time_iso_8601": "2025-10-10T03:32:01.337879Z",
"url": "https://files.pythonhosted.org/packages/9f/b0/f95bd20d742769bd80348a9285fa37b6d0b94f6d1376704721c4e27df103/msgpack_white-1.0.0-cp313-cp313td-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f46189b77c4c17a6bdaa960f72a6e1520e61893d0783cc80eebdf7323fca6d6f",
"md5": "5a0a41909f1d28e969f7786991a28c15",
"sha256": "2b878a2a5a4eec926a749abe1b9be7c7b80c55e234ebaa3da86389852fdf1d69"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "5a0a41909f1d28e969f7786991a28c15",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 11087,
"upload_time": "2025-10-10T03:31:46",
"upload_time_iso_8601": "2025-10-10T03:31:46.187027Z",
"url": "https://files.pythonhosted.org/packages/f4/61/89b77c4c17a6bdaa960f72a6e1520e61893d0783cc80eebdf7323fca6d6f/msgpack_white-1.0.0-cp313-cp313t-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "68e130917661c5d4703132cc8eec79c0bc2a2992aec6029c5ca172a653ff0007",
"md5": "53df9887008d715e0f7c852d76340d4e",
"sha256": "6e547c38fd0e2af09658149ffb8271080ad676d38c19e3352aeea40726f6a61d"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "53df9887008d715e0f7c852d76340d4e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 18920,
"upload_time": "2025-10-10T03:31:46",
"upload_time_iso_8601": "2025-10-10T03:31:46.898935Z",
"url": "https://files.pythonhosted.org/packages/68/e1/30917661c5d4703132cc8eec79c0bc2a2992aec6029c5ca172a653ff0007/msgpack_white-1.0.0-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dc44e8ddf4a544c64720709fd31c6eea66a31d9ea8cda6e0972f97cb629b752d",
"md5": "04e7e73fd5dc0302a0b4850d3a0a899b",
"sha256": "ec0b50967b65dce3cf55666538f5f693ee564b6eadf7c7a61e96e8bdf671932b"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"has_sig": false,
"md5_digest": "04e7e73fd5dc0302a0b4850d3a0a899b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19031,
"upload_time": "2025-10-10T03:31:47",
"upload_time_iso_8601": "2025-10-10T03:31:47.617386Z",
"url": "https://files.pythonhosted.org/packages/dc/44/e8ddf4a544c64720709fd31c6eea66a31d9ea8cda6e0972f97cb629b752d/msgpack_white-1.0.0-cp313-cp313t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "10675eabe187be558a6163255b71e3dd293ea75050a91305f200d49f11cf0585",
"md5": "a1793c2426c6acc39bbbc26ea9c733d3",
"sha256": "8f9212147253ea95615dfd54db1e97a4f3992bd093ff20e120f649409fadf376"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "a1793c2426c6acc39bbbc26ea9c733d3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19914,
"upload_time": "2025-10-10T03:31:48",
"upload_time_iso_8601": "2025-10-10T03:31:48.435665Z",
"url": "https://files.pythonhosted.org/packages/10/67/5eabe187be558a6163255b71e3dd293ea75050a91305f200d49f11cf0585/msgpack_white-1.0.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38782be84d2051b2b2f1800c8f965995fb7e6301bc26cd9438aee1f7cd1195b8",
"md5": "5c48121d5bda8672094f4ca52dd21575",
"sha256": "73a61223fdb55cf9ff42f8f16856ee4998d1506d146a57d07f75c1b87dcbed18"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "5c48121d5bda8672094f4ca52dd21575",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 22722,
"upload_time": "2025-10-10T03:31:49",
"upload_time_iso_8601": "2025-10-10T03:31:49.257977Z",
"url": "https://files.pythonhosted.org/packages/38/78/2be84d2051b2b2f1800c8f965995fb7e6301bc26cd9438aee1f7cd1195b8/msgpack_white-1.0.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a4e57518adf5527e8f3f7996f2f585c93dfc960f1f070c9990ca9b7117fb2810",
"md5": "8bed10bd3508084f4304577f9ffe50a7",
"sha256": "95713d9a938cc9beab3bfbb1d612a8156c451e98694996588fbc606dc3dc5658"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"has_sig": false,
"md5_digest": "8bed10bd3508084f4304577f9ffe50a7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19680,
"upload_time": "2025-10-10T03:31:50",
"upload_time_iso_8601": "2025-10-10T03:31:50.382987Z",
"url": "https://files.pythonhosted.org/packages/a4/e5/7518adf5527e8f3f7996f2f585c93dfc960f1f070c9990ca9b7117fb2810/msgpack_white-1.0.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4c8df9e75e9943c5598bfb3275b29c20b3cf89aa4e51b50d482861057647a64",
"md5": "b01d7ad16ac5a04d2c9881c86b3b755a",
"sha256": "12ccd8730b8a19565fdb6d30365a4f7bc4dab70fe94dc11ef058a9c83736b72a"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"has_sig": false,
"md5_digest": "b01d7ad16ac5a04d2c9881c86b3b755a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 18715,
"upload_time": "2025-10-10T03:31:51",
"upload_time_iso_8601": "2025-10-10T03:31:51.201683Z",
"url": "https://files.pythonhosted.org/packages/c4/c8/df9e75e9943c5598bfb3275b29c20b3cf89aa4e51b50d482861057647a64/msgpack_white-1.0.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3c32e4ae7a7658413b98477077dad0f2ee4b2035aa0826b2a6280747d8e10441",
"md5": "bc1b07bf47f2eaf11a38c1d6c556db5d",
"sha256": "ca821549b250d4f9b0f3af1e04a780f6233ef2d317ed006260b58bf0ab2e0c50"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "bc1b07bf47f2eaf11a38c1d6c556db5d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19914,
"upload_time": "2025-10-10T03:31:52",
"upload_time_iso_8601": "2025-10-10T03:31:52.019262Z",
"url": "https://files.pythonhosted.org/packages/3c/32/e4ae7a7658413b98477077dad0f2ee4b2035aa0826b2a6280747d8e10441/msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3de4827bcf73e666d8e59f971c5ae87db5728b5dbdcf24b97b170b651ad6ddde",
"md5": "08655a5b371d566cf8d8cd5fd35844cd",
"sha256": "2edb3a87a1ce45412d5e3870afe78f4f889c8169343071c0ac8452b431ea5cfe"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "08655a5b371d566cf8d8cd5fd35844cd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 18609,
"upload_time": "2025-10-10T03:31:53",
"upload_time_iso_8601": "2025-10-10T03:31:53.098617Z",
"url": "https://files.pythonhosted.org/packages/3d/e4/827bcf73e666d8e59f971c5ae87db5728b5dbdcf24b97b170b651ad6ddde/msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b6d7f22162d7696775362627c8620050040504d1251e8b232b46a682dc34dcf5",
"md5": "19a96abde99c2883c0b642613b861620",
"sha256": "a0fe1be1ac02f0ae40b52766d0fef0d3a3887f594ec56732d7d3f8eb1513b155"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "19a96abde99c2883c0b642613b861620",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19360,
"upload_time": "2025-10-10T03:31:53",
"upload_time_iso_8601": "2025-10-10T03:31:53.861994Z",
"url": "https://files.pythonhosted.org/packages/b6/d7/f22162d7696775362627c8620050040504d1251e8b232b46a682dc34dcf5/msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80540eb411f5c19e1c97529262abfbed5b002a275d57eedda880d93fff997b6e",
"md5": "66ade694e9d00878f78c3f6bd83316bd",
"sha256": "868c7a5c3834b9a69083a111aa1f414d46e75ca637e59b78869b36fd7c6a71eb"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "66ade694e9d00878f78c3f6bd83316bd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19893,
"upload_time": "2025-10-10T03:31:54",
"upload_time_iso_8601": "2025-10-10T03:31:54.991623Z",
"url": "https://files.pythonhosted.org/packages/80/54/0eb411f5c19e1c97529262abfbed5b002a275d57eedda880d93fff997b6e/msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd716e702f962f333c867a44347753fba48d39ad46a84f68f5c4b3543d690b35",
"md5": "5bdbf302c074121d146ffe336a0bcdff",
"sha256": "ca81ecaeb6e4502a54d41aa0639cff51c800a6dda37ed47eabedf6ca4cca33b6"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "5bdbf302c074121d146ffe336a0bcdff",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 18244,
"upload_time": "2025-10-10T03:31:55",
"upload_time_iso_8601": "2025-10-10T03:31:55.814436Z",
"url": "https://files.pythonhosted.org/packages/cd/71/6e702f962f333c867a44347753fba48d39ad46a84f68f5c4b3543d690b35/msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b7224d3b620f6adbbd99fb5be36e41a0e33b3d741807e1a6f9ebb0a53cc97b16",
"md5": "73293f8efd309a9698a0ddce6b38fcad",
"sha256": "1b2f7a08d058cd48da080c367130a0036cb90aeff99c35f6ee29f3c8b3b0f029"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "73293f8efd309a9698a0ddce6b38fcad",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 18879,
"upload_time": "2025-10-10T03:31:56",
"upload_time_iso_8601": "2025-10-10T03:31:56.526364Z",
"url": "https://files.pythonhosted.org/packages/b7/22/4d3b620f6adbbd99fb5be36e41a0e33b3d741807e1a6f9ebb0a53cc97b16/msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "812e01fb3d1e6940b179774dd760460ff5718e9d776650f5f8c9e1ad2e69075e",
"md5": "3b6947da7ba4d1122cdb49e7373bd8a7",
"sha256": "ed936bcc8a0640076ddfef087c268b8c2f75c9028e9dcd476c8c41c46dea4b92"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3b6947da7ba4d1122cdb49e7373bd8a7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19218,
"upload_time": "2025-10-10T03:31:57",
"upload_time_iso_8601": "2025-10-10T03:31:57.352149Z",
"url": "https://files.pythonhosted.org/packages/81/2e/01fb3d1e6940b179774dd760460ff5718e9d776650f5f8c9e1ad2e69075e/msgpack_white-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b16222799d15917d843b271e133f2de07c448f9c8e2f56bc9ad9fea534ef27f2",
"md5": "edb284c4d2477d08dde9b0627dcc2bf2",
"sha256": "9f6a1fea2f64269bd7dcb9371fcabd3c771322ded03ab4247cdb34d4bc6760a1"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-win32.whl",
"has_sig": false,
"md5_digest": "edb284c4d2477d08dde9b0627dcc2bf2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 11777,
"upload_time": "2025-10-10T03:31:59",
"upload_time_iso_8601": "2025-10-10T03:31:59.905967Z",
"url": "https://files.pythonhosted.org/packages/b1/62/22799d15917d843b271e133f2de07c448f9c8e2f56bc9ad9fea534ef27f2/msgpack_white-1.0.0-cp313-cp313t-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1ec57140f2a3cdb2fe919029957048c5ae950dc41df9d49cd6b8abff634b0f3b",
"md5": "35a8614b97bc155576e1f5ce46d9d8e5",
"sha256": "2ebf93e4e1ce36db58d0ed8dc3fb4ebe02383455fe1895af1e4762239ca2521b"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-win_amd64.whl",
"has_sig": false,
"md5_digest": "35a8614b97bc155576e1f5ce46d9d8e5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 12392,
"upload_time": "2025-10-10T03:31:58",
"upload_time_iso_8601": "2025-10-10T03:31:58.166324Z",
"url": "https://files.pythonhosted.org/packages/1e/c5/7140f2a3cdb2fe919029957048c5ae950dc41df9d49cd6b8abff634b0f3b/msgpack_white-1.0.0-cp313-cp313t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "95137e2ad56fb692aa75323329526d5509be96a8f6710e898bf72fad24dc7e5c",
"md5": "c653473a57c59b9ddc790ed34439a75f",
"sha256": "04b53f48bd52811c2ede0fed6fa0d426cf7ac301223febdc7950511fb0f04c82"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313t-win_arm64.whl",
"has_sig": false,
"md5_digest": "c653473a57c59b9ddc790ed34439a75f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 10950,
"upload_time": "2025-10-10T03:31:58",
"upload_time_iso_8601": "2025-10-10T03:31:58.887236Z",
"url": "https://files.pythonhosted.org/packages/95/13/7e2ad56fb692aa75323329526d5509be96a8f6710e898bf72fad24dc7e5c/msgpack_white-1.0.0-cp313-cp313t-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0993eb762ed7cbc1ee8b9d87e4c3ec1ca6242bc558ebb2e7c9b48dfecd7550a",
"md5": "ae82d2a25f091a3476176d1c50866839",
"sha256": "59b897150010e6a43fce794618a7cf1c352b14d39c28d6d2ef1fe1dfc7634ac3"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "ae82d2a25f091a3476176d1c50866839",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 11666,
"upload_time": "2025-10-10T03:31:42",
"upload_time_iso_8601": "2025-10-10T03:31:42.770562Z",
"url": "https://files.pythonhosted.org/packages/e0/99/3eb762ed7cbc1ee8b9d87e4c3ec1ca6242bc558ebb2e7c9b48dfecd7550a/msgpack_white-1.0.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "feb05ca18cba4f3f60ee71afae1cc5e9c3543eed1f9306f04cc8fc1da1d3651b",
"md5": "65113c7165934cd76bbbd30a3571299b",
"sha256": "913b1d79011003bb7c33886f0dd42da39c8af2ec8d3094e7cb0687430884d3d4"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "65113c7165934cd76bbbd30a3571299b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 12274,
"upload_time": "2025-10-10T03:31:41",
"upload_time_iso_8601": "2025-10-10T03:31:41.269923Z",
"url": "https://files.pythonhosted.org/packages/fe/b0/5ca18cba4f3f60ee71afae1cc5e9c3543eed1f9306f04cc8fc1da1d3651b/msgpack_white-1.0.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca53847e74bc252fcc937792c1ce541c0b62c35e52afa422fdbb71c1dcbd6c60",
"md5": "4c2fe2dbd6e0b0a4fa9339aea80752a6",
"sha256": "baed9993522ce03fbbc9b824263ada7a89d28d18249d64c6df768b1a0bd23a89"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "4c2fe2dbd6e0b0a4fa9339aea80752a6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 10847,
"upload_time": "2025-10-10T03:31:42",
"upload_time_iso_8601": "2025-10-10T03:31:42.088717Z",
"url": "https://files.pythonhosted.org/packages/ca/53/847e74bc252fcc937792c1ce541c0b62c35e52afa422fdbb71c1dcbd6c60/msgpack_white-1.0.0-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "39de94d700c20bff10eca10a3cefce30509af5abf5b54f09e0acf143fba1141b",
"md5": "c953cd00d5d236162cf5260f8da5240c",
"sha256": "6a33e8b2e5348e0492498c35c90d966b70cdb008256a73f7beff3069573cc9e7"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314d-win32.whl",
"has_sig": false,
"md5_digest": "c953cd00d5d236162cf5260f8da5240c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 11873,
"upload_time": "2025-10-10T03:32:19",
"upload_time_iso_8601": "2025-10-10T03:32:19.254655Z",
"url": "https://files.pythonhosted.org/packages/39/de/94d700c20bff10eca10a3cefce30509af5abf5b54f09e0acf143fba1141b/msgpack_white-1.0.0-cp314-cp314d-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "536454966768b91b01b30a126b88a740b6a888b85c326cd24e0b5eba59bd4718",
"md5": "d5207ce315b922c0339d347a1043c712",
"sha256": "a53375c2d994aba335ff5ed9fe49e60af90bc4c1485f9cfe52f76301463eb35b"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314d-win_amd64.whl",
"has_sig": false,
"md5_digest": "d5207ce315b922c0339d347a1043c712",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 12522,
"upload_time": "2025-10-10T03:32:17",
"upload_time_iso_8601": "2025-10-10T03:32:17.824582Z",
"url": "https://files.pythonhosted.org/packages/53/64/54966768b91b01b30a126b88a740b6a888b85c326cd24e0b5eba59bd4718/msgpack_white-1.0.0-cp314-cp314d-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02178bed7a31e6f535b1591292e800e2fde26b4b164a4f0217880a72ff75c03e",
"md5": "f624bfc81a12b7b65735a1716a2be0f6",
"sha256": "ec91672d904238a043acdd2b66886dcd4f302fd3dc3ab3d05f7dd3470796f377"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314d-win_arm64.whl",
"has_sig": false,
"md5_digest": "f624bfc81a12b7b65735a1716a2be0f6",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 11003,
"upload_time": "2025-10-10T03:32:18",
"upload_time_iso_8601": "2025-10-10T03:32:18.485502Z",
"url": "https://files.pythonhosted.org/packages/02/17/8bed7a31e6f535b1591292e800e2fde26b4b164a4f0217880a72ff75c03e/msgpack_white-1.0.0-cp314-cp314d-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "610b1082f48122aa9b941e2e70a0c7e8aa4c807caa527dab2450d8a4d6e40ae8",
"md5": "8701b05e7d6d8e9761ae38f38d7b77d0",
"sha256": "56ad3202275cc717509afc79e0c20ce07b677fab0a21443ee365dd732af52753"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-macosx_10_15_universal2.whl",
"has_sig": false,
"md5_digest": "8701b05e7d6d8e9761ae38f38d7b77d0",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 10942,
"upload_time": "2025-10-10T03:32:02",
"upload_time_iso_8601": "2025-10-10T03:32:02.781430Z",
"url": "https://files.pythonhosted.org/packages/61/0b/1082f48122aa9b941e2e70a0c7e8aa4c807caa527dab2450d8a4d6e40ae8/msgpack_white-1.0.0-cp314-cp314-macosx_10_15_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "40be264d5a07bb44d80237fc6e1d85304cfff246ede5ac59cd1945ee97b38ab6",
"md5": "370c2e606ad058624c5d06221235716c",
"sha256": "6f8c80e597f1412aab579c9035f3215a9bd171946106094fa89556653068abbb"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "370c2e606ad058624c5d06221235716c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 17932,
"upload_time": "2025-10-10T03:32:03",
"upload_time_iso_8601": "2025-10-10T03:32:03.593264Z",
"url": "https://files.pythonhosted.org/packages/40/be/264d5a07bb44d80237fc6e1d85304cfff246ede5ac59cd1945ee97b38ab6/msgpack_white-1.0.0-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dba114b0d8b59a6a4805947bbab6a86422c5db7395ae572075d13a81c83c3498",
"md5": "64f40ba1350bc5746d290e83612a52a7",
"sha256": "a6f0c246d21dd0c55d30d0fdd2f5fa616b7d15134fc6c6a0c97d31855501ab40"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"has_sig": false,
"md5_digest": "64f40ba1350bc5746d290e83612a52a7",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 17990,
"upload_time": "2025-10-10T03:32:04",
"upload_time_iso_8601": "2025-10-10T03:32:04.664820Z",
"url": "https://files.pythonhosted.org/packages/db/a1/14b0d8b59a6a4805947bbab6a86422c5db7395ae572075d13a81c83c3498/msgpack_white-1.0.0-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "902214c332e7b04709dd9e5b607705b5a875559cd065ae00072b45ac74e75e74",
"md5": "d5049e588592c280941eff0c83b1be7b",
"sha256": "c6b74442c30ee6ab9cecb3d1c747e945c0b28c0f0cc3518900d1e234962673b4"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "d5049e588592c280941eff0c83b1be7b",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 18616,
"upload_time": "2025-10-10T03:32:05",
"upload_time_iso_8601": "2025-10-10T03:32:05.852104Z",
"url": "https://files.pythonhosted.org/packages/90/22/14c332e7b04709dd9e5b607705b5a875559cd065ae00072b45ac74e75e74/msgpack_white-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c49321d29dd59b82be7b9e670698d7b62ec4d8680629d887f4fcfae3a6a8e824",
"md5": "3cd0612275adcde0fa589a250a2d90cb",
"sha256": "946b0389ed08b7b25b78642fcfd7ad34608c01f97017b7b967b2fec6c7d3b13c"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "3cd0612275adcde0fa589a250a2d90cb",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 21719,
"upload_time": "2025-10-10T03:32:06",
"upload_time_iso_8601": "2025-10-10T03:32:06.573015Z",
"url": "https://files.pythonhosted.org/packages/c4/93/21d29dd59b82be7b9e670698d7b62ec4d8680629d887f4fcfae3a6a8e824/msgpack_white-1.0.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3ccfac7d360a7967c7d268c81633883fb5f5304ea6caaa0d0364c2441deab9b",
"md5": "da825815d3e87ae86fec9ff3cf35dc82",
"sha256": "252a193623fd394544615a5210941d1a06fa75a55649743d83cdbcee7cbe1c5f"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"has_sig": false,
"md5_digest": "da825815d3e87ae86fec9ff3cf35dc82",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 18609,
"upload_time": "2025-10-10T03:32:07",
"upload_time_iso_8601": "2025-10-10T03:32:07.384308Z",
"url": "https://files.pythonhosted.org/packages/a3/cc/fac7d360a7967c7d268c81633883fb5f5304ea6caaa0d0364c2441deab9b/msgpack_white-1.0.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb024b18bd2c65a9e74e09e91e06702fa4e9e2218a469f204be60bc65f39b9f8",
"md5": "4412449e058d63f24c265eb8b4399581",
"sha256": "1cc6fe49cb925a374ab5c15e68f9447b764b52a0e6f31b6072c23eff10e59333"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"has_sig": false,
"md5_digest": "4412449e058d63f24c265eb8b4399581",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 17662,
"upload_time": "2025-10-10T03:32:08",
"upload_time_iso_8601": "2025-10-10T03:32:08.205069Z",
"url": "https://files.pythonhosted.org/packages/fb/02/4b18bd2c65a9e74e09e91e06702fa4e9e2218a469f204be60bc65f39b9f8/msgpack_white-1.0.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "56ebce1612e15cd8369776c685dcd4cb66140c4c07be21a566769a228864dcaf",
"md5": "ca78212c5d4bbef21a9f9de5e3970617",
"sha256": "ef89b6a869daea619c19e075e33f9317fe852b7f7cefcd2efe703c4d60140182"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ca78212c5d4bbef21a9f9de5e3970617",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 18819,
"upload_time": "2025-10-10T03:32:08",
"upload_time_iso_8601": "2025-10-10T03:32:08.962626Z",
"url": "https://files.pythonhosted.org/packages/56/eb/ce1612e15cd8369776c685dcd4cb66140c4c07be21a566769a228864dcaf/msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "03a3968f28930cba35ff8602d7f54269feec9027ca0d60e6877f9675b53411f1",
"md5": "fe24e6999c3af37c64c9d6346e6f40db",
"sha256": "ee11f348615e5576f48b34504b212e69930cf6bd400387afab02db9aa9934924"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "fe24e6999c3af37c64c9d6346e6f40db",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 17673,
"upload_time": "2025-10-10T03:32:09",
"upload_time_iso_8601": "2025-10-10T03:32:09.750257Z",
"url": "https://files.pythonhosted.org/packages/03/a3/968f28930cba35ff8602d7f54269feec9027ca0d60e6877f9675b53411f1/msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "191e5beebaffa716e51b204592bcd2bf3a7fc0d31fec692e1733482839d7226c",
"md5": "43cc62dc554428d9fab6a9ff72eaf58e",
"sha256": "f071ebc6360ba7f754d9e53e2e39cc21d226e3eb6729a92f4c94b92b7011e0c4"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "43cc62dc554428d9fab6a9ff72eaf58e",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 18428,
"upload_time": "2025-10-10T03:32:10",
"upload_time_iso_8601": "2025-10-10T03:32:10.663209Z",
"url": "https://files.pythonhosted.org/packages/19/1e/5beebaffa716e51b204592bcd2bf3a7fc0d31fec692e1733482839d7226c/msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d16e35fcf359269939b493dc586939240834c053574bb6149a0795edc2d92554",
"md5": "12d6a87b7562c04543de9ad9646ca2f4",
"sha256": "a40d5df6d44cf28d425061b13fc1e55a9943b7d76d334373eb16ae764430a9d1"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "12d6a87b7562c04543de9ad9646ca2f4",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 18917,
"upload_time": "2025-10-10T03:32:11",
"upload_time_iso_8601": "2025-10-10T03:32:11.400282Z",
"url": "https://files.pythonhosted.org/packages/d1/6e/35fcf359269939b493dc586939240834c053574bb6149a0795edc2d92554/msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6289eb96409890f216c9ab9a9784389c7835e4ae5e522a8621185bb671034baf",
"md5": "233e67b97583776b56f59090b0a99099",
"sha256": "fbfeeb59ea1e94fd93e6292fc61987e871693d64e009869537bccfc6a0ee8e28"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "233e67b97583776b56f59090b0a99099",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 17411,
"upload_time": "2025-10-10T03:32:12",
"upload_time_iso_8601": "2025-10-10T03:32:12.191679Z",
"url": "https://files.pythonhosted.org/packages/62/89/eb96409890f216c9ab9a9784389c7835e4ae5e522a8621185bb671034baf/msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f9b80211222f438fb1f184afd72fecc365db8f5f8e11310a051ce0e55a79f9d",
"md5": "0e2cb4a1c675410c611e6e4b0364ce2f",
"sha256": "431a1fd2383ec38ebc9c7e0c791f0857843bf216df60a0425d653b5e66f6ec79"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "0e2cb4a1c675410c611e6e4b0364ce2f",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 17883,
"upload_time": "2025-10-10T03:32:13",
"upload_time_iso_8601": "2025-10-10T03:32:13.323723Z",
"url": "https://files.pythonhosted.org/packages/1f/9b/80211222f438fb1f184afd72fecc365db8f5f8e11310a051ce0e55a79f9d/msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "757836230903e04ed2c6c80bf996e4d1aa30e0d21fd92d1409517959c4171685",
"md5": "66b5cbf038755009375836842b0cbc3d",
"sha256": "b2460be2dc7ade6ab3bf7684fc6067a9086bb94d95bd2675732ae8be3ff60414"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "66b5cbf038755009375836842b0cbc3d",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 18316,
"upload_time": "2025-10-10T03:32:14",
"upload_time_iso_8601": "2025-10-10T03:32:14.566270Z",
"url": "https://files.pythonhosted.org/packages/75/78/36230903e04ed2c6c80bf996e4d1aa30e0d21fd92d1409517959c4171685/msgpack_white-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9aca8aa45a26041fb0d716ce56d94df5ed96f7c3d1a79a94c816a1284b086f94",
"md5": "8588ae3962c69c64d01ff8612d0d82bb",
"sha256": "920a4b07322fceb141226e300bba5b4fe20e97923f0dbf3e3918a827456d9d23"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314td-win32.whl",
"has_sig": false,
"md5_digest": "8588ae3962c69c64d01ff8612d0d82bb",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 11992,
"upload_time": "2025-10-10T03:32:35",
"upload_time_iso_8601": "2025-10-10T03:32:35.234228Z",
"url": "https://files.pythonhosted.org/packages/9a/ca/8aa45a26041fb0d716ce56d94df5ed96f7c3d1a79a94c816a1284b086f94/msgpack_white-1.0.0-cp314-cp314td-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c107ba511ee226a310fb949d14e66717542108bfebb7918b007c6820dc227602",
"md5": "36361c2aa646f7539ba4afd6e89998b5",
"sha256": "8a89458740c216a6962620d99631e3002755aa1eda9826e1f1b0f54d64206d2b"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314td-win_amd64.whl",
"has_sig": false,
"md5_digest": "36361c2aa646f7539ba4afd6e89998b5",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 12644,
"upload_time": "2025-10-10T03:32:33",
"upload_time_iso_8601": "2025-10-10T03:32:33.697595Z",
"url": "https://files.pythonhosted.org/packages/c1/07/ba511ee226a310fb949d14e66717542108bfebb7918b007c6820dc227602/msgpack_white-1.0.0-cp314-cp314td-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "125828a12ab8d152600940de69e7cfe4170030ded69b751907028f4d4e85e52d",
"md5": "1430602419791f038f3d878212747732",
"sha256": "cd6baa996cf594799dc04c79f5c89a1557e224d896409a79419aa1b586eb1b2b"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314td-win_arm64.whl",
"has_sig": false,
"md5_digest": "1430602419791f038f3d878212747732",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 11097,
"upload_time": "2025-10-10T03:32:34",
"upload_time_iso_8601": "2025-10-10T03:32:34.516464Z",
"url": "https://files.pythonhosted.org/packages/12/58/28a12ab8d152600940de69e7cfe4170030ded69b751907028f4d4e85e52d/msgpack_white-1.0.0-cp314-cp314td-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b83eafad999e95907ad4339b93b760621c1fc18172719337e92c12347fb683e5",
"md5": "54b066599d213937d3175bca8a0520f6",
"sha256": "69ab4324230210ebca2352f5af366afad25e784dfc17dc1a45c5d6c639f4da21"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-macosx_10_15_universal2.whl",
"has_sig": false,
"md5_digest": "54b066599d213937d3175bca8a0520f6",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 11138,
"upload_time": "2025-10-10T03:32:19",
"upload_time_iso_8601": "2025-10-10T03:32:19.985708Z",
"url": "https://files.pythonhosted.org/packages/b8/3e/afad999e95907ad4339b93b760621c1fc18172719337e92c12347fb683e5/msgpack_white-1.0.0-cp314-cp314t-macosx_10_15_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ea714851b78caf2bbf10f14d8677b3edcf39f3edaffdb6a7c33eae79a0183129",
"md5": "cb210dd681f9f1eca5f2f403b6f27c6d",
"sha256": "5db79f24f582f5654831c7681d25f780893c517dcaf2d55a4605a4ecdf6b5c55"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "cb210dd681f9f1eca5f2f403b6f27c6d",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 18924,
"upload_time": "2025-10-10T03:32:20",
"upload_time_iso_8601": "2025-10-10T03:32:20.685518Z",
"url": "https://files.pythonhosted.org/packages/ea/71/4851b78caf2bbf10f14d8677b3edcf39f3edaffdb6a7c33eae79a0183129/msgpack_white-1.0.0-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "994ad2b7409ca3e7fff47433641c043ecd4212b9f9d32173652d77fe027d940b",
"md5": "f201ea4a13a426dde31945a183b837ad",
"sha256": "0e4a9b44fa77d4bfc9cfbf6ff9b6394943c741645e1871f64e34ade195557488"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"has_sig": false,
"md5_digest": "f201ea4a13a426dde31945a183b837ad",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 19030,
"upload_time": "2025-10-10T03:32:21",
"upload_time_iso_8601": "2025-10-10T03:32:21.511997Z",
"url": "https://files.pythonhosted.org/packages/99/4a/d2b7409ca3e7fff47433641c043ecd4212b9f9d32173652d77fe027d940b/msgpack_white-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "59972bdcc1195bc9257f167a47ed8854007f4ff53e0c52310dcbb2ecef721277",
"md5": "a441cc2f5a26ae856a36021c10fd1b2c",
"sha256": "531b82b963c11f4737e62fe0f7e8b577a0be85712e6de8f13e97313383cc2551"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "a441cc2f5a26ae856a36021c10fd1b2c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 19916,
"upload_time": "2025-10-10T03:32:22",
"upload_time_iso_8601": "2025-10-10T03:32:22.329790Z",
"url": "https://files.pythonhosted.org/packages/59/97/2bdcc1195bc9257f167a47ed8854007f4ff53e0c52310dcbb2ecef721277/msgpack_white-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b57b7046e964434fe4270fc9eaafd95e08fb72d36043ab242232a4d28f765772",
"md5": "3fedd76f3a7c7b38d444662f76ad9944",
"sha256": "d95e7a9df783c2fa2cfa70305ce4eb01267633c3bbfb6121ae1c35f8bf5bbad4"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "3fedd76f3a7c7b38d444662f76ad9944",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 22711,
"upload_time": "2025-10-10T03:32:23",
"upload_time_iso_8601": "2025-10-10T03:32:23.153690Z",
"url": "https://files.pythonhosted.org/packages/b5/7b/7046e964434fe4270fc9eaafd95e08fb72d36043ab242232a4d28f765772/msgpack_white-1.0.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9fc75aba33459a4eac9aae22b16978d1de4b6c7f9a3c1c390192b8f43119cf7f",
"md5": "e9df44a80df11fd872cae79c8c6b0ec5",
"sha256": "fbdbce0f6eaa1b7ba3e6eb34894fdcdbb4eda8e2544c592787451599bae774fb"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"has_sig": false,
"md5_digest": "e9df44a80df11fd872cae79c8c6b0ec5",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 19671,
"upload_time": "2025-10-10T03:32:23",
"upload_time_iso_8601": "2025-10-10T03:32:23.938728Z",
"url": "https://files.pythonhosted.org/packages/9f/c7/5aba33459a4eac9aae22b16978d1de4b6c7f9a3c1c390192b8f43119cf7f/msgpack_white-1.0.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c88adab8c4f5116719cc9668470467c3e7a4217fa3f0911f46d378b64d0999c2",
"md5": "53388a9cf4753c4734dc71a8d5550c03",
"sha256": "194a3c06ac4295ec76d310f62582f2d44935d1f38fee3c3dea3b1306371900b8"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"has_sig": false,
"md5_digest": "53388a9cf4753c4734dc71a8d5550c03",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 18726,
"upload_time": "2025-10-10T03:32:24",
"upload_time_iso_8601": "2025-10-10T03:32:24.788514Z",
"url": "https://files.pythonhosted.org/packages/c8/8a/dab8c4f5116719cc9668470467c3e7a4217fa3f0911f46d378b64d0999c2/msgpack_white-1.0.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b51c5e82b556ff39c9b26c63968747bcbb4d90b70bc83dc7222e81378b609f2c",
"md5": "b826ce625a70e7896bc5bc57753492bb",
"sha256": "2398136bdee1689c0ca8cb2a1d01b01c1434042526ea3bb1dc927fc2e2908a89"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b826ce625a70e7896bc5bc57753492bb",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 19916,
"upload_time": "2025-10-10T03:32:25",
"upload_time_iso_8601": "2025-10-10T03:32:25.611330Z",
"url": "https://files.pythonhosted.org/packages/b5/1c/5e82b556ff39c9b26c63968747bcbb4d90b70bc83dc7222e81378b609f2c/msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e12ad4078b84c072378ee3c5f7de8b38ce75291823c731b937746cb7df91e743",
"md5": "1a753e8baaccc598f85dda23ace64060",
"sha256": "303dc0cd23df0c50311b3fde92233f22e2681d80835ff9f15f9ef95633aa05cc"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "1a753e8baaccc598f85dda23ace64060",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 18607,
"upload_time": "2025-10-10T03:32:26",
"upload_time_iso_8601": "2025-10-10T03:32:26.426905Z",
"url": "https://files.pythonhosted.org/packages/e1/2a/d4078b84c072378ee3c5f7de8b38ce75291823c731b937746cb7df91e743/msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32e34c05ca94b5c8de5906a232b8b650d1fb3b06a7dada98ac79c22eff83a811",
"md5": "770529aa9a57804d05b313cea71ddfaf",
"sha256": "03cc68f99da1f249ef07b6409d4f41d7b905ad06a9e7b0834ddd0335f36c3f09"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "770529aa9a57804d05b313cea71ddfaf",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 19364,
"upload_time": "2025-10-10T03:32:27",
"upload_time_iso_8601": "2025-10-10T03:32:27.247448Z",
"url": "https://files.pythonhosted.org/packages/32/e3/4c05ca94b5c8de5906a232b8b650d1fb3b06a7dada98ac79c22eff83a811/msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b85354dbc89d5b5fa226f946e991507bebbbb94b533b0a7bbf5544a7a373892d",
"md5": "68b0e371386a15d41be442ef1c915bb2",
"sha256": "a6ce7976058058eb004978fd2809dcd59431c370df9aed7885eb5561f768dbf0"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "68b0e371386a15d41be442ef1c915bb2",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 19899,
"upload_time": "2025-10-10T03:32:28",
"upload_time_iso_8601": "2025-10-10T03:32:28.066975Z",
"url": "https://files.pythonhosted.org/packages/b8/53/54dbc89d5b5fa226f946e991507bebbbb94b533b0a7bbf5544a7a373892d/msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5dd51ee7783420932995844a68961991033ae8470a8d965fed0c1f930cf96f19",
"md5": "145f330e73a3bf51c1928912a065225e",
"sha256": "1e1cccf21973fc7884e257bed7ecbca0e7f1eeb9bb054721b83bc52ce126a3a0"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "145f330e73a3bf51c1928912a065225e",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 18247,
"upload_time": "2025-10-10T03:32:28",
"upload_time_iso_8601": "2025-10-10T03:32:28.840029Z",
"url": "https://files.pythonhosted.org/packages/5d/d5/1ee7783420932995844a68961991033ae8470a8d965fed0c1f930cf96f19/msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe784413d37c6edffad20a43d6f326a834aca3035e47fba04b5b035f16071290",
"md5": "bd0437c6db862b08597d12d0ce31f52c",
"sha256": "7d355d99de5a1554179d33cb430fb0c7dd72393b657e6dfd14cb4a8bf38bc8d9"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "bd0437c6db862b08597d12d0ce31f52c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 18885,
"upload_time": "2025-10-10T03:32:29",
"upload_time_iso_8601": "2025-10-10T03:32:29.624031Z",
"url": "https://files.pythonhosted.org/packages/fe/78/4413d37c6edffad20a43d6f326a834aca3035e47fba04b5b035f16071290/msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "450b8bad6706191497148dc435f849ad3798222d944b4c9a65d057a48d98a0a2",
"md5": "30d4d82d264d1d09a7d554ba4f2e54a7",
"sha256": "6844e5df926e7eda819965d4a2b9ca60c777895a2f0f71d9c56fb73e20aa5226"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "30d4d82d264d1d09a7d554ba4f2e54a7",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 19222,
"upload_time": "2025-10-10T03:32:30",
"upload_time_iso_8601": "2025-10-10T03:32:30.420728Z",
"url": "https://files.pythonhosted.org/packages/45/0b/8bad6706191497148dc435f849ad3798222d944b4c9a65d057a48d98a0a2/msgpack_white-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "340c84a984214a9743423d797264549f40a6b2a85902981398e90852461cf7dd",
"md5": "bdc18be7619a4614428e502236afc504",
"sha256": "056ac08d9d77a47b75516aa5b91e3ceb607721788c09510c09c719661aa44f4c"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-win32.whl",
"has_sig": false,
"md5_digest": "bdc18be7619a4614428e502236afc504",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 11980,
"upload_time": "2025-10-10T03:32:32",
"upload_time_iso_8601": "2025-10-10T03:32:32.877659Z",
"url": "https://files.pythonhosted.org/packages/34/0c/84a984214a9743423d797264549f40a6b2a85902981398e90852461cf7dd/msgpack_white-1.0.0-cp314-cp314t-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8cf34761baac9c82bbf42958b7253d8b88fa3bd8c080e083640a3d0c9e0a12e2",
"md5": "32aafb8d228a65bcdd40204559554e94",
"sha256": "11cd1614ede3437564d4a4c108d13049a42c5e6c804273c0335c6fede48e59cf"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-win_amd64.whl",
"has_sig": false,
"md5_digest": "32aafb8d228a65bcdd40204559554e94",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 12631,
"upload_time": "2025-10-10T03:32:31",
"upload_time_iso_8601": "2025-10-10T03:32:31.341988Z",
"url": "https://files.pythonhosted.org/packages/8c/f3/4761baac9c82bbf42958b7253d8b88fa3bd8c080e083640a3d0c9e0a12e2/msgpack_white-1.0.0-cp314-cp314t-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f131517dd23d91423e2a226d9bc8d7f2ad8312b9d4315981e0bc433aaa0edd10",
"md5": "bd1e716d00e808d6090322180033f8af",
"sha256": "f6167af0bce1fc7e94b7c3a961ec4f5b56c3e81307f775a55c91e8d9c64020be"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314t-win_arm64.whl",
"has_sig": false,
"md5_digest": "bd1e716d00e808d6090322180033f8af",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 11090,
"upload_time": "2025-10-10T03:32:32",
"upload_time_iso_8601": "2025-10-10T03:32:32.065113Z",
"url": "https://files.pythonhosted.org/packages/f1/31/517dd23d91423e2a226d9bc8d7f2ad8312b9d4315981e0bc433aaa0edd10/msgpack_white-1.0.0-cp314-cp314t-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aebec2e17e64bdb628362475eee885d0052e1a02b7ea75f56f3b45acca55cbd2",
"md5": "5609d6e5da2f0de5c17d00c7c6bbeb02",
"sha256": "a085426504b0a31023d75297ba6e87dd6815075bc7461608e1ac0cda3ac61b89"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-win32.whl",
"has_sig": false,
"md5_digest": "5609d6e5da2f0de5c17d00c7c6bbeb02",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 11862,
"upload_time": "2025-10-10T03:32:17",
"upload_time_iso_8601": "2025-10-10T03:32:17.106856Z",
"url": "https://files.pythonhosted.org/packages/ae/be/c2e17e64bdb628362475eee885d0052e1a02b7ea75f56f3b45acca55cbd2/msgpack_white-1.0.0-cp314-cp314-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bfebc544f0201d33dcd4652d142418256ccc4cf0820c59045ec404664105cb17",
"md5": "7311dcef488b279294d9910206202ad4",
"sha256": "52de1af18e4f0ec6f7c5f85860230e1ea8aca4226198866d6e5c989a0ebff22a"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "7311dcef488b279294d9910206202ad4",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 12517,
"upload_time": "2025-10-10T03:32:15",
"upload_time_iso_8601": "2025-10-10T03:32:15.675984Z",
"url": "https://files.pythonhosted.org/packages/bf/eb/c544f0201d33dcd4652d142418256ccc4cf0820c59045ec404664105cb17/msgpack_white-1.0.0-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a626e45306b8016c68b4471efa97b8b247cb48afef9cbe63405b9cc18b53ff3c",
"md5": "65a84b9dfb4e8e5cae2942834c282b50",
"sha256": "f793415fe7dccf9a014e264e9d3fc90e702364901f441cefa6d776bf4abeece3"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp314-cp314-win_arm64.whl",
"has_sig": false,
"md5_digest": "65a84b9dfb4e8e5cae2942834c282b50",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.9",
"size": 10990,
"upload_time": "2025-10-10T03:32:16",
"upload_time_iso_8601": "2025-10-10T03:32:16.369124Z",
"url": "https://files.pythonhosted.org/packages/a6/26/e45306b8016c68b4471efa97b8b247cb48afef9cbe63405b9cc18b53ff3c/msgpack_white-1.0.0-cp314-cp314-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "873dcb1329025315a2f22d3e4d31b5146874129820f9bf24fbd43ee419bcbbad",
"md5": "f258d2a143c4f3428adfa3ca69266f96",
"sha256": "74dcf292cafb5b3ee95dba98e78d81361d9ca535a55c601d5de20d077090dc13"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "f258d2a143c4f3428adfa3ca69266f96",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 10848,
"upload_time": "2025-10-10T03:32:35",
"upload_time_iso_8601": "2025-10-10T03:32:35.947179Z",
"url": "https://files.pythonhosted.org/packages/87/3d/cb1329025315a2f22d3e4d31b5146874129820f9bf24fbd43ee419bcbbad/msgpack_white-1.0.0-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0355f81c9d2ed768955a3fb9f7d9b09e4c23d26df8d240426207908d6696deda",
"md5": "b785f7a475f1c108d54f84d697eaf021",
"sha256": "08eb208c45e4a72e2cdf9169d2f9d28195a6c7f4ce77e65d9f0504240ef8f2d2"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "b785f7a475f1c108d54f84d697eaf021",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 17589,
"upload_time": "2025-10-10T03:32:37",
"upload_time_iso_8601": "2025-10-10T03:32:37.281307Z",
"url": "https://files.pythonhosted.org/packages/03/55/f81c9d2ed768955a3fb9f7d9b09e4c23d26df8d240426207908d6696deda/msgpack_white-1.0.0-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d02b26f46382cfe44971c1822950b2bb769da641885b93956d7ef278ac650969",
"md5": "65e43bee9e5712571ab339f4a5457589",
"sha256": "ac86d3fbff62f90e8255e7dfd5943dda6e762f6e1135c0d5ed92311250bbd92a"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"has_sig": false,
"md5_digest": "65e43bee9e5712571ab339f4a5457589",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 17542,
"upload_time": "2025-10-10T03:32:38",
"upload_time_iso_8601": "2025-10-10T03:32:38.016233Z",
"url": "https://files.pythonhosted.org/packages/d0/2b/26f46382cfe44971c1822950b2bb769da641885b93956d7ef278ac650969/msgpack_white-1.0.0-cp39-cp39-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d0c4d0b4a9f9531daea59944ead4ab11a32230326a96f0225cc0c012604a006",
"md5": "81a6039540dd98e9a2aedb5aaff0d7cf",
"sha256": "dd5845dfd067e5692ccdaf35bdbf7c6db5dd8a153e5e2f970fd2a4937f565be9"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "81a6039540dd98e9a2aedb5aaff0d7cf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 18189,
"upload_time": "2025-10-10T03:32:38",
"upload_time_iso_8601": "2025-10-10T03:32:38.825226Z",
"url": "https://files.pythonhosted.org/packages/9d/0c/4d0b4a9f9531daea59944ead4ab11a32230326a96f0225cc0c012604a006/msgpack_white-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5c1512c09b8315135c00d037d7c90805039890759b6c245775e85c7e86592fec",
"md5": "cfdd6f6c397947c300d8e9c120ca66e9",
"sha256": "9f71d08d0760f0288778d8454f8fb66f9261dc1aa0c338f33a58f29a349ce5ec"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"has_sig": false,
"md5_digest": "cfdd6f6c397947c300d8e9c120ca66e9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 22207,
"upload_time": "2025-10-10T03:32:39",
"upload_time_iso_8601": "2025-10-10T03:32:39.986231Z",
"url": "https://files.pythonhosted.org/packages/5c/15/12c09b8315135c00d037d7c90805039890759b6c245775e85c7e86592fec/msgpack_white-1.0.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5699f1b0b4d84129cc3b8f0fcef10d1268e31f3b5bd623d2d326e625df30e70",
"md5": "bb46b3645bee1b06bef604c98e8e52a1",
"sha256": "ce509b398124304b7134e5f39057b5698292d670f5262c1ed302616fe07f241e"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"has_sig": false,
"md5_digest": "bb46b3645bee1b06bef604c98e8e52a1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 18226,
"upload_time": "2025-10-10T03:32:40",
"upload_time_iso_8601": "2025-10-10T03:32:40.761881Z",
"url": "https://files.pythonhosted.org/packages/c5/69/9f1b0b4d84129cc3b8f0fcef10d1268e31f3b5bd623d2d326e625df30e70/msgpack_white-1.0.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "da4e47f144d7ce73a3e84e96367cd83f2d74fe764a526991ed44358269574324",
"md5": "b21e2fcaa31c7443c35e4272678f0e16",
"sha256": "bbd522a7b795c7b4b750e8dd32f732a71f30141399469962670e79c76ad837c7"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"has_sig": false,
"md5_digest": "b21e2fcaa31c7443c35e4272678f0e16",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 17217,
"upload_time": "2025-10-10T03:32:41",
"upload_time_iso_8601": "2025-10-10T03:32:41.582404Z",
"url": "https://files.pythonhosted.org/packages/da/4e/47f144d7ce73a3e84e96367cd83f2d74fe764a526991ed44358269574324/msgpack_white-1.0.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bf2929847ac788069f20947707a010aee1c03cd5f78a139587506c16da44d004",
"md5": "ea8fa92701a6466ba2b32540eb21c238",
"sha256": "ece1dff6f0df159041488ccbe2fe25c705d827922261e4615857f95892f1a7ce"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ea8fa92701a6466ba2b32540eb21c238",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 18305,
"upload_time": "2025-10-10T03:32:42",
"upload_time_iso_8601": "2025-10-10T03:32:42.504968Z",
"url": "https://files.pythonhosted.org/packages/bf/29/29847ac788069f20947707a010aee1c03cd5f78a139587506c16da44d004/msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c85148f82ba0ff1460df59834247b099dc8f4c325bfe1cfcdcfa796cba45990",
"md5": "8beb662c47829a5e49d04a0dfb097a94",
"sha256": "3a8d916ef50e9a350e7a12e27d4a62fc5112388524d36f9ed7f7e42b771e1b3e"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "8beb662c47829a5e49d04a0dfb097a94",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 17333,
"upload_time": "2025-10-10T03:32:43",
"upload_time_iso_8601": "2025-10-10T03:32:43.325557Z",
"url": "https://files.pythonhosted.org/packages/8c/85/148f82ba0ff1460df59834247b099dc8f4c325bfe1cfcdcfa796cba45990/msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e2579bd855f2adeadc4d981d07c0620687dcafb4f24e5e196db48b1f2a82188a",
"md5": "ea8f9a40836fdc0ec72b5b27a4259538",
"sha256": "2ab98310168cd2302cb9646d54319420672d135f56891ae5a1dc1c0587e7cff1"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ea8f9a40836fdc0ec72b5b27a4259538",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 17930,
"upload_time": "2025-10-10T03:32:44",
"upload_time_iso_8601": "2025-10-10T03:32:44.141597Z",
"url": "https://files.pythonhosted.org/packages/e2/57/9bd855f2adeadc4d981d07c0620687dcafb4f24e5e196db48b1f2a82188a/msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7910b1e33002039b9c872b7efe2b38e2722619f926b72ae1271986f60a1e217f",
"md5": "4ef8ab7598f73f845a78013e6b2ec492",
"sha256": "f520c3aa193c0fd5f685746965232af132ac773ba78dbc123ae894369c230a22"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "4ef8ab7598f73f845a78013e6b2ec492",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 18433,
"upload_time": "2025-10-10T03:32:44",
"upload_time_iso_8601": "2025-10-10T03:32:44.959273Z",
"url": "https://files.pythonhosted.org/packages/79/10/b1e33002039b9c872b7efe2b38e2722619f926b72ae1271986f60a1e217f/msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41263f3057dba8229a845defe857976f8bc16a9b2f537ee7546ee8e0d304b725",
"md5": "a8d0f5b293f0b746ab605789a4341967",
"sha256": "06ad9e171c9843fc2cfe6870a039f640f7de0204e06f4f762478f5fb2b5c004a"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_riscv64.whl",
"has_sig": false,
"md5_digest": "a8d0f5b293f0b746ab605789a4341967",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 16933,
"upload_time": "2025-10-10T03:32:45",
"upload_time_iso_8601": "2025-10-10T03:32:45.781563Z",
"url": "https://files.pythonhosted.org/packages/41/26/3f3057dba8229a845defe857976f8bc16a9b2f537ee7546ee8e0d304b725/msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_riscv64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f6353f579bb9011f8c08eefc1dc472e1171c45a9c18dcded4d84d0d3c155c9ad",
"md5": "5d033b3da1a54332643afbe6a1db1b25",
"sha256": "cff703199ab92810168be7c9862eeb9f5673210276b1277d93578aa7d064829b"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "5d033b3da1a54332643afbe6a1db1b25",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 17377,
"upload_time": "2025-10-10T03:32:46",
"upload_time_iso_8601": "2025-10-10T03:32:46.601159Z",
"url": "https://files.pythonhosted.org/packages/f6/35/3f579bb9011f8c08eefc1dc472e1171c45a9c18dcded4d84d0d3c155c9ad/msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f32a38f89e46f2be89a5f5c1631329f926dbaf42320617d559b91df51c428426",
"md5": "a5a7580271f92b94de9c8e4aad669122",
"sha256": "fe26220349b1071ae5727afa9738a1164e78139d8bbf9355fb63aa4682381386"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a5a7580271f92b94de9c8e4aad669122",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 17684,
"upload_time": "2025-10-10T03:32:47",
"upload_time_iso_8601": "2025-10-10T03:32:47.512332Z",
"url": "https://files.pythonhosted.org/packages/f3/2a/38f89e46f2be89a5f5c1631329f926dbaf42320617d559b91df51c428426/msgpack_white-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f0981d5c1da97a49bed1c1c0b780c6b8e03fe8aa5eece34f7b9077890cd18925",
"md5": "6b3b555a5d245a4492435199159a6e41",
"sha256": "8873320ec4856e1abb777eb1126cf25e8ba925af7c7ea1c8530763303b161db2"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "6b3b555a5d245a4492435199159a6e41",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 11652,
"upload_time": "2025-10-10T03:32:49",
"upload_time_iso_8601": "2025-10-10T03:32:49.364568Z",
"url": "https://files.pythonhosted.org/packages/f0/98/1d5c1da97a49bed1c1c0b780c6b8e03fe8aa5eece34f7b9077890cd18925/msgpack_white-1.0.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8d0802d901482e7a18ce377fcb022a66b6a3e2090c93608013bd65eee1477209",
"md5": "5ebf580c955dfc8b3aca89282f5d8000",
"sha256": "0a2dad8edff64386b79b69d1e2fcaf4264af1d8bf7a5c7abfa6ebcd058fdd07b"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "5ebf580c955dfc8b3aca89282f5d8000",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 12254,
"upload_time": "2025-10-10T03:32:48",
"upload_time_iso_8601": "2025-10-10T03:32:48.659246Z",
"url": "https://files.pythonhosted.org/packages/8d/08/02d901482e7a18ce377fcb022a66b6a3e2090c93608013bd65eee1477209/msgpack_white-1.0.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a92802ed1eddcb654ff4f53b86fa803e539b3370364943e5d7166f925cf3fd0a",
"md5": "f13af2744f264ad7ff04a000aa27257d",
"sha256": "6520ced11fa07c0680ebe1a7aa46d3baf4d0e8e9e7003c9c5a47183211463510"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "f13af2744f264ad7ff04a000aa27257d",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 10457,
"upload_time": "2025-10-10T03:32:50",
"upload_time_iso_8601": "2025-10-10T03:32:50.077510Z",
"url": "https://files.pythonhosted.org/packages/a9/28/02ed1eddcb654ff4f53b86fa803e539b3370364943e5d7166f925cf3fd0a/msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a86bcbdf6c41a922921cd2af62aa4380bd2dc9ad10115a4c41870c10ad2cc6b",
"md5": "19605c68dc217b9b3497eb0d96d7cee5",
"sha256": "228f747142a0ecf849141b8eb0be622e9fe29fc3f6fe0d094af1a7ce4a18549a"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"has_sig": false,
"md5_digest": "19605c68dc217b9b3497eb0d96d7cee5",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 10278,
"upload_time": "2025-10-10T03:32:50",
"upload_time_iso_8601": "2025-10-10T03:32:50.900265Z",
"url": "https://files.pythonhosted.org/packages/0a/86/bcbdf6c41a922921cd2af62aa4380bd2dc9ad10115a4c41870c10ad2cc6b/msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "413c91bbff30f431ae53c9e9160d9fd2defa32ba863f0adc5a7cfe36a5cdf5a8",
"md5": "df32a73a25276c0968080595fd8fdbdc",
"sha256": "c141d1856d63583d6b65c81a5f7c2399921a1c372003ded29212a39b1d409dcd"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "df32a73a25276c0968080595fd8fdbdc",
"packagetype": "bdist_wheel",
"python_version": "pp311",
"requires_python": ">=3.9",
"size": 10845,
"upload_time": "2025-10-10T03:32:52",
"upload_time_iso_8601": "2025-10-10T03:32:52.127876Z",
"url": "https://files.pythonhosted.org/packages/41/3c/91bbff30f431ae53c9e9160d9fd2defa32ba863f0adc5a7cfe36a5cdf5a8/msgpack_white-1.0.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad6f7a7d028074ba2cf55d9ff1360bbc695947f839ec30d1ea9b70d5b25b30e5",
"md5": "e284f31383dc20ec0e1fa0b122fae089",
"sha256": "3c6431a567eda360e66b4a581d55ffc557eea374f130a3ef7da38f8bbdb74b81"
},
"downloads": -1,
"filename": "msgpack_white-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "e284f31383dc20ec0e1fa0b122fae089",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 6997,
"upload_time": "2025-10-10T03:32:53",
"upload_time_iso_8601": "2025-10-10T03:32:53.359251Z",
"url": "https://files.pythonhosted.org/packages/ad/6f/7a7d028074ba2cf55d9ff1360bbc695947f839ec30d1ea9b70d5b25b30e5/msgpack_white-1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-10 03:32:53",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "msgpack-white"
}