vape4d


Namevape4d JSON
Version 0.2.4 PyPI version JSON
download
home_pageNone
SummaryVolume 4D Visualization
upload_time2024-08-27 09:29:19
maintainerNone
docs_urlNone
authorSimon Niedermayr
requires_python>=3.8
licenseNone
keywords 4d volume visualization vape4d
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # vAPE - Interactive 4D volume visualization

[![PyPI](https://img.shields.io/pypi/v/vape4d.svg)](https://pypi.org/project/vape4d/)
[![Docs](https://img.shields.io/badge/docs-mkdocs-blue)
](https://keksboter.github.io/vape4d/docs/)

[👉 Click to run the web app 👈](https://keksboter.github.io/vape4d/?file=https://huggingface.co/datasets/vollautomat/vape4d/resolve/main/gray_scott_3d.npy&colormap=https://huggingface.co/datasets/vollautomat/vape4d/resolve/main/colormap.json)

![Viewer screenshot](https://raw.githubusercontent.com/KeKsBoTer/vape4d/master/screenshot.png)

[Burgers](https://en.wikipedia.org/wiki/Burgers%27_equation)            |  [Kuramoto–Sivashinsky](https://en.wikipedia.org/wiki/Kuramoto%E2%80%93Sivashinsky_equation)                              |  [Gray-Scott](https://groups.csail.mit.edu/mac/projects/amorphous/GrayScott/)
:-------------------------:|:------------------------:|:-------------------------:
![Burgers](https://raw.githubusercontent.com/KeKsBoTer/vape4d/master/references_3d/burgers_1.webp)  |![Kuramoto–Sivashinsky](https://raw.githubusercontent.com/KeKsBoTer/vape4d/master/references_3d/ks.webp)|![Gray Scott](https://raw.githubusercontent.com/KeKsBoTer/vape4d/master/references_3d/gray_scott.webp)|
-----


## Installation

with pip
```
pip install vape4d
```


## Usage

**Viewer** (jupyter notebook)
```python
from vape4d import viewer
import numpy as np
from matplotlib import pyplot as plt

viewer(
    #[T,C,D,W,H]
    np.random.rand(1,1,32,32,32),
    plt.get_cmap("viridis"),   
)
```

**Render Image**
```python
import numpy as np
from vape4d import diverging_alpha, render
import matplotlib.pyplot as plt

colormap = diverging_alpha(plt.get_cmap("magma"))
img = render(
        # [T,D,H,W]
        np.random.rand(2,32,32,32).astype(np.float32),
        colormap,
        0.5, # timestep
        width=1024,
        height=1024,
    )

plt.imshow(img)
plt.axis("off")

plt.savefig("test.png", bbox_inches="tight", pad_inches=0)
plt.show()
```



            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "vape4d",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "4D, volume, visualization, vape4d",
    "author": "Simon Niedermayr",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/bb/0b/332c19c8698a5a6f15aba2eae3ee433e0123ec3b17a51d72585e9c6c9e14/vape4d-0.2.4.tar.gz",
    "platform": null,
    "description": "# vAPE - Interactive 4D volume visualization\n\n[![PyPI](https://img.shields.io/pypi/v/vape4d.svg)](https://pypi.org/project/vape4d/)\n[![Docs](https://img.shields.io/badge/docs-mkdocs-blue)\n](https://keksboter.github.io/vape4d/docs/)\n\n[\ud83d\udc49 Click to run the web app \ud83d\udc48](https://keksboter.github.io/vape4d/?file=https://huggingface.co/datasets/vollautomat/vape4d/resolve/main/gray_scott_3d.npy&colormap=https://huggingface.co/datasets/vollautomat/vape4d/resolve/main/colormap.json)\n\n![Viewer screenshot](https://raw.githubusercontent.com/KeKsBoTer/vape4d/master/screenshot.png)\n\n[Burgers](https://en.wikipedia.org/wiki/Burgers%27_equation)            |  [Kuramoto\u2013Sivashinsky](https://en.wikipedia.org/wiki/Kuramoto%E2%80%93Sivashinsky_equation)                              |  [Gray-Scott](https://groups.csail.mit.edu/mac/projects/amorphous/GrayScott/)\n:-------------------------:|:------------------------:|:-------------------------:\n![Burgers](https://raw.githubusercontent.com/KeKsBoTer/vape4d/master/references_3d/burgers_1.webp)  |![Kuramoto\u2013Sivashinsky](https://raw.githubusercontent.com/KeKsBoTer/vape4d/master/references_3d/ks.webp)|![Gray Scott](https://raw.githubusercontent.com/KeKsBoTer/vape4d/master/references_3d/gray_scott.webp)|\n-----\n\n\n## Installation\n\nwith pip\n```\npip install vape4d\n```\n\n\n## Usage\n\n**Viewer** (jupyter notebook)\n```python\nfrom vape4d import viewer\nimport numpy as np\nfrom matplotlib import pyplot as plt\n\nviewer(\n    #[T,C,D,W,H]\n    np.random.rand(1,1,32,32,32),\n    plt.get_cmap(\"viridis\"),   \n)\n```\n\n**Render Image**\n```python\nimport numpy as np\nfrom vape4d import diverging_alpha, render\nimport matplotlib.pyplot as plt\n\ncolormap = diverging_alpha(plt.get_cmap(\"magma\"))\nimg = render(\n        # [T,D,H,W]\n        np.random.rand(2,32,32,32).astype(np.float32),\n        colormap,\n        0.5, # timestep\n        width=1024,\n        height=1024,\n    )\n\nplt.imshow(img)\nplt.axis(\"off\")\n\nplt.savefig(\"test.png\", bbox_inches=\"tight\", pad_inches=0)\nplt.show()\n```\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Volume 4D Visualization",
    "version": "0.2.4",
    "project_urls": {
        "homepage": "https://keksboter.github.io/vape4d",
        "repository": "https://github.com/KeKsBoTer/vape4d"
    },
    "split_keywords": [
        "4d",
        " volume",
        " visualization",
        " vape4d"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08aeb4c0a5f040d3dc49d080a89c7a921192ffe9d4e53c89c2b8bf6a2cbcfacf",
                "md5": "2f4cd6f696a89597dfef0542b38dbd4a",
                "sha256": "7ea582e723a245b6515b83e5653ebd63781a12201a9364fd2dee1baba0bcaa49"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2f4cd6f696a89597dfef0542b38dbd4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5234228,
            "upload_time": "2024-08-27T09:27:42",
            "upload_time_iso_8601": "2024-08-27T09:27:42.931794Z",
            "url": "https://files.pythonhosted.org/packages/08/ae/b4c0a5f040d3dc49d080a89c7a921192ffe9d4e53c89c2b8bf6a2cbcfacf/vape4d-0.2.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a5f96171a2b3f00996be3e189e01618aab6cda2b79a5d739b05d1e8142c928a",
                "md5": "5fa7a2ba34ec6e6dfb99fa7cc6ace70c",
                "sha256": "6fd690fabb668d4bf94a506ddedf24b375397f45d09bf6bc626897ea3b618b9a"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5fa7a2ba34ec6e6dfb99fa7cc6ace70c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 8470689,
            "upload_time": "2024-08-27T09:25:52",
            "upload_time_iso_8601": "2024-08-27T09:25:52.074851Z",
            "url": "https://files.pythonhosted.org/packages/8a/5f/96171a2b3f00996be3e189e01618aab6cda2b79a5d739b05d1e8142c928a/vape4d-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb90f9c8e796c3a540ff59554f431e7892c691020a93c926ebf3ef998e4f5646",
                "md5": "75e5f8a365355dfa01592367de986c2e",
                "sha256": "d836684c1e0fdc0f1a19bddf83e50d311bfc38561c66599684a877fd56ebe589"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "75e5f8a365355dfa01592367de986c2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 8340428,
            "upload_time": "2024-08-27T09:26:12",
            "upload_time_iso_8601": "2024-08-27T09:26:12.535995Z",
            "url": "https://files.pythonhosted.org/packages/eb/90/f9c8e796c3a540ff59554f431e7892c691020a93c926ebf3ef998e4f5646/vape4d-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b3f27cfe4b093e2cc11b8876967414541fcc43f7630f7f742063f3936236bac",
                "md5": "4faf3a9c755891fcbd493290eb627d14",
                "sha256": "8d1e062157c4d3229b6ca2f4c70eac46ce0d15314ff3985cc40939a7876aa29c"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4faf3a9c755891fcbd493290eb627d14",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 8913771,
            "upload_time": "2024-08-27T09:27:08",
            "upload_time_iso_8601": "2024-08-27T09:27:08.268798Z",
            "url": "https://files.pythonhosted.org/packages/9b/3f/27cfe4b093e2cc11b8876967414541fcc43f7630f7f742063f3936236bac/vape4d-0.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d824d18e95ab7a2a4e5ffb8af3363c249a2cd0aa37cbf1e8054f9e4936b7779",
                "md5": "1805e7e543d06ef6a83ae71eb98baa22",
                "sha256": "1e856667af3834e0ed28860a7b272ccde0307e8e85ff9a1cf9b85894a6bc85e5"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1805e7e543d06ef6a83ae71eb98baa22",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 8936845,
            "upload_time": "2024-08-27T09:26:28",
            "upload_time_iso_8601": "2024-08-27T09:26:28.244458Z",
            "url": "https://files.pythonhosted.org/packages/0d/82/4d18e95ab7a2a4e5ffb8af3363c249a2cd0aa37cbf1e8054f9e4936b7779/vape4d-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0300c6939013158ba7bbd63eb7ff70a65bc1a00b8bba94c01e86b9be0614b9a2",
                "md5": "08777412170a5d9502d38438463f626b",
                "sha256": "0208605720d3daf909c4dee4ce1e276a72e198dcdaafa65dfc77cfebe6b90e24"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "08777412170a5d9502d38438463f626b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 9145825,
            "upload_time": "2024-08-27T09:26:47",
            "upload_time_iso_8601": "2024-08-27T09:26:47.187360Z",
            "url": "https://files.pythonhosted.org/packages/03/00/c6939013158ba7bbd63eb7ff70a65bc1a00b8bba94c01e86b9be0614b9a2/vape4d-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e7bc4ad3bd03ca234363f601d1b15928c3a7dea3e6ebe8bf4ee689126187b60",
                "md5": "08dc5f3d7ab4e5c75ce2acbd251349b5",
                "sha256": "075f320550ec67d0f617a10c26e6aed8caa2dd1a27c6f9003584ce4f8d60705d"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08dc5f3d7ab4e5c75ce2acbd251349b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 8498937,
            "upload_time": "2024-08-27T09:27:24",
            "upload_time_iso_8601": "2024-08-27T09:27:24.953682Z",
            "url": "https://files.pythonhosted.org/packages/0e/7b/c4ad3bd03ca234363f601d1b15928c3a7dea3e6ebe8bf4ee689126187b60/vape4d-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc6bc950d2e758a29c98bd1c1e0051e6360bb21404fb9c0023cefc343f5e2012",
                "md5": "a1a1e2175684d4e7366cfd940b922856",
                "sha256": "11aaac497a66328460142bb820fb7257fd624367d90986e857950c5daaf45240"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a1a1e2175684d4e7366cfd940b922856",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 8550671,
            "upload_time": "2024-08-27T09:27:55",
            "upload_time_iso_8601": "2024-08-27T09:27:55.534277Z",
            "url": "https://files.pythonhosted.org/packages/bc/6b/c950d2e758a29c98bd1c1e0051e6360bb21404fb9c0023cefc343f5e2012/vape4d-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f34c367881ef0ec6789f7bad935a01ae17e22024ed1e066cfa07aec7459a2500",
                "md5": "fffddcb254affc0b5a8f679306d61746",
                "sha256": "15594285585415811a5826eba2333d709e53af07f03e3e37aef5a8807f7523cd"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fffddcb254affc0b5a8f679306d61746",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 8626358,
            "upload_time": "2024-08-27T09:28:16",
            "upload_time_iso_8601": "2024-08-27T09:28:16.246770Z",
            "url": "https://files.pythonhosted.org/packages/f3/4c/367881ef0ec6789f7bad935a01ae17e22024ed1e066cfa07aec7459a2500/vape4d-0.2.4-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7cf1a41d41317d2520587a4362652431cbff97f82eb4f5bb99924471d4207bbf",
                "md5": "2f6e15159e6ecb6ed42978f2cc65efae",
                "sha256": "10a742715c6a6ddc4c0579cd0d0ce3df6804ddb96a48b4ed743fa32ee3c7f42b"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2f6e15159e6ecb6ed42978f2cc65efae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 8682756,
            "upload_time": "2024-08-27T09:28:36",
            "upload_time_iso_8601": "2024-08-27T09:28:36.372015Z",
            "url": "https://files.pythonhosted.org/packages/7c/f1/a41d41317d2520587a4362652431cbff97f82eb4f5bb99924471d4207bbf/vape4d-0.2.4-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e88ca9f36f24e56fe68e39bf2a2df192be8dc82e5c0a0d84ce29ed5de00ea708",
                "md5": "51f6869e06aa1612b05970bcc97a4a86",
                "sha256": "ceda15b49b6487c2c0f2ab8c1e13bca06208fa224fa87310d0f3b1766813fbf0"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "51f6869e06aa1612b05970bcc97a4a86",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 8666875,
            "upload_time": "2024-08-27T09:28:57",
            "upload_time_iso_8601": "2024-08-27T09:28:57.119609Z",
            "url": "https://files.pythonhosted.org/packages/e8/8c/a9f36f24e56fe68e39bf2a2df192be8dc82e5c0a0d84ce29ed5de00ea708/vape4d-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c1ab15e54bf5c5ff56b31366c4317a86b2db308f7891a10ea614910f8b42f4f",
                "md5": "e5db62fc027b02963f9da024c2c56acf",
                "sha256": "03c72c7c5d66100d121f67d2d1e49beec2af5ce5b1023f20f1df606716dc6e81"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e5db62fc027b02963f9da024c2c56acf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5006207,
            "upload_time": "2024-08-27T09:29:31",
            "upload_time_iso_8601": "2024-08-27T09:29:31.611168Z",
            "url": "https://files.pythonhosted.org/packages/7c/1a/b15e54bf5c5ff56b31366c4317a86b2db308f7891a10ea614910f8b42f4f/vape4d-0.2.4-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9640827b85b797cfa852037631badaab4188a27fcd4d1f291da787b81016166",
                "md5": "245a3cd8ad4524e7ae7a4bca165f83e6",
                "sha256": "c810f1f1fa6892576a08342934e39f62b64b863d92c636a6333d31fda6676d24"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "245a3cd8ad4524e7ae7a4bca165f83e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 5399431,
            "upload_time": "2024-08-27T09:29:21",
            "upload_time_iso_8601": "2024-08-27T09:29:21.755018Z",
            "url": "https://files.pythonhosted.org/packages/f9/64/0827b85b797cfa852037631badaab4188a27fcd4d1f291da787b81016166/vape4d-0.2.4-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4dc7af3a9715412edf6f8a0999e5e7593331d0f59d1388cfc4afc3c89f218116",
                "md5": "57befa2b1b23b6cebb9ee257d72069e5",
                "sha256": "a9f981562f5d241ad171186eea4df8b4de4272830025e1e6a48e2e2afe10a0fa"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57befa2b1b23b6cebb9ee257d72069e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5470535,
            "upload_time": "2024-08-27T09:27:51",
            "upload_time_iso_8601": "2024-08-27T09:27:51.521007Z",
            "url": "https://files.pythonhosted.org/packages/4d/c7/af3a9715412edf6f8a0999e5e7593331d0f59d1388cfc4afc3c89f218116/vape4d-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e869ebe4396a2f015eecd8fd407c069dbda3906b22afcbbbc77d4426768e4d1",
                "md5": "25bfa07dfd836379f8e0a4aa0fc59651",
                "sha256": "b437f33a0e00d54719a782ef766be983c83fa3d04ca1154f71450095329d499d"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "25bfa07dfd836379f8e0a4aa0fc59651",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5233630,
            "upload_time": "2024-08-27T09:27:44",
            "upload_time_iso_8601": "2024-08-27T09:27:44.616177Z",
            "url": "https://files.pythonhosted.org/packages/5e/86/9ebe4396a2f015eecd8fd407c069dbda3906b22afcbbbc77d4426768e4d1/vape4d-0.2.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f26274dbb193f1cf9ac594d8b16ae68a95a276bc8de6014ce7e7ed49abf8dd6e",
                "md5": "92382847759333ec3a83b4118c06f354",
                "sha256": "3760df02a1b722f9d767d16ae03d45f7582b603b2ec7609ef692b2a2b8f8bb12"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "92382847759333ec3a83b4118c06f354",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 8469925,
            "upload_time": "2024-08-27T09:25:54",
            "upload_time_iso_8601": "2024-08-27T09:25:54.421233Z",
            "url": "https://files.pythonhosted.org/packages/f2/62/74dbb193f1cf9ac594d8b16ae68a95a276bc8de6014ce7e7ed49abf8dd6e/vape4d-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf230dcb301678bf97c8d53d08b544832165306e9443aa7d9cdf339f592aa00f",
                "md5": "3205df84502875f77f6263318d5e0322",
                "sha256": "f24748923341d47c7d14dc3c3507e0d8f57bcb1e36be0dbd1ccfbab73b493092"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3205df84502875f77f6263318d5e0322",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 8341108,
            "upload_time": "2024-08-27T09:26:14",
            "upload_time_iso_8601": "2024-08-27T09:26:14.687808Z",
            "url": "https://files.pythonhosted.org/packages/cf/23/0dcb301678bf97c8d53d08b544832165306e9443aa7d9cdf339f592aa00f/vape4d-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf45d282e1c14c7078de4dcb59c89c896c36526e9fe921081584efc2192553df",
                "md5": "87d7008c705e74e2ea352bec4f0f0b6d",
                "sha256": "d373f1b5fe7c5170312ce3e764d12b65186ea424710310a663d09df4d9d73b15"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "87d7008c705e74e2ea352bec4f0f0b6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 8913030,
            "upload_time": "2024-08-27T09:27:10",
            "upload_time_iso_8601": "2024-08-27T09:27:10.711241Z",
            "url": "https://files.pythonhosted.org/packages/cf/45/d282e1c14c7078de4dcb59c89c896c36526e9fe921081584efc2192553df/vape4d-0.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ea3903136666090cac6ad609410599bff67fb56c4eed80fe005e4fd92851bbe",
                "md5": "38f39bc869aeedb7a82ceeabea8c3a60",
                "sha256": "1d0fe173b1b9445fd1363f20e0cee87c37d029586b29f5e8077b98b51aba607c"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "38f39bc869aeedb7a82ceeabea8c3a60",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 8939505,
            "upload_time": "2024-08-27T09:26:30",
            "upload_time_iso_8601": "2024-08-27T09:26:30.723518Z",
            "url": "https://files.pythonhosted.org/packages/7e/a3/903136666090cac6ad609410599bff67fb56c4eed80fe005e4fd92851bbe/vape4d-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f64e65db5ee824e49942aaa312ce8bd3da0cc6d3cd28a13774b4deea87f0c3ba",
                "md5": "118be5351df12c6816679d58264acc90",
                "sha256": "2cca8e359e4f818dfc598a37672c89897b81b2c977a4f4c955b976dab32f70d5"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "118be5351df12c6816679d58264acc90",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 9145389,
            "upload_time": "2024-08-27T09:26:49",
            "upload_time_iso_8601": "2024-08-27T09:26:49.776697Z",
            "url": "https://files.pythonhosted.org/packages/f6/4e/65db5ee824e49942aaa312ce8bd3da0cc6d3cd28a13774b4deea87f0c3ba/vape4d-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5655c0cd7dc6d93ab3b928ca7e045a0f773e802ddd79e8a0625e081cfe2a622",
                "md5": "737a198d17d3c7708b759dbdb291925a",
                "sha256": "0709ab12dc2c6069a3eb14778a4bc30f1adf24c14e5fadf2d9f07f48117d99b8"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "737a198d17d3c7708b759dbdb291925a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 8498839,
            "upload_time": "2024-08-27T09:27:27",
            "upload_time_iso_8601": "2024-08-27T09:27:27.239934Z",
            "url": "https://files.pythonhosted.org/packages/d5/65/5c0cd7dc6d93ab3b928ca7e045a0f773e802ddd79e8a0625e081cfe2a622/vape4d-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "502b62b26d8eedb5318ed95376f969bdb4b5fef3d82412f1268158e7dd951cdc",
                "md5": "2139154d9dc8300ca009f6f4e498238c",
                "sha256": "15aff1f8edcecd3f4cceeab644c3e5ec61c07110d29cc6a5c44f0b92e1e269c9"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2139154d9dc8300ca009f6f4e498238c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 8548872,
            "upload_time": "2024-08-27T09:27:57",
            "upload_time_iso_8601": "2024-08-27T09:27:57.907516Z",
            "url": "https://files.pythonhosted.org/packages/50/2b/62b26d8eedb5318ed95376f969bdb4b5fef3d82412f1268158e7dd951cdc/vape4d-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe0998e5e7f453c3ea6b00d230efdcb0c565106ccfc5843f42a7cf84d799f315",
                "md5": "82bd9c85cc0438ef4f5f33fe283a9e6c",
                "sha256": "9bb6c3d130c800d70d43ddad5486801074b7d8b4d6552e1d052e7e46093a4ec2"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "82bd9c85cc0438ef4f5f33fe283a9e6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 8626973,
            "upload_time": "2024-08-27T09:28:18",
            "upload_time_iso_8601": "2024-08-27T09:28:18.581478Z",
            "url": "https://files.pythonhosted.org/packages/fe/09/98e5e7f453c3ea6b00d230efdcb0c565106ccfc5843f42a7cf84d799f315/vape4d-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b0f41fb90416db26a49ced3ab617270acf3c96b6578715afc634fa1f7f6a2bb",
                "md5": "4868e401c822e3d3812a475bf5a0c740",
                "sha256": "791189c4d6f270fd5aeadd5c576fede6f36b32917f0111860ef05714bed127de"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4868e401c822e3d3812a475bf5a0c740",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 8681307,
            "upload_time": "2024-08-27T09:28:38",
            "upload_time_iso_8601": "2024-08-27T09:28:38.657851Z",
            "url": "https://files.pythonhosted.org/packages/9b/0f/41fb90416db26a49ced3ab617270acf3c96b6578715afc634fa1f7f6a2bb/vape4d-0.2.4-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0c273706e3035fd27c1bf45bcc61d760d1dbcc82fede4ecf6a340d3f160f710",
                "md5": "799bb8e7f5508bdb511f30e40e3bf149",
                "sha256": "62fdf3c4788535e8e6d7b3297e8fd075b798c39232370aaceed32459b8857b0d"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "799bb8e7f5508bdb511f30e40e3bf149",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 8667770,
            "upload_time": "2024-08-27T09:28:59",
            "upload_time_iso_8601": "2024-08-27T09:28:59.889454Z",
            "url": "https://files.pythonhosted.org/packages/d0/c2/73706e3035fd27c1bf45bcc61d760d1dbcc82fede4ecf6a340d3f160f710/vape4d-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4aa7a126d70a7b268beb28eaf418b780e4180d708c5ae8a3680e865b33128a9d",
                "md5": "11e6a4fdd17b692e1ecfddd2db2abd77",
                "sha256": "921935dd8fae0229f45b0a04d96c255dad34175870566693883a317b62947fa9"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "11e6a4fdd17b692e1ecfddd2db2abd77",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5005873,
            "upload_time": "2024-08-27T09:29:33",
            "upload_time_iso_8601": "2024-08-27T09:29:33.432553Z",
            "url": "https://files.pythonhosted.org/packages/4a/a7/a126d70a7b268beb28eaf418b780e4180d708c5ae8a3680e865b33128a9d/vape4d-0.2.4-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fd4622223740d6db522c2f8a48fd42856c0113b57cff0c7d0bdbe8b63841600",
                "md5": "8f9e4008d420e2daafbde636c7f8e618",
                "sha256": "2a4a36d1311ce292f6a049e490c17b6a0a0b2ef8f9f79f8ce94cf8d7af2038af"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8f9e4008d420e2daafbde636c7f8e618",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 5398509,
            "upload_time": "2024-08-27T09:29:23",
            "upload_time_iso_8601": "2024-08-27T09:29:23.797888Z",
            "url": "https://files.pythonhosted.org/packages/8f/d4/622223740d6db522c2f8a48fd42856c0113b57cff0c7d0bdbe8b63841600/vape4d-0.2.4-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3523f93a0a8df81a7a888c45d5d5213a87268275e025254b17d6f63f022ce17e",
                "md5": "01f8c6aa48097ce73c7e0c0a811291b0",
                "sha256": "b62c8f645a7d53cbb2496522809214591abf0d9a68a632be30a01b2a4c52cb95"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "01f8c6aa48097ce73c7e0c0a811291b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5470175,
            "upload_time": "2024-08-27T09:27:53",
            "upload_time_iso_8601": "2024-08-27T09:27:53.786417Z",
            "url": "https://files.pythonhosted.org/packages/35/23/f93a0a8df81a7a888c45d5d5213a87268275e025254b17d6f63f022ce17e/vape4d-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f671750e62619326ba5db55066b72b416a1560a323b3fa327e3c1433c8a7c634",
                "md5": "fdeb42c2305c604584a7f9650be36bda",
                "sha256": "93b65a77068506a32641cf53e5eac3305a62454c304028a1dccdeb9bf2147932"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fdeb42c2305c604584a7f9650be36bda",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5231971,
            "upload_time": "2024-08-27T09:27:47",
            "upload_time_iso_8601": "2024-08-27T09:27:47.046586Z",
            "url": "https://files.pythonhosted.org/packages/f6/71/750e62619326ba5db55066b72b416a1560a323b3fa327e3c1433c8a7c634/vape4d-0.2.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb125dde90537d3ebc4955e68fd43907624b9e8799f6dbfcd984027574ce4108",
                "md5": "cc08773399bb6f7258ade536b4953ec7",
                "sha256": "50def14dc5de077a7fb540cb2e59521378b0a207ed20aaa02b308f101f2d99fd"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cc08773399bb6f7258ade536b4953ec7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 8472509,
            "upload_time": "2024-08-27T09:25:56",
            "upload_time_iso_8601": "2024-08-27T09:25:56.954076Z",
            "url": "https://files.pythonhosted.org/packages/cb/12/5dde90537d3ebc4955e68fd43907624b9e8799f6dbfcd984027574ce4108/vape4d-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7fdb4bf2f299a68937c23de8455fc6125b25ba50cf58ae8e24c1c6b9af252950",
                "md5": "ee0646da3c5051431fb17e65768ca626",
                "sha256": "03a87c741aa11af81bb08ff88eb020cf0cbf2b2871530043f77ac906d80e1c30"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ee0646da3c5051431fb17e65768ca626",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 8347756,
            "upload_time": "2024-08-27T09:26:16",
            "upload_time_iso_8601": "2024-08-27T09:26:16.437137Z",
            "url": "https://files.pythonhosted.org/packages/7f/db/4bf2f299a68937c23de8455fc6125b25ba50cf58ae8e24c1c6b9af252950/vape4d-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d95a5da179bddc8d6ced38785e23b6eef197ccd937fb35bd336ed2af28dbf0ea",
                "md5": "51b5a6e96240003afb0e100d50f05138",
                "sha256": "1df0f05f4bc47b5dd9fcce30aed942b129b77cf0d7ccf5a2e7dfd988ba0c0fc5"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "51b5a6e96240003afb0e100d50f05138",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 8916108,
            "upload_time": "2024-08-27T09:27:13",
            "upload_time_iso_8601": "2024-08-27T09:27:13.316096Z",
            "url": "https://files.pythonhosted.org/packages/d9/5a/5da179bddc8d6ced38785e23b6eef197ccd937fb35bd336ed2af28dbf0ea/vape4d-0.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dec81119ee1ce4ab3dc9186ec538831f384f705b536906a99ac024d63f2e5f68",
                "md5": "316f620ee1855feb38f4c8525c474b7f",
                "sha256": "c560385d2a8fdb08f10bea3d4c05d5113958c69747ed2dc15710db8f72ca88dd"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "316f620ee1855feb38f4c8525c474b7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 8942623,
            "upload_time": "2024-08-27T09:26:33",
            "upload_time_iso_8601": "2024-08-27T09:26:33.185251Z",
            "url": "https://files.pythonhosted.org/packages/de/c8/1119ee1ce4ab3dc9186ec538831f384f705b536906a99ac024d63f2e5f68/vape4d-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "104fccedd410aa2bf3647f7d12b86ec7481c542cb5f525ad012b45ba3cab5e32",
                "md5": "ef885d1d3de866429b25279e3cc960bc",
                "sha256": "12d9f5978c7c22684585e8942672f84dd73292cf65ea695cff31e41cd4199c1b"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ef885d1d3de866429b25279e3cc960bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 9144585,
            "upload_time": "2024-08-27T09:26:51",
            "upload_time_iso_8601": "2024-08-27T09:26:51.913116Z",
            "url": "https://files.pythonhosted.org/packages/10/4f/ccedd410aa2bf3647f7d12b86ec7481c542cb5f525ad012b45ba3cab5e32/vape4d-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ed1ea6e17feb564136fcf96962e6e0dd32ea46129e0f6fa8df047c1d565f036",
                "md5": "12db66dc8a513ce360382ee5a1ceef2b",
                "sha256": "3fb95d298abd2b9aa6966985f578c40969a6dbf30c95af47ced6062009f33929"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12db66dc8a513ce360382ee5a1ceef2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 8497030,
            "upload_time": "2024-08-27T09:27:29",
            "upload_time_iso_8601": "2024-08-27T09:27:29.816826Z",
            "url": "https://files.pythonhosted.org/packages/8e/d1/ea6e17feb564136fcf96962e6e0dd32ea46129e0f6fa8df047c1d565f036/vape4d-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "864fc1c6972ecaa7ad05c8c6fedb394aa5b62a031e434e829100b1dc8384f762",
                "md5": "492af09d6b4c24380c41a2aff8b9d903",
                "sha256": "d194c5fae1b3bb6bd3becfeb5093de9c568f2601992ed1da961c94cc0d4d6933"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "492af09d6b4c24380c41a2aff8b9d903",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 8551321,
            "upload_time": "2024-08-27T09:28:00",
            "upload_time_iso_8601": "2024-08-27T09:28:00.615922Z",
            "url": "https://files.pythonhosted.org/packages/86/4f/c1c6972ecaa7ad05c8c6fedb394aa5b62a031e434e829100b1dc8384f762/vape4d-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72b8f5bdacc746cec7e42e7d427629f1fc8c25411fa78abae42fd5bd0956d0d8",
                "md5": "cc671b513600b321a23e2d261ca771d9",
                "sha256": "417ec6fd8a775962215695b0203f667e529102384e3920ca7d5b9f3dbfef3be1"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cc671b513600b321a23e2d261ca771d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 8632996,
            "upload_time": "2024-08-27T09:28:20",
            "upload_time_iso_8601": "2024-08-27T09:28:20.820278Z",
            "url": "https://files.pythonhosted.org/packages/72/b8/f5bdacc746cec7e42e7d427629f1fc8c25411fa78abae42fd5bd0956d0d8/vape4d-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95f6e9e606fb65182f069fc594d9700c24fe011b53ca9555feed3770e7875bc0",
                "md5": "bc7bc7abf85a978135dca9de6c1238f8",
                "sha256": "188aae9a3b3a7f7cfd31e863cf4de6d1b32a734ac00f768f79f7c2b769c6ee60"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "bc7bc7abf85a978135dca9de6c1238f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 8685755,
            "upload_time": "2024-08-27T09:28:41",
            "upload_time_iso_8601": "2024-08-27T09:28:41.567493Z",
            "url": "https://files.pythonhosted.org/packages/95/f6/e9e606fb65182f069fc594d9700c24fe011b53ca9555feed3770e7875bc0/vape4d-0.2.4-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aac88d7752d131cb2102c9b9c81944a2bf3435be9f81768a84155cf296100034",
                "md5": "6f3ce83ef5002757ae301004e3331b5d",
                "sha256": "1412a744d988b21878400df4180751acd5a1401e0c2170c82d39de3228fe212d"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f3ce83ef5002757ae301004e3331b5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 8666482,
            "upload_time": "2024-08-27T09:29:02",
            "upload_time_iso_8601": "2024-08-27T09:29:02.802437Z",
            "url": "https://files.pythonhosted.org/packages/aa/c8/8d7752d131cb2102c9b9c81944a2bf3435be9f81768a84155cf296100034/vape4d-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "728b9f154046d62f3589f257aa61905585c34e4160be3891ca29dd53cd2afa0e",
                "md5": "2660c1e4afa0c8fa716c7e0ea722264f",
                "sha256": "129865085f17fe8f33112cf2f526c1dfcc91e2505c51e1503567e107d8ba1a10"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2660c1e4afa0c8fa716c7e0ea722264f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5004979,
            "upload_time": "2024-08-27T09:29:35",
            "upload_time_iso_8601": "2024-08-27T09:29:35.354156Z",
            "url": "https://files.pythonhosted.org/packages/72/8b/9f154046d62f3589f257aa61905585c34e4160be3891ca29dd53cd2afa0e/vape4d-0.2.4-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ce2ad7fc92542973d9171ed77f3c6c984a50cc776441d56edf909026b2081ea",
                "md5": "27c878c07e9003391622ea96e3cffcd9",
                "sha256": "40399eec4a737da91e5bbcbddfdb9301678e4fabc8fede758a68f22b3c507add"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "27c878c07e9003391622ea96e3cffcd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 5394203,
            "upload_time": "2024-08-27T09:29:25",
            "upload_time_iso_8601": "2024-08-27T09:29:25.901834Z",
            "url": "https://files.pythonhosted.org/packages/7c/e2/ad7fc92542973d9171ed77f3c6c984a50cc776441d56edf909026b2081ea/vape4d-0.2.4-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "805be951b9e6ffbc52c2e83154675a5af6e83c0b5937dc539dfa420fd9d78d0f",
                "md5": "2419d5a741d603e03d92086a21f16f51",
                "sha256": "99e98c07251c8e50302b9bcc13213333ab3e50c8f926b53e6d84bb5226f3410e"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2419d5a741d603e03d92086a21f16f51",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 8471160,
            "upload_time": "2024-08-27T09:25:59",
            "upload_time_iso_8601": "2024-08-27T09:25:59.652971Z",
            "url": "https://files.pythonhosted.org/packages/80/5b/e951b9e6ffbc52c2e83154675a5af6e83c0b5937dc539dfa420fd9d78d0f/vape4d-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77245d75f139d7948eb3b60b942b2bdf32d3dc2d53c060512253fcbb52fde0d4",
                "md5": "d6bb4c9c69476b42697bec5f4a1802bf",
                "sha256": "95c154211cb753b1d3a8e4faab2f81ead7fed101da987f6bc2e67fc0bb5b20f0"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d6bb4c9c69476b42697bec5f4a1802bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 8339843,
            "upload_time": "2024-08-27T09:26:18",
            "upload_time_iso_8601": "2024-08-27T09:26:18.619633Z",
            "url": "https://files.pythonhosted.org/packages/77/24/5d75f139d7948eb3b60b942b2bdf32d3dc2d53c060512253fcbb52fde0d4/vape4d-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c764773280bfc172cf8de7800e61377c3ec8810931458136422ac2d5664d053d",
                "md5": "959fe5a03ed52903b843094b07b4ebf6",
                "sha256": "231620461a92f416cc8277223d3daf33a08b4bf377ae3b7053f29cd159d3148d"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "959fe5a03ed52903b843094b07b4ebf6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 8913691,
            "upload_time": "2024-08-27T09:27:15",
            "upload_time_iso_8601": "2024-08-27T09:27:15.899294Z",
            "url": "https://files.pythonhosted.org/packages/c7/64/773280bfc172cf8de7800e61377c3ec8810931458136422ac2d5664d053d/vape4d-0.2.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec77737f58d78e1afbd88a8c0d433bac2f258f357c0daa97c8c081f6cc60805f",
                "md5": "30c796a0cec61ecdd5ab6f11ccf085e3",
                "sha256": "e6bfd3cbde146f1dc2e7567658946160f113a4813761204d64ecd49bced51035"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "30c796a0cec61ecdd5ab6f11ccf085e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 8937302,
            "upload_time": "2024-08-27T09:26:35",
            "upload_time_iso_8601": "2024-08-27T09:26:35.501695Z",
            "url": "https://files.pythonhosted.org/packages/ec/77/737f58d78e1afbd88a8c0d433bac2f258f357c0daa97c8c081f6cc60805f/vape4d-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7022da998a3402541404034247610d13df805678ebf5936696d3a34855946bf7",
                "md5": "2b851e8b271ae3f0c16339ab7d069b00",
                "sha256": "93f1a6b0eae2f95e357255e426c56391db5be5c641d0fc8b2e89ff81c9d88bc0"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2b851e8b271ae3f0c16339ab7d069b00",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 9147301,
            "upload_time": "2024-08-27T09:26:54",
            "upload_time_iso_8601": "2024-08-27T09:26:54.320885Z",
            "url": "https://files.pythonhosted.org/packages/70/22/da998a3402541404034247610d13df805678ebf5936696d3a34855946bf7/vape4d-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb85496bb4bf564f2c4d34195adf5eade4888f5a6f7aeb5ccf172835ec2e1a0f",
                "md5": "33f5e45a19007833035be4fdcba20b4f",
                "sha256": "46746172fd5ec46d41750410fb9f7b9fb798ccbaa0967e050aa9ee67e5c52f98"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33f5e45a19007833035be4fdcba20b4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 8499535,
            "upload_time": "2024-08-27T09:27:31",
            "upload_time_iso_8601": "2024-08-27T09:27:31.910724Z",
            "url": "https://files.pythonhosted.org/packages/bb/85/496bb4bf564f2c4d34195adf5eade4888f5a6f7aeb5ccf172835ec2e1a0f/vape4d-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db3da794adafa829b6e9ad57859b62480ac8b2a87d681f9700136049c44237a7",
                "md5": "25d835716d24837e3c186084751b650a",
                "sha256": "1f88f7659956c6c882774a39775ca40fb43c1e8175df9da2b1f5ab7290224410"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "25d835716d24837e3c186084751b650a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 8552173,
            "upload_time": "2024-08-27T09:28:03",
            "upload_time_iso_8601": "2024-08-27T09:28:03.418768Z",
            "url": "https://files.pythonhosted.org/packages/db/3d/a794adafa829b6e9ad57859b62480ac8b2a87d681f9700136049c44237a7/vape4d-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2162347bbf8e738bdfd41c0f1d3ee1b98a48b5b7133150e4a22c115501e09f7",
                "md5": "9a57c9857e28e60c03f016f6785623e4",
                "sha256": "321d93680b79d011e703a58f7c9e01a46b241feb7ec45d4d2c23e9d2570d7034"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9a57c9857e28e60c03f016f6785623e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 8625287,
            "upload_time": "2024-08-27T09:28:24",
            "upload_time_iso_8601": "2024-08-27T09:28:24.117195Z",
            "url": "https://files.pythonhosted.org/packages/d2/16/2347bbf8e738bdfd41c0f1d3ee1b98a48b5b7133150e4a22c115501e09f7/vape4d-0.2.4-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54f1398ed34348e23de0d34c7d5ab69dfcd977baabca3df18cfecbe0c5d02918",
                "md5": "e821d2f6560f73d7cfcdf86957111f39",
                "sha256": "61ee6d38e7e1ba513a5b866cfe72d7feb5bb00861c3e5481b8ebc5d702b4a49f"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e821d2f6560f73d7cfcdf86957111f39",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 8683307,
            "upload_time": "2024-08-27T09:28:43",
            "upload_time_iso_8601": "2024-08-27T09:28:43.876971Z",
            "url": "https://files.pythonhosted.org/packages/54/f1/398ed34348e23de0d34c7d5ab69dfcd977baabca3df18cfecbe0c5d02918/vape4d-0.2.4-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c7f6988ef9dee06c9313d1ffdebb9e16a5309f343bc420c89ccf22b7e55ccba",
                "md5": "4a149a1a85d67c0b7c46aa939b267f48",
                "sha256": "aeec9591aab40726a055f4f6fb8b1fdad57da942bf225e35c3e539d593d55739"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a149a1a85d67c0b7c46aa939b267f48",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 8666948,
            "upload_time": "2024-08-27T09:29:05",
            "upload_time_iso_8601": "2024-08-27T09:29:05.287028Z",
            "url": "https://files.pythonhosted.org/packages/7c/7f/6988ef9dee06c9313d1ffdebb9e16a5309f343bc420c89ccf22b7e55ccba/vape4d-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64d746a85a3c9cd5073a3dd1a824aea7ad9c9a5a390e35f20ffad6c4de5e930b",
                "md5": "bf039bb30273bbfa9d997acfb1c8ba62",
                "sha256": "056a72ee87029aac27560326823ee0b74b38531e90f508cddc8c1c448429d3b6"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "bf039bb30273bbfa9d997acfb1c8ba62",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5006422,
            "upload_time": "2024-08-27T09:29:37",
            "upload_time_iso_8601": "2024-08-27T09:29:37.740036Z",
            "url": "https://files.pythonhosted.org/packages/64/d7/46a85a3c9cd5073a3dd1a824aea7ad9c9a5a390e35f20ffad6c4de5e930b/vape4d-0.2.4-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec710ccadf4884d37638e6a96268df5e023c6ba7c624065b5cdcc578da4d7833",
                "md5": "2aa8e5943a6c79b7b038044a918d7d2e",
                "sha256": "beaff43fa32d5cebeb75abb7ef98a6382c6d64bf7d3f9a19e43dce21fe485598"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2aa8e5943a6c79b7b038044a918d7d2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 5400064,
            "upload_time": "2024-08-27T09:29:27",
            "upload_time_iso_8601": "2024-08-27T09:29:27.724738Z",
            "url": "https://files.pythonhosted.org/packages/ec/71/0ccadf4884d37638e6a96268df5e023c6ba7c624065b5cdcc578da4d7833/vape4d-0.2.4-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "555a9e5ff2941490c6b47f7b130d279a7f8f062917d847c3d7a58579f3ffb634",
                "md5": "1cc4b25592227a0cfdac4712c5231ffe",
                "sha256": "ccd80e5e93d0a457bad3824c9ae5d34e08474163c72b9477201c12b72e53d280"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1cc4b25592227a0cfdac4712c5231ffe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5236593,
            "upload_time": "2024-08-27T09:27:49",
            "upload_time_iso_8601": "2024-08-27T09:27:49.456103Z",
            "url": "https://files.pythonhosted.org/packages/55/5a/9e5ff2941490c6b47f7b130d279a7f8f062917d847c3d7a58579f3ffb634/vape4d-0.2.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb8a162b1ad933e05cbd67d4cfd384125a6ba6d52bbedb2b2defc6b7db8f1915",
                "md5": "54fbab8b1ca63bae43c539c2c04300da",
                "sha256": "748de812411ae79c640b98a4e2606550dbd8063f2b6d595ddee6a626e12e89b2"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "54fbab8b1ca63bae43c539c2c04300da",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 8472262,
            "upload_time": "2024-08-27T09:26:02",
            "upload_time_iso_8601": "2024-08-27T09:26:02.631625Z",
            "url": "https://files.pythonhosted.org/packages/fb/8a/162b1ad933e05cbd67d4cfd384125a6ba6d52bbedb2b2defc6b7db8f1915/vape4d-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b6ae02bd6c9c48a509ac97d89672d4daf1f1fdf329b415cfed7d3c2246363d9",
                "md5": "e20f0ed6df7e7f5782ad0ebfa69ed79b",
                "sha256": "10f20094745e61a62b2d862e8e43d02dd86fe7349f207b6ee2af9897616a0113"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e20f0ed6df7e7f5782ad0ebfa69ed79b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 8340120,
            "upload_time": "2024-08-27T09:26:20",
            "upload_time_iso_8601": "2024-08-27T09:26:20.737041Z",
            "url": "https://files.pythonhosted.org/packages/8b/6a/e02bd6c9c48a509ac97d89672d4daf1f1fdf329b415cfed7d3c2246363d9/vape4d-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c26b47937023f2385677829e7268ace300be35822b4d5cb6f4d6a4cf52d8be3",
                "md5": "4c43ea514120e29dce17dbf0c6bfca6d",
                "sha256": "d4bd72ee695574e5259504d74b20376130e0f7d661e86ccb644f8dc0754a8616"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4c43ea514120e29dce17dbf0c6bfca6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 8913795,
            "upload_time": "2024-08-27T09:27:18",
            "upload_time_iso_8601": "2024-08-27T09:27:18.366093Z",
            "url": "https://files.pythonhosted.org/packages/1c/26/b47937023f2385677829e7268ace300be35822b4d5cb6f4d6a4cf52d8be3/vape4d-0.2.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b8f48cd601febc8d0ab8d0943b2108caff8d7b7d5079cb533a85968a8943f02",
                "md5": "fa94e1f6b8957654a9d913356fda706c",
                "sha256": "a6839710ce484a151f1a09b1471d8cb4bd81cf9b5b3f0a573083f95042e391d3"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fa94e1f6b8957654a9d913356fda706c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 8938032,
            "upload_time": "2024-08-27T09:26:38",
            "upload_time_iso_8601": "2024-08-27T09:26:38.043672Z",
            "url": "https://files.pythonhosted.org/packages/4b/8f/48cd601febc8d0ab8d0943b2108caff8d7b7d5079cb533a85968a8943f02/vape4d-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4462bb387988006d33f96970c94bfc4e0fb14606901f2b05100f4528f83d3a1e",
                "md5": "c72ac01fc5b2597b4c383e95970cb1bc",
                "sha256": "68470cedccf97fb37a3cb1851fc4d2dc5e16790c3df7cdb8dd849f938278a637"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c72ac01fc5b2597b4c383e95970cb1bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 9148949,
            "upload_time": "2024-08-27T09:26:57",
            "upload_time_iso_8601": "2024-08-27T09:26:57.143585Z",
            "url": "https://files.pythonhosted.org/packages/44/62/bb387988006d33f96970c94bfc4e0fb14606901f2b05100f4528f83d3a1e/vape4d-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d60f5670aa7df19fb6c5a58bc252354b3e4c605dda01c100638b21bf60ed46c",
                "md5": "bbbcbf27c54eced8d6e065f95c234a32",
                "sha256": "9525c1dafa45025287864fafbd8c2534d94bedbbcf122caef35fd66a0a32c87c"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bbbcbf27c54eced8d6e065f95c234a32",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 8499536,
            "upload_time": "2024-08-27T09:27:34",
            "upload_time_iso_8601": "2024-08-27T09:27:34.090984Z",
            "url": "https://files.pythonhosted.org/packages/9d/60/f5670aa7df19fb6c5a58bc252354b3e4c605dda01c100638b21bf60ed46c/vape4d-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4dd2b8abd91fe30def46d0b4aea8e6dcc811c3cac1feee028a042a3e905dd0dd",
                "md5": "7bde312d458ecb4b74e7eef46a7b9bf0",
                "sha256": "870e45694a99a524e5f2db66b4ddc2854997b8a65a3b2c254ed292ba8985b754"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7bde312d458ecb4b74e7eef46a7b9bf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 8552455,
            "upload_time": "2024-08-27T09:28:05",
            "upload_time_iso_8601": "2024-08-27T09:28:05.654896Z",
            "url": "https://files.pythonhosted.org/packages/4d/d2/b8abd91fe30def46d0b4aea8e6dcc811c3cac1feee028a042a3e905dd0dd/vape4d-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9606f108b134a9ac8e6418ffe79d364bfa91950f95c1601542e4a2f9e4244be2",
                "md5": "c02e07976e0867fd883076aa87236609",
                "sha256": "c0b45aa93b30b7ac282fe8bc259705607c8461a98fbcf025d044e53cf2f6e1c8"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c02e07976e0867fd883076aa87236609",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 8627180,
            "upload_time": "2024-08-27T09:28:26",
            "upload_time_iso_8601": "2024-08-27T09:28:26.999081Z",
            "url": "https://files.pythonhosted.org/packages/96/06/f108b134a9ac8e6418ffe79d364bfa91950f95c1601542e4a2f9e4244be2/vape4d-0.2.4-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3d8447aa1cd8e91a4e7e9dd80614055e9ef39e501a04f2a91b6ff4b52dcb51f",
                "md5": "ecdb1216b3e81d33d003deb259098d5b",
                "sha256": "2399da51d3bf4675f96e199396beb9df0619fbd6d1195ac222070fd40a023fed"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ecdb1216b3e81d33d003deb259098d5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 8683054,
            "upload_time": "2024-08-27T09:28:46",
            "upload_time_iso_8601": "2024-08-27T09:28:46.175272Z",
            "url": "https://files.pythonhosted.org/packages/a3/d8/447aa1cd8e91a4e7e9dd80614055e9ef39e501a04f2a91b6ff4b52dcb51f/vape4d-0.2.4-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f0d59981e0bc03fd585abca5a9c6bbb1074050436cd0210654f8e5b3e6e234b",
                "md5": "587a3236f49c336d25c4ffbd920d03b9",
                "sha256": "9a22e48ceda08d8e3f410afa578fd7ebc59a0e253200c527b06c46e948f8b7d9"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "587a3236f49c336d25c4ffbd920d03b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 8667281,
            "upload_time": "2024-08-27T09:29:08",
            "upload_time_iso_8601": "2024-08-27T09:29:08.257755Z",
            "url": "https://files.pythonhosted.org/packages/1f/0d/59981e0bc03fd585abca5a9c6bbb1074050436cd0210654f8e5b3e6e234b/vape4d-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9cbd1855a5e4451e1a13ee502ee3d07628d8d75b25ab968c726e551cc01f71e7",
                "md5": "37c64c8f597941cf76f53edf591e5b0f",
                "sha256": "373620a8c6a84d2fb1d2451a1648f9fe0d649217d82081da48a5ad75786d4ce4"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "37c64c8f597941cf76f53edf591e5b0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5005803,
            "upload_time": "2024-08-27T09:29:39",
            "upload_time_iso_8601": "2024-08-27T09:29:39.864815Z",
            "url": "https://files.pythonhosted.org/packages/9c/bd/1855a5e4451e1a13ee502ee3d07628d8d75b25ab968c726e551cc01f71e7/vape4d-0.2.4-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e40f417edcac2c1a90424cc87eb3f7e034320b7d1728fe27168f14a20847539c",
                "md5": "4d3e3b67d9b5be1d87e1c638af71e860",
                "sha256": "48e1dd835e39e2eecce8280b16a2c097849cb6bb6397a85ebfc803f79b62c1a8"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4d3e3b67d9b5be1d87e1c638af71e860",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 5400337,
            "upload_time": "2024-08-27T09:29:29",
            "upload_time_iso_8601": "2024-08-27T09:29:29.827083Z",
            "url": "https://files.pythonhosted.org/packages/e4/0f/417edcac2c1a90424cc87eb3f7e034320b7d1728fe27168f14a20847539c/vape4d-0.2.4-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0243ef15c91069955c2d7048f821af526639fc1cd9e01c396ae4310ff63d0f1",
                "md5": "5c8c695716b85e5fb752545cf53dd0cd",
                "sha256": "10ae457c78529fd5e55e06dafc86853bbeaa952cbf7578e11c55c49383a83132"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5c8c695716b85e5fb752545cf53dd0cd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 8470118,
            "upload_time": "2024-08-27T09:26:04",
            "upload_time_iso_8601": "2024-08-27T09:26:04.680916Z",
            "url": "https://files.pythonhosted.org/packages/c0/24/3ef15c91069955c2d7048f821af526639fc1cd9e01c396ae4310ff63d0f1/vape4d-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e52ff4f608ae9467beb33ac89846d7e7a7624157fa1c565a396a753be69fc7f",
                "md5": "84e226f3586701fe9bc5deb8155e7ee2",
                "sha256": "a437c830d153137d50af2c9f1a74e8e8962647d52523de3dc6a0e9605e098af6"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "84e226f3586701fe9bc5deb8155e7ee2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 8339688,
            "upload_time": "2024-08-27T09:26:22",
            "upload_time_iso_8601": "2024-08-27T09:26:22.431374Z",
            "url": "https://files.pythonhosted.org/packages/1e/52/ff4f608ae9467beb33ac89846d7e7a7624157fa1c565a396a753be69fc7f/vape4d-0.2.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16372acceec0a2f7618b7e0e94b4c3533e8014b801193103d6383da527267e2d",
                "md5": "092b1e7447c82b0d51dd28faa7fd673b",
                "sha256": "1757b75f27ac0cb1268a10a98294d360d31a86f9c3a748355dee9f2180b1a19f"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "092b1e7447c82b0d51dd28faa7fd673b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 8916655,
            "upload_time": "2024-08-27T09:27:20",
            "upload_time_iso_8601": "2024-08-27T09:27:20.613510Z",
            "url": "https://files.pythonhosted.org/packages/16/37/2acceec0a2f7618b7e0e94b4c3533e8014b801193103d6383da527267e2d/vape4d-0.2.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83d261486f21077a018e68b54b3b46b0ba5959ab87330561a68716658f26449b",
                "md5": "04a892d8398114a95706fcfb427533c5",
                "sha256": "aa401bf8b7dbcdb152d924fa787045644864aa1e3e7f53c87c51a4a0fc216773"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "04a892d8398114a95706fcfb427533c5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 8937008,
            "upload_time": "2024-08-27T09:26:40",
            "upload_time_iso_8601": "2024-08-27T09:26:40.391506Z",
            "url": "https://files.pythonhosted.org/packages/83/d2/61486f21077a018e68b54b3b46b0ba5959ab87330561a68716658f26449b/vape4d-0.2.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c69b957f34bc0c0a596e9364d254372403cc4acb91c2a2330333d719659018e",
                "md5": "578187b1d08dad5dd3f39ef0090b3d5e",
                "sha256": "02791dc5e14b06c6fc06521113fe0eafade22948130adda9e0cb33c698678d27"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "578187b1d08dad5dd3f39ef0090b3d5e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 9149646,
            "upload_time": "2024-08-27T09:26:59",
            "upload_time_iso_8601": "2024-08-27T09:26:59.781202Z",
            "url": "https://files.pythonhosted.org/packages/1c/69/b957f34bc0c0a596e9364d254372403cc4acb91c2a2330333d719659018e/vape4d-0.2.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "844b83a1af8bda2f901029f22c307afe1002cd41a913a37eb681b3a8814f2ef6",
                "md5": "9de781367b40ddf2812457b2b911da1c",
                "sha256": "c175d66f9cc68073dfad96df0aef00c42470279e7a37009604cdab3c3707d8fe"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9de781367b40ddf2812457b2b911da1c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 8499547,
            "upload_time": "2024-08-27T09:27:38",
            "upload_time_iso_8601": "2024-08-27T09:27:38.166040Z",
            "url": "https://files.pythonhosted.org/packages/84/4b/83a1af8bda2f901029f22c307afe1002cd41a913a37eb681b3a8814f2ef6/vape4d-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "075492080e403540c9ab7e2c4a8c455c6d74247b042ee0461569f86847a0dfb6",
                "md5": "f6d079f168d56f4756aae150711380aa",
                "sha256": "7be7b48844f1a0d7aade8ce93ee63255a0cd2048217a056bce2cc2f5b6c2a712"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f6d079f168d56f4756aae150711380aa",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 8548705,
            "upload_time": "2024-08-27T09:28:08",
            "upload_time_iso_8601": "2024-08-27T09:28:08.871797Z",
            "url": "https://files.pythonhosted.org/packages/07/54/92080e403540c9ab7e2c4a8c455c6d74247b042ee0461569f86847a0dfb6/vape4d-0.2.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af5f7ec739cdb76295c43c949dbd39efd220c349dac367e80ae577fd8ef61e0d",
                "md5": "b1fce2bd821850ae5c14120a84c3cd2c",
                "sha256": "a06870f7171b6e7e9128e305baacaf7fae65afebb4490ddda19ff44047daf5c2"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b1fce2bd821850ae5c14120a84c3cd2c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 8625953,
            "upload_time": "2024-08-27T09:28:29",
            "upload_time_iso_8601": "2024-08-27T09:28:29.322766Z",
            "url": "https://files.pythonhosted.org/packages/af/5f/7ec739cdb76295c43c949dbd39efd220c349dac367e80ae577fd8ef61e0d/vape4d-0.2.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e92b80a70a1329bd8b0b2b952c007f4729aed9c3607bdc1ed775be9127d48157",
                "md5": "393eeb12d3fff830bbe57a2199492aca",
                "sha256": "c0e65fb46d1b793770dc3e7480e9d0aa1387679e9266c9feb9840d87a0b4d6b7"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "393eeb12d3fff830bbe57a2199492aca",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 8685979,
            "upload_time": "2024-08-27T09:28:48",
            "upload_time_iso_8601": "2024-08-27T09:28:48.497905Z",
            "url": "https://files.pythonhosted.org/packages/e9/2b/80a70a1329bd8b0b2b952c007f4729aed9c3607bdc1ed775be9127d48157/vape4d-0.2.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00a99816339aabf3ad3b5eb0d12a392eec3d45f6e269c0d2aabc798030cb458e",
                "md5": "7e513c872934e5f19f1b584db2cac5b4",
                "sha256": "1347550e629b74aec6417a2026791581c6fcad0c9602f20dab8319a658bb2daf"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e513c872934e5f19f1b584db2cac5b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 8668299,
            "upload_time": "2024-08-27T09:29:10",
            "upload_time_iso_8601": "2024-08-27T09:29:10.582994Z",
            "url": "https://files.pythonhosted.org/packages/00/a9/9816339aabf3ad3b5eb0d12a392eec3d45f6e269c0d2aabc798030cb458e/vape4d-0.2.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8689ec1d3a9e742160b052579a685894d70fc833b16a4861472e0ec86e49346",
                "md5": "d1011c56d5633d7a5df064d97d9da622",
                "sha256": "30f7f7caf73ef2c15ba03f72f6ac1e5ba5e7b01fb51e2621a4769c6f7eaae85b"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d1011c56d5633d7a5df064d97d9da622",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 8470229,
            "upload_time": "2024-08-27T09:26:07",
            "upload_time_iso_8601": "2024-08-27T09:26:07.376091Z",
            "url": "https://files.pythonhosted.org/packages/f8/68/9ec1d3a9e742160b052579a685894d70fc833b16a4861472e0ec86e49346/vape4d-0.2.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c12858cd3d16750744c1e1ea51edd92b12acfc42b7f8ecb8c3d294227e4c761f",
                "md5": "ccde13003f48e3fa3ccbe5836f8e3890",
                "sha256": "717c6fdf1f51a4984cd854e8da2d9f09b65f3d9fcd75e7feb73315b63aa7b035"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ccde13003f48e3fa3ccbe5836f8e3890",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 8340241,
            "upload_time": "2024-08-27T09:26:24",
            "upload_time_iso_8601": "2024-08-27T09:26:24.669152Z",
            "url": "https://files.pythonhosted.org/packages/c1/28/58cd3d16750744c1e1ea51edd92b12acfc42b7f8ecb8c3d294227e4c761f/vape4d-0.2.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e22f7b8797284c1f917d1cc6a4086486e86a6dcadca56b34b8f438a48bb963a7",
                "md5": "365d4f9ea036ed2482133e715a6a6dff",
                "sha256": "1e181aab0ef900d1d0b953aa5936e5776fa96d92ee1959132de825e11084d950"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "365d4f9ea036ed2482133e715a6a6dff",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 8936976,
            "upload_time": "2024-08-27T09:26:42",
            "upload_time_iso_8601": "2024-08-27T09:26:42.515911Z",
            "url": "https://files.pythonhosted.org/packages/e2/2f/7b8797284c1f917d1cc6a4086486e86a6dcadca56b34b8f438a48bb963a7/vape4d-0.2.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a1f041cacfce366d74f734803b025ecb52589269800620752e3de98ab9f5e21",
                "md5": "62b67d8a1a030b34e6e85039f1c1c3b6",
                "sha256": "2734f95bbbf4e62a6c74c07149dc1962789b0547994604de2a2dd29c40f8972a"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "62b67d8a1a030b34e6e85039f1c1c3b6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 9149098,
            "upload_time": "2024-08-27T09:27:02",
            "upload_time_iso_8601": "2024-08-27T09:27:02.266674Z",
            "url": "https://files.pythonhosted.org/packages/9a/1f/041cacfce366d74f734803b025ecb52589269800620752e3de98ab9f5e21/vape4d-0.2.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f109404ca942bc9150f0d1d7f513072242a6bbc4307bb85aa1cc7935ebf342f2",
                "md5": "abf65061407a3d544d439c1f0ebb81f6",
                "sha256": "cb59b5294fc7af016b011c85b07fc7abd4368709b6391e96b7de344e88cef5c9"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "abf65061407a3d544d439c1f0ebb81f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 8547815,
            "upload_time": "2024-08-27T09:28:11",
            "upload_time_iso_8601": "2024-08-27T09:28:11.360172Z",
            "url": "https://files.pythonhosted.org/packages/f1/09/404ca942bc9150f0d1d7f513072242a6bbc4307bb85aa1cc7935ebf342f2/vape4d-0.2.4-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7f123f8a2ebffacd87317e1a20ea059ce8ef30c8b1bfbc897c7d058ca570f84",
                "md5": "f2b18a5dbf1d08a0f4df39ded7a3ab41",
                "sha256": "7318b5ab50a2fb05fba0de79ec606d631a8af4a5473bdce6ec2cf4cf195dc2ad"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f2b18a5dbf1d08a0f4df39ded7a3ab41",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 8625518,
            "upload_time": "2024-08-27T09:28:31",
            "upload_time_iso_8601": "2024-08-27T09:28:31.471294Z",
            "url": "https://files.pythonhosted.org/packages/a7/f1/23f8a2ebffacd87317e1a20ea059ce8ef30c8b1bfbc897c7d058ca570f84/vape4d-0.2.4-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8749efefb449366eb4f74e286bcddf7430dfaf3f6f9470771e8b6b220d68f56",
                "md5": "55a83e8d0dcc0bbb13e39c4d68476588",
                "sha256": "500c1b1b3d66cbd9e660ceeff7a9b59db4cbe1145803a8716e58e2a79b611397"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "55a83e8d0dcc0bbb13e39c4d68476588",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 8686177,
            "upload_time": "2024-08-27T09:28:50",
            "upload_time_iso_8601": "2024-08-27T09:28:50.872692Z",
            "url": "https://files.pythonhosted.org/packages/e8/74/9efefb449366eb4f74e286bcddf7430dfaf3f6f9470771e8b6b220d68f56/vape4d-0.2.4-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9cd384b9b55a2b2dabfb51fc3b1840c42156d532e05eca07a0229f27a0ed6327",
                "md5": "99e0cc4e14f67d3f9e39a4fdb92c4680",
                "sha256": "1e2b4fe032b182c1edd347f2451e843b67882543dde0cfe0198fd3bc6ad216e7"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99e0cc4e14f67d3f9e39a4fdb92c4680",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 8668781,
            "upload_time": "2024-08-27T09:29:13",
            "upload_time_iso_8601": "2024-08-27T09:29:13.513560Z",
            "url": "https://files.pythonhosted.org/packages/9c/d3/84b9b55a2b2dabfb51fc3b1840c42156d532e05eca07a0229f27a0ed6327/vape4d-0.2.4-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2095b765b252da55adda0b6fdd571eeae34f286048ffb7fe7e6518bd9d403470",
                "md5": "ce4d7318a126f545dd4a9eb97aec6ce6",
                "sha256": "23704052b03a636a02decce3a4732dbdb9f921023e487d5082b350dcd99b7241"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ce4d7318a126f545dd4a9eb97aec6ce6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 8470071,
            "upload_time": "2024-08-27T09:26:10",
            "upload_time_iso_8601": "2024-08-27T09:26:10.271446Z",
            "url": "https://files.pythonhosted.org/packages/20/95/b765b252da55adda0b6fdd571eeae34f286048ffb7fe7e6518bd9d403470/vape4d-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d16867a469ff059b9e0d4480cd253302cd72c26d50fc45e77b1fa9aa5d82e42e",
                "md5": "c00c5f3e7ed58bf7f608f9a67deeec94",
                "sha256": "2d526900823ef4cc2037d177674af00d0f2c8f8d1f728712b59dccf0f0351a1e"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c00c5f3e7ed58bf7f608f9a67deeec94",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 8340915,
            "upload_time": "2024-08-27T09:26:26",
            "upload_time_iso_8601": "2024-08-27T09:26:26.503908Z",
            "url": "https://files.pythonhosted.org/packages/d1/68/67a469ff059b9e0d4480cd253302cd72c26d50fc45e77b1fa9aa5d82e42e/vape4d-0.2.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94fc716f67d46ac56fb821ffe6bd11c8a206fda131d3cd559d8497025355c647",
                "md5": "2d90c9a0b5e6c1eba8d47b2834157e43",
                "sha256": "4faba59cea81f2e34f85b97aa79dae12e75db5da51f9606da0e8bc155ae4757f"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2d90c9a0b5e6c1eba8d47b2834157e43",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 8918397,
            "upload_time": "2024-08-27T09:27:22",
            "upload_time_iso_8601": "2024-08-27T09:27:22.817186Z",
            "url": "https://files.pythonhosted.org/packages/94/fc/716f67d46ac56fb821ffe6bd11c8a206fda131d3cd559d8497025355c647/vape4d-0.2.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee78a0486631c63279593392c6a499adba3ed5768895cac32f7e5e0538603dd4",
                "md5": "02a4d7654488b4fa78bf599d90d3e524",
                "sha256": "0fe4fc27b98e21c22a7368ff31b5f991530f19aa2037edec2783042abfc5bef9"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "02a4d7654488b4fa78bf599d90d3e524",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 8937054,
            "upload_time": "2024-08-27T09:26:44",
            "upload_time_iso_8601": "2024-08-27T09:26:44.928002Z",
            "url": "https://files.pythonhosted.org/packages/ee/78/a0486631c63279593392c6a499adba3ed5768895cac32f7e5e0538603dd4/vape4d-0.2.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93770a59a1c123c04ed754ddaff45210ac84a25219a0e4968f77fe375c6a18e6",
                "md5": "5e64a1ab8e302c1536b5b76fd1e60dfb",
                "sha256": "1e8aaeaec0c4fd16924f9127e22216c081fd7f5036a19fef2c423c8368fe0916"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5e64a1ab8e302c1536b5b76fd1e60dfb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 9149777,
            "upload_time": "2024-08-27T09:27:05",
            "upload_time_iso_8601": "2024-08-27T09:27:05.139713Z",
            "url": "https://files.pythonhosted.org/packages/93/77/0a59a1c123c04ed754ddaff45210ac84a25219a0e4968f77fe375c6a18e6/vape4d-0.2.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f58914fc40ba458ea1f89fc20b20e62054fd793c779b10f0b248e44048003ad9",
                "md5": "84a40502cdf22631638fbd9e6975d838",
                "sha256": "3779cc646f598a28c1715ef3d59ca4c99abf02552f126be5ef8c6bc4f9d1d298"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84a40502cdf22631638fbd9e6975d838",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 8499758,
            "upload_time": "2024-08-27T09:27:40",
            "upload_time_iso_8601": "2024-08-27T09:27:40.671177Z",
            "url": "https://files.pythonhosted.org/packages/f5/89/14fc40ba458ea1f89fc20b20e62054fd793c779b10f0b248e44048003ad9/vape4d-0.2.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d22961c9342d3eb2e9d6f2c2f4381ae1529a1721d3010f3a9534caa3ab2ef7c8",
                "md5": "ea0a5fa584984972e6237e899c934e76",
                "sha256": "acff2b76b454d0306eea9687fe1d33e3e3394cd02de6e7e10d3d30ee95df56dc"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ea0a5fa584984972e6237e899c934e76",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 8548609,
            "upload_time": "2024-08-27T09:28:13",
            "upload_time_iso_8601": "2024-08-27T09:28:13.589070Z",
            "url": "https://files.pythonhosted.org/packages/d2/29/61c9342d3eb2e9d6f2c2f4381ae1529a1721d3010f3a9534caa3ab2ef7c8/vape4d-0.2.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6d05183bb314454c31ea295dd157d588e0fe8cb303d8f970cd13aa9c9b94ac6",
                "md5": "a8c49011a0ab31910fa9c8cd421ec140",
                "sha256": "f821976fbc2dcc01f3c0399d1e37c3ab13ccc3355053846db2232f4a3b95355a"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a8c49011a0ab31910fa9c8cd421ec140",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 8625385,
            "upload_time": "2024-08-27T09:28:33",
            "upload_time_iso_8601": "2024-08-27T09:28:33.877191Z",
            "url": "https://files.pythonhosted.org/packages/c6/d0/5183bb314454c31ea295dd157d588e0fe8cb303d8f970cd13aa9c9b94ac6/vape4d-0.2.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c8648d6d064743c25f945f890f23b67c0f1935fabd3e11e5123662b58b828c9",
                "md5": "d3c35d3a4175ffb852a219396736ec04",
                "sha256": "b3f04dfa5e0efb9808b3bd19b9b84abb36187bbb89e89513536cf20ca96a535d"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d3c35d3a4175ffb852a219396736ec04",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 8686931,
            "upload_time": "2024-08-27T09:28:53",
            "upload_time_iso_8601": "2024-08-27T09:28:53.656928Z",
            "url": "https://files.pythonhosted.org/packages/0c/86/48d6d064743c25f945f890f23b67c0f1935fabd3e11e5123662b58b828c9/vape4d-0.2.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "25c93101aba005252ef7b854f939b35fe26731460cde7bd5f856385dcc45986d",
                "md5": "ebf0defb3a2478564af3c65d5981b2fe",
                "sha256": "07acfb337f9e08f96da449c5fc8b2247f99e293fe706ec6d43f60d928fc6b6dc"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebf0defb3a2478564af3c65d5981b2fe",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 8668780,
            "upload_time": "2024-08-27T09:29:16",
            "upload_time_iso_8601": "2024-08-27T09:29:16.681724Z",
            "url": "https://files.pythonhosted.org/packages/25/c9/3101aba005252ef7b854f939b35fe26731460cde7bd5f856385dcc45986d/vape4d-0.2.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb0b332c19c8698a5a6f15aba2eae3ee433e0123ec3b17a51d72585e9c6c9e14",
                "md5": "815a2e0a1496bacd36edf4d70b9291e5",
                "sha256": "a2291adbba3505730efeccfe3b5e44fc5ad312870db8151b24d2df684b59302d"
            },
            "downloads": -1,
            "filename": "vape4d-0.2.4.tar.gz",
            "has_sig": false,
            "md5_digest": "815a2e0a1496bacd36edf4d70b9291e5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 12990843,
            "upload_time": "2024-08-27T09:29:19",
            "upload_time_iso_8601": "2024-08-27T09:29:19.374541Z",
            "url": "https://files.pythonhosted.org/packages/bb/0b/332c19c8698a5a6f15aba2eae3ee433e0123ec3b17a51d72585e9c6c9e14/vape4d-0.2.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-27 09:29:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "KeKsBoTer",
    "github_project": "vape4d",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "vape4d"
}
        
Elapsed time: 0.28948s