| Name | stream-inflate JSON |
| Version |
0.0.40
JSON |
| download |
| home_page | None |
| Summary | Uncompress DEFLATE streams in pure Python (albeit compiled with Cython) |
| upload_time | 2024-10-20 16:39:56 |
| maintainer | None |
| docs_url | None |
| author | None |
| requires_python | !=3.7.0,>=3.6.7 |
| license | None |
| keywords |
|
| VCS |
 |
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
|
# stream-inflate [](https://pypi.org/project/stream-inflate/) [](https://github.com/michalc/stream-inflate/actions/workflows/test.yml) [](https://app.codecov.io/gh/michalc/stream-inflate)
Uncompress Deflate and Deflate64 streams in pure Python (albeit compiled with Cython).
## Installation
```bash
pip install stream-inflate
```
## Usage
To uncompress Deflate, use the `stream_inflate` function.
```python
from stream_inflate import stream_inflate
import httpx
def compressed_chunks():
# Iterable that yields the bytes of a DEFLATE-compressed stream
with httpx.stream('GET', 'https://www.example.com/my.txt') as r:
yield from r.iter_raw(chunk_size=65536)
for uncompressed_chunk in stream_inflate()[0](compressed_chunks()):
print(uncompressed_chunk)
```
To uncompress Deflate64, use the `stream_inflate64` function.
```python
for uncompressed_chunk in stream_inflate64()[0](compressed_chunks()):
print(uncompressed_chunk)
```
For Deflate streams of unknown length where there may be other data _after_ the compressed part, the following pattern can be used to find how many bytes are not part of the compressed stream.
```python
uncompressed_chunks, is_done, num_bytes_unconsumed = stream_inflate()
it = iter(compressed_chunks())
while not is_done():
chunk = next(it)
for uncompressed in uncompressed_chunks((chunk,))
print(uncompressed)
print(num_bytes_unconsumed())
```
This can be useful in certain ZIP files.
Raw data
{
"_id": null,
"home_page": null,
"name": "stream-inflate",
"maintainer": null,
"docs_url": null,
"requires_python": "!=3.7.0,>=3.6.7",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Michal Charemza <michal@charemza.name>",
"download_url": "https://files.pythonhosted.org/packages/04/30/a95d3128d73f8cc685b31dec241029818f9628fab3b34a7f2e9442c029e5/stream_inflate-0.0.40.tar.gz",
"platform": null,
"description": "# stream-inflate [](https://pypi.org/project/stream-inflate/) [](https://github.com/michalc/stream-inflate/actions/workflows/test.yml) [](https://app.codecov.io/gh/michalc/stream-inflate)\n\nUncompress Deflate and Deflate64 streams in pure Python (albeit compiled with Cython).\n\n\n## Installation\n\n```bash\npip install stream-inflate\n```\n\n\n## Usage\n\nTo uncompress Deflate, use the `stream_inflate` function.\n\n```python\nfrom stream_inflate import stream_inflate\nimport httpx\n\ndef compressed_chunks():\n # Iterable that yields the bytes of a DEFLATE-compressed stream\n with httpx.stream('GET', 'https://www.example.com/my.txt') as r:\n yield from r.iter_raw(chunk_size=65536)\n\nfor uncompressed_chunk in stream_inflate()[0](compressed_chunks()):\n print(uncompressed_chunk)\n```\n\nTo uncompress Deflate64, use the `stream_inflate64` function.\n\n```python\nfor uncompressed_chunk in stream_inflate64()[0](compressed_chunks()):\n print(uncompressed_chunk)\n```\n\nFor Deflate streams of unknown length where there may be other data _after_ the compressed part, the following pattern can be used to find how many bytes are not part of the compressed stream.\n\n```python\nuncompressed_chunks, is_done, num_bytes_unconsumed = stream_inflate()\nit = iter(compressed_chunks())\n\nwhile not is_done():\n chunk = next(it)\n for uncompressed in uncompressed_chunks((chunk,))\n print(uncompressed)\n\nprint(num_bytes_unconsumed())\n```\n\nThis can be useful in certain ZIP files.\n",
"bugtrack_url": null,
"license": null,
"summary": "Uncompress DEFLATE streams in pure Python (albeit compiled with Cython)",
"version": "0.0.40",
"project_urls": {
"Source": "https://github.com/michalc/stream-inflate"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "08b7ab34008d6518c31deca0f54e5f04fff9ea9a3e72365d3ced46ea7168bab9",
"md5": "da64a31900d624c4bb9b15870eb52d74",
"sha256": "0201060182e5e124bc13bd034947d68e75670ce368e99de1c647432cd510af0a"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "da64a31900d624c4bb9b15870eb52d74",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 215165,
"upload_time": "2024-10-20T16:38:38",
"upload_time_iso_8601": "2024-10-20T16:38:38.822288Z",
"url": "https://files.pythonhosted.org/packages/08/b7/ab34008d6518c31deca0f54e5f04fff9ea9a3e72365d3ced46ea7168bab9/stream_inflate-0.0.40-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "35811611a28c45467e6bf099db6197969b62ada448c4dff89b03eb0db696a117",
"md5": "8518473dccf44d166accc980d77a4f85",
"sha256": "d87d9ec47fa29b56b8a410868f2f64231459179daf6c22f2164ac813f24dd32e"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp310-cp310-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "8518473dccf44d166accc980d77a4f85",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 115502,
"upload_time": "2024-10-20T16:38:40",
"upload_time_iso_8601": "2024-10-20T16:38:40.988542Z",
"url": "https://files.pythonhosted.org/packages/35/81/1611a28c45467e6bf099db6197969b62ada448c4dff89b03eb0db696a117/stream_inflate-0.0.40-cp310-cp310-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b7d73d0d207125166849538465ea7075ebc9f48acf778ef0083e944795780cd",
"md5": "17b289583227bf3f1940c349cb9b3c77",
"sha256": "cbd1f14736f7d82c2e112b773944d6ab220e2fe3487b4073d071ee94f1ca60d8"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "17b289583227bf3f1940c349cb9b3c77",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 617272,
"upload_time": "2024-10-20T16:38:42",
"upload_time_iso_8601": "2024-10-20T16:38:42.267479Z",
"url": "https://files.pythonhosted.org/packages/8b/7d/73d0d207125166849538465ea7075ebc9f48acf778ef0083e944795780cd/stream_inflate-0.0.40-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8cab0a6af931e1cdd52f2357b5fab0ca58798457dc02a961529eecde1951bfd",
"md5": "9123f5b0631e6dbb8ec92b061af654e6",
"sha256": "306b348a4931a8e86dc174756b4b962426a8d1f5b04a26aa9d9d6553cfeb8449"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9123f5b0631e6dbb8ec92b061af654e6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 622178,
"upload_time": "2024-10-20T16:38:45",
"upload_time_iso_8601": "2024-10-20T16:38:45.488679Z",
"url": "https://files.pythonhosted.org/packages/e8/ca/b0a6af931e1cdd52f2357b5fab0ca58798457dc02a961529eecde1951bfd/stream_inflate-0.0.40-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c72f90331736e17fe36e4ea5ea3c16b4d17636287b4afd4e053c7b467bd98bcd",
"md5": "3ee4f77b0ca350cf3317443db9c5df30",
"sha256": "f63f550a7f126e9420882950ee4057ac9ca01d41f3615ef9c03dd9fa8cdf51f7"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "3ee4f77b0ca350cf3317443db9c5df30",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 617165,
"upload_time": "2024-10-20T16:38:47",
"upload_time_iso_8601": "2024-10-20T16:38:47.219116Z",
"url": "https://files.pythonhosted.org/packages/c7/2f/90331736e17fe36e4ea5ea3c16b4d17636287b4afd4e053c7b467bd98bcd/stream_inflate-0.0.40-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b52452de0e10ea64cdff488a3e77ced442c6a4851eb2574adac437a3046eb1fc",
"md5": "6adfd6bb37321b4734374aad2174eb95",
"sha256": "af2402aa0c4aef897b9acb37b1b15e08cb0a536389224c50976e021092ac0ca2"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "6adfd6bb37321b4734374aad2174eb95",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 614654,
"upload_time": "2024-10-20T16:38:48",
"upload_time_iso_8601": "2024-10-20T16:38:48.694973Z",
"url": "https://files.pythonhosted.org/packages/b5/24/52de0e10ea64cdff488a3e77ced442c6a4851eb2574adac437a3046eb1fc/stream_inflate-0.0.40-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c99af077a42c4ee0115f3b8707567ac8752a7c71857b5ac41a17ff040bf399a",
"md5": "932db8cec4d37eacb6cf442c4a41f515",
"sha256": "8717939367b25ac356a19f9be23e495f0adab3be942de3393c2f6512d0440e17"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "932db8cec4d37eacb6cf442c4a41f515",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 95940,
"upload_time": "2024-10-20T16:38:49",
"upload_time_iso_8601": "2024-10-20T16:38:49.874853Z",
"url": "https://files.pythonhosted.org/packages/8c/99/af077a42c4ee0115f3b8707567ac8752a7c71857b5ac41a17ff040bf399a/stream_inflate-0.0.40-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f67adc4dc7e07f666c6cdd58d04acf8ea76da00b9f4126260d367f370f75ab95",
"md5": "6f578cc28feb679f6046c0413a666c2c",
"sha256": "9477d8c10b3eecf7d54b3bd876d385fbc5008f9cde04cafb4bd66701464a700d"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "6f578cc28feb679f6046c0413a666c2c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 215860,
"upload_time": "2024-10-20T16:38:51",
"upload_time_iso_8601": "2024-10-20T16:38:51.681172Z",
"url": "https://files.pythonhosted.org/packages/f6/7a/dc4dc7e07f666c6cdd58d04acf8ea76da00b9f4126260d367f370f75ab95/stream_inflate-0.0.40-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "946d0f11eda6c039f91596e23a27915ceb1c51a0cc0ae78b735189bc074b1ed0",
"md5": "19de73f1daa69849a75ceb81e2f941d1",
"sha256": "7aa0a1009689906940e29c8e87966923b5b3c6a84ce79aaf055de816076f65af"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "19de73f1daa69849a75ceb81e2f941d1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 674022,
"upload_time": "2024-10-20T16:38:53",
"upload_time_iso_8601": "2024-10-20T16:38:53.727758Z",
"url": "https://files.pythonhosted.org/packages/94/6d/0f11eda6c039f91596e23a27915ceb1c51a0cc0ae78b735189bc074b1ed0/stream_inflate-0.0.40-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f7a7215d523d5fd7ba795f6f5ac6d55e90a740bf65ac44cb9df2a04df44096f",
"md5": "9ecaa4aa5138cd028261f15b3b3a57db",
"sha256": "5ef10a469ef146342280b0f4b29d07ae99af62f08b9cab7e2acbab95be4d0973"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9ecaa4aa5138cd028261f15b3b3a57db",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 676476,
"upload_time": "2024-10-20T16:38:55",
"upload_time_iso_8601": "2024-10-20T16:38:55.078662Z",
"url": "https://files.pythonhosted.org/packages/8f/7a/7215d523d5fd7ba795f6f5ac6d55e90a740bf65ac44cb9df2a04df44096f/stream_inflate-0.0.40-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb8837814fb6b5446442e3bf1d799880b67132e609218160b20c9487acab0ab0",
"md5": "7897bd95f197483dd0d0a8fd11c80109",
"sha256": "3a46be16f9310e1e57694874c12ac62493b1ff3744b2c65057b56fd515f085f1"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "7897bd95f197483dd0d0a8fd11c80109",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 671893,
"upload_time": "2024-10-20T16:38:56",
"upload_time_iso_8601": "2024-10-20T16:38:56.598848Z",
"url": "https://files.pythonhosted.org/packages/bb/88/37814fb6b5446442e3bf1d799880b67132e609218160b20c9487acab0ab0/stream_inflate-0.0.40-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d728a84d64f456e70f0083a48ee4ae1125e52c2c79162aaac4c05b409c32cb5",
"md5": "e70f91d23791436017fd830c62140969",
"sha256": "8cb6db73e221ed2d9d73dc2af945f8e46c379e744cc977a77c291867d697057b"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e70f91d23791436017fd830c62140969",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 668609,
"upload_time": "2024-10-20T16:38:58",
"upload_time_iso_8601": "2024-10-20T16:38:58.001246Z",
"url": "https://files.pythonhosted.org/packages/6d/72/8a84d64f456e70f0083a48ee4ae1125e52c2c79162aaac4c05b409c32cb5/stream_inflate-0.0.40-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80854df74a92a9aa219e9b0731980fae953239700f64bc49704b62f14f2db71d",
"md5": "9d807b3d5be7ef3823b5d48652999686",
"sha256": "86e0d00a4c43493fae85a82625822f5df1411798220806c18a4ba5c28bc23a37"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "9d807b3d5be7ef3823b5d48652999686",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 96636,
"upload_time": "2024-10-20T16:38:59",
"upload_time_iso_8601": "2024-10-20T16:38:59.124713Z",
"url": "https://files.pythonhosted.org/packages/80/85/4df74a92a9aa219e9b0731980fae953239700f64bc49704b62f14f2db71d/stream_inflate-0.0.40-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "24b6551fdfe044bf72193c5676ccd39591ab8e98f0f680dd52eeea79082a31d2",
"md5": "9ae4510dcf9a4f33bcad41934dbe6773",
"sha256": "426e11d3dfbb9c1ec237a7b8862cf72b1ccb490f555c69d298534b516cbef179"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "9ae4510dcf9a4f33bcad41934dbe6773",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 219873,
"upload_time": "2024-10-20T16:39:00",
"upload_time_iso_8601": "2024-10-20T16:39:00.232869Z",
"url": "https://files.pythonhosted.org/packages/24/b6/551fdfe044bf72193c5676ccd39591ab8e98f0f680dd52eeea79082a31d2/stream_inflate-0.0.40-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "167129c006b2e3fc28d748eb522e89a393e8612ce513b60b5019e75d36fddf07",
"md5": "4c64ce98cf7f5627a839ca6d86e04bef",
"sha256": "c673f68ed06ebf5ad78964acbe22b8fe1d6a48be1e8e2521029276c1e8f716c3"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4c64ce98cf7f5627a839ca6d86e04bef",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 694913,
"upload_time": "2024-10-20T16:39:01",
"upload_time_iso_8601": "2024-10-20T16:39:01.529053Z",
"url": "https://files.pythonhosted.org/packages/16/71/29c006b2e3fc28d748eb522e89a393e8612ce513b60b5019e75d36fddf07/stream_inflate-0.0.40-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ac09ed5b03be6b115fefe83710f15b6f92963cf72a49ee9f915acb405d8ad11",
"md5": "49e88d9e34bbdf0c20e96e362f9dbe66",
"sha256": "ad5f599695039f2fd2242d1cafd1cd1d6ccb91cdcc3486898395c8a04da3a883"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "49e88d9e34bbdf0c20e96e362f9dbe66",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 710874,
"upload_time": "2024-10-20T16:39:03",
"upload_time_iso_8601": "2024-10-20T16:39:03.547364Z",
"url": "https://files.pythonhosted.org/packages/3a/c0/9ed5b03be6b115fefe83710f15b6f92963cf72a49ee9f915acb405d8ad11/stream_inflate-0.0.40-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b288c29d3e6333f3615b3d940ed146dc4591ef5f99a153e7eb1769c827db9b6b",
"md5": "cda8037f29fe4471bcc9bcdf3624830e",
"sha256": "76211c68e6540c56056670e1bfca777a6638149fd57399d5075877fff3f2720d"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "cda8037f29fe4471bcc9bcdf3624830e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 687103,
"upload_time": "2024-10-20T16:39:04",
"upload_time_iso_8601": "2024-10-20T16:39:04.871452Z",
"url": "https://files.pythonhosted.org/packages/b2/88/c29d3e6333f3615b3d940ed146dc4591ef5f99a153e7eb1769c827db9b6b/stream_inflate-0.0.40-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a35c31e097a6bb55daba231c6434bf4ac57909ea89bf588addc9192258d2377",
"md5": "2674373864149e144189a51a4d07da9a",
"sha256": "0a4eb9eb3c6908596c6b821575b5005fa5fed8a2bce552c8a352bc4548fff749"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "2674373864149e144189a51a4d07da9a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 700910,
"upload_time": "2024-10-20T16:39:07",
"upload_time_iso_8601": "2024-10-20T16:39:07.550492Z",
"url": "https://files.pythonhosted.org/packages/4a/35/c31e097a6bb55daba231c6434bf4ac57909ea89bf588addc9192258d2377/stream_inflate-0.0.40-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7239c3e9607eb4d6ed4472b2e6aa7d7e7f5be26d4a0052f17a554f90ed19b357",
"md5": "fe5f81c81bd24c0646ddd1def831e4e4",
"sha256": "5a35f3dc0f6f8b9596a2037a3fc096afc727b2fdc78b3f2f5d65ff935be32629"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "fe5f81c81bd24c0646ddd1def831e4e4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 97265,
"upload_time": "2024-10-20T16:39:09",
"upload_time_iso_8601": "2024-10-20T16:39:09.019502Z",
"url": "https://files.pythonhosted.org/packages/72/39/c3e9607eb4d6ed4472b2e6aa7d7e7f5be26d4a0052f17a554f90ed19b357/stream_inflate-0.0.40-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d52a5737b57710a18894fb0f12f86a3feb07ba4e76a990725cc34403cc7afa94",
"md5": "dcd2de0201e8f2154dd0c830d7b0d61e",
"sha256": "05961e357991fd64f0c6b136508d1fb9d55235550cb728b72377b1c284a07906"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "dcd2de0201e8f2154dd0c830d7b0d61e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 218423,
"upload_time": "2024-10-20T16:39:10",
"upload_time_iso_8601": "2024-10-20T16:39:10.126037Z",
"url": "https://files.pythonhosted.org/packages/d5/2a/5737b57710a18894fb0f12f86a3feb07ba4e76a990725cc34403cc7afa94/stream_inflate-0.0.40-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "be66510a455c5b8de9d9110c7cecd57a604e914a61ba3d5994850effdb7d3548",
"md5": "81139e3c401a2ebcb4ad90574f3ce8cd",
"sha256": "ad1da6a710352a1fed56cabf6ebf847a653ccd35dc7dcbd157b5302919c0612c"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "81139e3c401a2ebcb4ad90574f3ce8cd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 689635,
"upload_time": "2024-10-20T16:39:12",
"upload_time_iso_8601": "2024-10-20T16:39:12.218417Z",
"url": "https://files.pythonhosted.org/packages/be/66/510a455c5b8de9d9110c7cecd57a604e914a61ba3d5994850effdb7d3548/stream_inflate-0.0.40-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fff2f4e3c10e4a88245ef9bf899d64b2f220acfd189c8eef8d18b0b1436c6361",
"md5": "63fe8dbf7c2f34da6d4f331e39bf4c37",
"sha256": "77546354ae4ec404b6584f9044dfac6e28e8135514b001381eff598543851e09"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "63fe8dbf7c2f34da6d4f331e39bf4c37",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 704753,
"upload_time": "2024-10-20T16:39:13",
"upload_time_iso_8601": "2024-10-20T16:39:13.565308Z",
"url": "https://files.pythonhosted.org/packages/ff/f2/f4e3c10e4a88245ef9bf899d64b2f220acfd189c8eef8d18b0b1436c6361/stream_inflate-0.0.40-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f6c524e07728996fc4c87380e812bb6b697c7d67ec23f863e1f6f1063b6adcf2",
"md5": "10d12fbe89dd6c1bbc6d20de1b8e7ef0",
"sha256": "c5f1c2f3c9674a666e34ee1becabe51c0de9428df97fb083973af97d664b1d02"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "10d12fbe89dd6c1bbc6d20de1b8e7ef0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 683569,
"upload_time": "2024-10-20T16:39:14",
"upload_time_iso_8601": "2024-10-20T16:39:14.894809Z",
"url": "https://files.pythonhosted.org/packages/f6/c5/24e07728996fc4c87380e812bb6b697c7d67ec23f863e1f6f1063b6adcf2/stream_inflate-0.0.40-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df120421f3b8cf2f8cdab8708b1082feaca88f5984247d1abe81ee5178aeb47c",
"md5": "2dc5b364fdbbafdd56999eb915f42b25",
"sha256": "84438777870ffcdc1b9a2fcbb3d5c1ff88a1b77a44278457460fe3b05c172bbd"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "2dc5b364fdbbafdd56999eb915f42b25",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 696411,
"upload_time": "2024-10-20T16:39:16",
"upload_time_iso_8601": "2024-10-20T16:39:16.233031Z",
"url": "https://files.pythonhosted.org/packages/df/12/0421f3b8cf2f8cdab8708b1082feaca88f5984247d1abe81ee5178aeb47c/stream_inflate-0.0.40-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9e680107a90c5ea5b1d1312f82ba3dbc6e648da4363b28c09cc3de9a04211f5",
"md5": "2c7efbba2c02fa7936fb938542920351",
"sha256": "593ae1c92883f7839a37a674481f6f01599046d8fb084548d0e1daac89d9f229"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "2c7efbba2c02fa7936fb938542920351",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 96834,
"upload_time": "2024-10-20T16:39:17",
"upload_time_iso_8601": "2024-10-20T16:39:17.851352Z",
"url": "https://files.pythonhosted.org/packages/e9/e6/80107a90c5ea5b1d1312f82ba3dbc6e648da4363b28c09cc3de9a04211f5/stream_inflate-0.0.40-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d57965a468df1fed651af645699a58ee043b51507327d7b1b39583d8b0455ff5",
"md5": "00d5ceb9985ab47de37d26c06c5fa9bf",
"sha256": "e3d4fc4cb2f5e8aa3d3ec7a62d4f3d6f0fb915633abf78813570b4ae45027e0a"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp36-cp36m-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "00d5ceb9985ab47de37d26c06c5fa9bf",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 111547,
"upload_time": "2024-10-20T16:39:19",
"upload_time_iso_8601": "2024-10-20T16:39:19.568570Z",
"url": "https://files.pythonhosted.org/packages/d5/79/65a468df1fed651af645699a58ee043b51507327d7b1b39583d8b0455ff5/stream_inflate-0.0.40-cp36-cp36m-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "314f83ea697bffa0edc323aeaf220cc557f36d84cc05c9f25d729725f5236def",
"md5": "a29c0a97b562cd7ec37103c76ffda670",
"sha256": "71a0db14651d6e9730481a8dfcea96e8eded24fae816fed11109b75c5f2de06c"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a29c0a97b562cd7ec37103c76ffda670",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 529873,
"upload_time": "2024-10-20T16:39:20",
"upload_time_iso_8601": "2024-10-20T16:39:20.789152Z",
"url": "https://files.pythonhosted.org/packages/31/4f/83ea697bffa0edc323aeaf220cc557f36d84cc05c9f25d729725f5236def/stream_inflate-0.0.40-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "840369d9852bff86f83e5d3a3acbcff752017e721ba03174ecb3f302f9cc447d",
"md5": "1889de8f875685a7a43aed8f21818864",
"sha256": "8063cc22a23070f59bd12b90cb37d6eb89d3ae80a4501f2598fc82d966910a64"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1889de8f875685a7a43aed8f21818864",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 538311,
"upload_time": "2024-10-20T16:39:22",
"upload_time_iso_8601": "2024-10-20T16:39:22.645622Z",
"url": "https://files.pythonhosted.org/packages/84/03/69d9852bff86f83e5d3a3acbcff752017e721ba03174ecb3f302f9cc447d/stream_inflate-0.0.40-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df5740642c54c37ca12655ad5f53ac6a8eb8e1a4bcb07e802f460e145aacc295",
"md5": "f0e4424b8976e787dfbd470cbce0b270",
"sha256": "92cd97cf77bd99afc36db35ccb8fc4cf566f32ab7da10faefd6ea57e5519add5"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp36-cp36m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "f0e4424b8976e787dfbd470cbce0b270",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 527212,
"upload_time": "2024-10-20T16:39:24",
"upload_time_iso_8601": "2024-10-20T16:39:24.576581Z",
"url": "https://files.pythonhosted.org/packages/df/57/40642c54c37ca12655ad5f53ac6a8eb8e1a4bcb07e802f460e145aacc295/stream_inflate-0.0.40-cp36-cp36m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0563f2d83960fb26f2752114fc6d490a7496a3fcaf004b85e2fe603249202d26",
"md5": "08df7066d0673c8936c09cd4a0f2970c",
"sha256": "c82c992e60431de86adcacf112c53d1ecc3ef8183184be87c5646ba8b02f2fc9"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp36-cp36m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "08df7066d0673c8936c09cd4a0f2970c",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 534658,
"upload_time": "2024-10-20T16:39:26",
"upload_time_iso_8601": "2024-10-20T16:39:26.535625Z",
"url": "https://files.pythonhosted.org/packages/05/63/f2d83960fb26f2752114fc6d490a7496a3fcaf004b85e2fe603249202d26/stream_inflate-0.0.40-cp36-cp36m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77796e95ca78b903c29ff8c1662cd1f9669870f4a9ed63af6c55af8d6fbb4280",
"md5": "84b0d0c6f595274358385ab2c1d8ca45",
"sha256": "e0de0455be78f215dc1ebaa56b2c2aed0eab2486d3b221a8279b928dd8576969"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "84b0d0c6f595274358385ab2c1d8ca45",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 102645,
"upload_time": "2024-10-20T16:39:27",
"upload_time_iso_8601": "2024-10-20T16:39:27.594863Z",
"url": "https://files.pythonhosted.org/packages/77/79/6e95ca78b903c29ff8c1662cd1f9669870f4a9ed63af6c55af8d6fbb4280/stream_inflate-0.0.40-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "923a3e50ece324d985d3712aa66f8b77294b5bac54ab073f5a8bc8f906daaa55",
"md5": "088db595839b6c6cc2524b8c8b1ec7d3",
"sha256": "b31d449d9410537aec9b8982c1e2d7604525f75a44a89c3d185c2602e19154f7"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp37-cp37m-macosx_10_14_x86_64.whl",
"has_sig": false,
"md5_digest": "088db595839b6c6cc2524b8c8b1ec7d3",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 108120,
"upload_time": "2024-10-20T16:39:28",
"upload_time_iso_8601": "2024-10-20T16:39:28.606248Z",
"url": "https://files.pythonhosted.org/packages/92/3a/3e50ece324d985d3712aa66f8b77294b5bac54ab073f5a8bc8f906daaa55/stream_inflate-0.0.40-cp37-cp37m-macosx_10_14_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10ae4c89e3d226afd29bb90039d4725e01515b6df465c33aa0d7ec60d2011d5e",
"md5": "4bfe49764a9d4227456b17e632af5038",
"sha256": "18ee333af3f2ab7adf59582cc82c30a6daf09f3a041cd2ba87dc359dd486bc36"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4bfe49764a9d4227456b17e632af5038",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 551640,
"upload_time": "2024-10-20T16:39:29",
"upload_time_iso_8601": "2024-10-20T16:39:29.816449Z",
"url": "https://files.pythonhosted.org/packages/10/ae/4c89e3d226afd29bb90039d4725e01515b6df465c33aa0d7ec60d2011d5e/stream_inflate-0.0.40-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ca24cf2935574119957c17da9402d2bdf7af9a4fa316da3f5e086d44beccff46",
"md5": "cb05754ad9f108846372668a143ca58a",
"sha256": "d4c80d22665ea999bd60b6a354629d1674955a90d9360ba623c1501f23ddea29"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cb05754ad9f108846372668a143ca58a",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 560818,
"upload_time": "2024-10-20T16:39:31",
"upload_time_iso_8601": "2024-10-20T16:39:31.143632Z",
"url": "https://files.pythonhosted.org/packages/ca/24/cf2935574119957c17da9402d2bdf7af9a4fa316da3f5e086d44beccff46/stream_inflate-0.0.40-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78dff66f41b786cd56dc64de1b4b9f2e4f564b51fff4300e0f55601de0076ca8",
"md5": "8ddff036db478a093011be3dca322e3f",
"sha256": "76d93fc8fdbe7ecd8c726a724cae7ae7c24404ab071c95c586706b6014ed613a"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp37-cp37m-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "8ddff036db478a093011be3dca322e3f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 558016,
"upload_time": "2024-10-20T16:39:32",
"upload_time_iso_8601": "2024-10-20T16:39:32.540333Z",
"url": "https://files.pythonhosted.org/packages/78/df/f66f41b786cd56dc64de1b4b9f2e4f564b51fff4300e0f55601de0076ca8/stream_inflate-0.0.40-cp37-cp37m-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80da0a22ba2ef29d4e49ee1ba6979660a76eb629c69a1b990383555574be0c7b",
"md5": "d81674e25210aaf46b744e49f4f04501",
"sha256": "81276ab43191443678686c609b0ab13868a29515c2451b7dd6b3968fe719740f"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp37-cp37m-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d81674e25210aaf46b744e49f4f04501",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 561303,
"upload_time": "2024-10-20T16:39:33",
"upload_time_iso_8601": "2024-10-20T16:39:33.965158Z",
"url": "https://files.pythonhosted.org/packages/80/da/0a22ba2ef29d4e49ee1ba6979660a76eb629c69a1b990383555574be0c7b/stream_inflate-0.0.40-cp37-cp37m-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bce48ef4418e67ffecfcd93cfe49b4bdcd5c331f5ec0a30d638b5f173c784299",
"md5": "430559be5332f7c684ec288a870a9d94",
"sha256": "c31360ff511ec51a2128886336d1bee1baf2e18f684fc721d51fe16dbbee1579"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "430559be5332f7c684ec288a870a9d94",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 93759,
"upload_time": "2024-10-20T16:39:35",
"upload_time_iso_8601": "2024-10-20T16:39:35.082079Z",
"url": "https://files.pythonhosted.org/packages/bc/e4/8ef4418e67ffecfcd93cfe49b4bdcd5c331f5ec0a30d638b5f173c784299/stream_inflate-0.0.40-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "838c87ea9ef84cbc0b489c1ca933b7fd2ed4489b8dd863b2b2ee11441aa0f3bd",
"md5": "40fe979a293672bfb7f6baca2bc13b72",
"sha256": "0537e29fec49a254e9bc5f60988ebd71f71e76f43a024369e6c7e0410983fbe8"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp38-cp38-macosx_11_0_universal2.whl",
"has_sig": false,
"md5_digest": "40fe979a293672bfb7f6baca2bc13b72",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 216250,
"upload_time": "2024-10-20T16:39:36",
"upload_time_iso_8601": "2024-10-20T16:39:36.208395Z",
"url": "https://files.pythonhosted.org/packages/83/8c/87ea9ef84cbc0b489c1ca933b7fd2ed4489b8dd863b2b2ee11441aa0f3bd/stream_inflate-0.0.40-cp38-cp38-macosx_11_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9698e6441d05de19743d01e66859ec5cfdd5c6c6503fec0c8c164db1b29bf92",
"md5": "50dd74cf7b0e55d176409c36587ee33c",
"sha256": "f5d47fe0a6ab4a4ba4fdf4214aae92efd65b15b900c31adebcd9d98fe5fc2e5d"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp38-cp38-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "50dd74cf7b0e55d176409c36587ee33c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 114793,
"upload_time": "2024-10-20T16:39:37",
"upload_time_iso_8601": "2024-10-20T16:39:37.324769Z",
"url": "https://files.pythonhosted.org/packages/e9/69/8e6441d05de19743d01e66859ec5cfdd5c6c6503fec0c8c164db1b29bf92/stream_inflate-0.0.40-cp38-cp38-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5c898f6cc528344fc95c999072e46b63b40c59eff8867befba626d8c4638aa6",
"md5": "50d798ef7f8de820f3b5e815f5da55c6",
"sha256": "409efd2a409b46cf93460e45a610321aa57cdee311e27f16c0b50c1e68f40792"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "50d798ef7f8de820f3b5e815f5da55c6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 648509,
"upload_time": "2024-10-20T16:39:39",
"upload_time_iso_8601": "2024-10-20T16:39:39.008376Z",
"url": "https://files.pythonhosted.org/packages/b5/c8/98f6cc528344fc95c999072e46b63b40c59eff8867befba626d8c4638aa6/stream_inflate-0.0.40-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e24c5bcb81a6898743f5c540e961eee217babf7569f1129ac9eed5e95c9e185",
"md5": "42ec6a5064936b8d4c9377bbbddf6d5e",
"sha256": "e8fb007fffeb37441ea993c25e3fe91bc78ce14372ad38c9f68103d536701461"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "42ec6a5064936b8d4c9377bbbddf6d5e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 657150,
"upload_time": "2024-10-20T16:39:40",
"upload_time_iso_8601": "2024-10-20T16:39:40.353967Z",
"url": "https://files.pythonhosted.org/packages/7e/24/c5bcb81a6898743f5c540e961eee217babf7569f1129ac9eed5e95c9e185/stream_inflate-0.0.40-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af398120c87d9abea127282631a68a1083c67a9fb0328717497784cd4ed312fb",
"md5": "1be475806ada709d9bd2afdd9b99f153",
"sha256": "2d846152c6b190274b3f52068725e6da8b1753ddd92a9c76e8adeb99296017bb"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "1be475806ada709d9bd2afdd9b99f153",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 677671,
"upload_time": "2024-10-20T16:39:41",
"upload_time_iso_8601": "2024-10-20T16:39:41.832367Z",
"url": "https://files.pythonhosted.org/packages/af/39/8120c87d9abea127282631a68a1083c67a9fb0328717497784cd4ed312fb/stream_inflate-0.0.40-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16e388e21f8ca3ac4f0bca70e06b8d97b329a12b647ae030ba7dba5c60575343",
"md5": "60f14f38911558e19bb84317703a6ad9",
"sha256": "14539128ecf8d26ae1a669d44b28cddac06581a40c02b26c8322ae3170327f9f"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "60f14f38911558e19bb84317703a6ad9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 680172,
"upload_time": "2024-10-20T16:39:43",
"upload_time_iso_8601": "2024-10-20T16:39:43.201602Z",
"url": "https://files.pythonhosted.org/packages/16/e3/88e21f8ca3ac4f0bca70e06b8d97b329a12b647ae030ba7dba5c60575343/stream_inflate-0.0.40-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b89fa17eb157fc2c3e8a4bb28347b019806390ff763c8caaa6cd2244819df0b",
"md5": "f6db5ee883fd533312078ebf626ab4ce",
"sha256": "eb67313858ce41110882e89005ccbbea74496c6ceed27ee8093a1434aad730be"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "f6db5ee883fd533312078ebf626ab4ce",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 96609,
"upload_time": "2024-10-20T16:39:44",
"upload_time_iso_8601": "2024-10-20T16:39:44.366881Z",
"url": "https://files.pythonhosted.org/packages/2b/89/fa17eb157fc2c3e8a4bb28347b019806390ff763c8caaa6cd2244819df0b/stream_inflate-0.0.40-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3131f69e24f32d6c339907c19caa134a32603cf1baf3bf451fd71122f09f75c5",
"md5": "82f729c31cbe286485559e674380f171",
"sha256": "370b6c31ec5ab4fe4f1de9d26a6fd867131f0eb4c59c434d21e22f75673f4623"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "82f729c31cbe286485559e674380f171",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 216646,
"upload_time": "2024-10-20T16:39:45",
"upload_time_iso_8601": "2024-10-20T16:39:45.420279Z",
"url": "https://files.pythonhosted.org/packages/31/31/f69e24f32d6c339907c19caa134a32603cf1baf3bf451fd71122f09f75c5/stream_inflate-0.0.40-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ade11f200ae8c80c92a6d9f6a776f632a7a2550c12260bf8864a43468bedba87",
"md5": "581f0f65e2274fc45ba3181d995fc1da",
"sha256": "6e0f98ee819bd75704cbd12727f27451ae1f47a6e6931bae0eaa65200cd6646e"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp39-cp39-macosx_12_0_x86_64.whl",
"has_sig": false,
"md5_digest": "581f0f65e2274fc45ba3181d995fc1da",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 115135,
"upload_time": "2024-10-20T16:39:47",
"upload_time_iso_8601": "2024-10-20T16:39:47.429087Z",
"url": "https://files.pythonhosted.org/packages/ad/e1/1f200ae8c80c92a6d9f6a776f632a7a2550c12260bf8864a43468bedba87/stream_inflate-0.0.40-cp39-cp39-macosx_12_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1b6e9699d1cacf2d27f409ea07788a96a003efcd52ea49ac923da3750f974b5",
"md5": "d91c9af3596b0c3928952e3e840e5f2e",
"sha256": "9e039288ac810df90aceece17a2fed4036eead76d554074540f84b55511e2f07"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d91c9af3596b0c3928952e3e840e5f2e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 622623,
"upload_time": "2024-10-20T16:39:48",
"upload_time_iso_8601": "2024-10-20T16:39:48.706255Z",
"url": "https://files.pythonhosted.org/packages/e1/b6/e9699d1cacf2d27f409ea07788a96a003efcd52ea49ac923da3750f974b5/stream_inflate-0.0.40-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5208fe3da82b0a60d8ba7ad4ca0daeb49780d11b16b0669fd15baf9b15b9ea2c",
"md5": "d793594ca28438162cbb88f00f7253c9",
"sha256": "3157549f35998999492c444db1fec8c6d32e0e4cc2c5857d102e8d6532e3d6bd"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d793594ca28438162cbb88f00f7253c9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 628953,
"upload_time": "2024-10-20T16:39:50",
"upload_time_iso_8601": "2024-10-20T16:39:50.082104Z",
"url": "https://files.pythonhosted.org/packages/52/08/fe3da82b0a60d8ba7ad4ca0daeb49780d11b16b0669fd15baf9b15b9ea2c/stream_inflate-0.0.40-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "463834eb029a588ce4c407abc31e4e8820f08b73a2692faf28c2ba7baeef362a",
"md5": "5a07945f8ebda358df1410b9519c04d7",
"sha256": "1abd5ec315931f6d695f7531ac33724160dc8b74688b0cbcb7ae6b9d46429334"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "5a07945f8ebda358df1410b9519c04d7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 623327,
"upload_time": "2024-10-20T16:39:52",
"upload_time_iso_8601": "2024-10-20T16:39:52.256014Z",
"url": "https://files.pythonhosted.org/packages/46/38/34eb029a588ce4c407abc31e4e8820f08b73a2692faf28c2ba7baeef362a/stream_inflate-0.0.40-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea233a9b1936296fcac3221346127602a99ac9ec6563297c897d55a90234b72c",
"md5": "45fe8b89e11005bcc501d71771878c9d",
"sha256": "908c2abfc1bc2b4d8b49a7a86a6659f066bcfa43937c81a5aed93efd318d684d"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "45fe8b89e11005bcc501d71771878c9d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 623810,
"upload_time": "2024-10-20T16:39:53",
"upload_time_iso_8601": "2024-10-20T16:39:53.581749Z",
"url": "https://files.pythonhosted.org/packages/ea/23/3a9b1936296fcac3221346127602a99ac9ec6563297c897d55a90234b72c/stream_inflate-0.0.40-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a6afece08ec602ec340b2e0074a41169dfce2514160526237078ba4045d1b8ee",
"md5": "ee0b6223ab9924c429e3f1a2a0d85de0",
"sha256": "23dcfb5163d93263454375547e544afef8e5a28e7342fe7b8deb6ef9c8a54c9b"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "ee0b6223ab9924c429e3f1a2a0d85de0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 96124,
"upload_time": "2024-10-20T16:39:55",
"upload_time_iso_8601": "2024-10-20T16:39:55.533615Z",
"url": "https://files.pythonhosted.org/packages/a6/af/ece08ec602ec340b2e0074a41169dfce2514160526237078ba4045d1b8ee/stream_inflate-0.0.40-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0430a95d3128d73f8cc685b31dec241029818f9628fab3b34a7f2e9442c029e5",
"md5": "7e902a8b9e60ce1bb068af352a42cbe6",
"sha256": "0f5458273cf5e82b01d50f170c59f6b976e6c86c54d0aee2808c3c8b634982de"
},
"downloads": -1,
"filename": "stream_inflate-0.0.40.tar.gz",
"has_sig": false,
"md5_digest": "7e902a8b9e60ce1bb068af352a42cbe6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "!=3.7.0,>=3.6.7",
"size": 162120,
"upload_time": "2024-10-20T16:39:56",
"upload_time_iso_8601": "2024-10-20T16:39:56.675470Z",
"url": "https://files.pythonhosted.org/packages/04/30/a95d3128d73f8cc685b31dec241029818f9628fab3b34a7f2e9442c029e5/stream_inflate-0.0.40.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-20 16:39:56",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "michalc",
"github_project": "stream-inflate",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "stream-inflate"
}