esbuild-py


Nameesbuild-py JSON
Version 0.1.5 PyPI version JSON
download
home_pageNone
SummaryPython bindings to the esbuild Transform API
upload_time2024-04-16 00:15:52
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseMIT License Copyright (c) 2024 Mark Keller Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords widgets javascript react
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # esbuild-py

[![PyPI](https://img.shields.io/pypi/v/esbuild_py)](https://pypi.org/project/esbuild_py)
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/keller-mark/esbuild-py/blob/main/scripts/esbuild_py_demo.ipynb)

Python bindings to the [esbuild](https://github.com/evanw/esbuild) [Transform API](https://pkg.go.dev/github.com/evanw/esbuild@v0.20.2/pkg/api#hdr-Transform_API).
## Installation

```py
pip install esbuild_py
```

## Usage

```python
from esbuild_py import transform

jsx = """
import * as React from 'react'
import * as ReactDOM from 'react-dom'

ReactDOM.render(
    <h1>Hello, world!</h1>,
    document.getElementById('root')
);
"""

print(transform(jsx))
```

## API

### `transform`

Parameters:
- `jsx` (`str`) - The JSX string to be transformed.

Returns: `str` - The transformed JS as a string.


## Development

### Setup

Create conda environment

```sh
conda create -n esbuild-py python=3.11
```

- Install go v1.20.12 from https://go.dev/dl/

### Build

```sh
conda activate esbuild-py
go get github.com/keller-mark/esbuild-py
# go build -buildmode=c-shared -o _esbuild.so
```

### Develop

Build python package and install in editable mode

```sh
python setup.py bdist_wheel
python setup.py sdist
pip install -e .
```

### Publish

Increment the version in `pyproject.toml`.
The [cibuildwheel](https://github.com/pypa/cibuildwheel) GH action will build wheels for a matrix of Python versions, OS, and architectures.
Then, GH actions will publish to PyPI.

## Resources


- https://github.com/ardanlabs/python-go/tree/master/pyext
- https://pkg.go.dev/github.com/evanw/esbuild@v0.20.2/pkg/api#hdr-Transform_API
- https://github.com/evanw/esbuild/blob/main/.github/workflows/ci.yml

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "esbuild-py",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "widgets, javascript, react",
    "author": null,
    "author_email": "Mark Keller <mark_keller@hms.harvard.edu>",
    "download_url": "https://files.pythonhosted.org/packages/c4/ef/25ec4fa5c99aff207d60516c21952706d81501769ce98d62476f271962cf/esbuild_py-0.1.5.tar.gz",
    "platform": null,
    "description": "# esbuild-py\n\n[![PyPI](https://img.shields.io/pypi/v/esbuild_py)](https://pypi.org/project/esbuild_py)\n[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/keller-mark/esbuild-py/blob/main/scripts/esbuild_py_demo.ipynb)\n\nPython bindings to the [esbuild](https://github.com/evanw/esbuild) [Transform API](https://pkg.go.dev/github.com/evanw/esbuild@v0.20.2/pkg/api#hdr-Transform_API).\n## Installation\n\n```py\npip install esbuild_py\n```\n\n## Usage\n\n```python\nfrom esbuild_py import transform\n\njsx = \"\"\"\nimport * as React from 'react'\nimport * as ReactDOM from 'react-dom'\n\nReactDOM.render(\n    <h1>Hello, world!</h1>,\n    document.getElementById('root')\n);\n\"\"\"\n\nprint(transform(jsx))\n```\n\n## API\n\n### `transform`\n\nParameters:\n- `jsx` (`str`) - The JSX string to be transformed.\n\nReturns: `str` - The transformed JS as a string.\n\n\n## Development\n\n### Setup\n\nCreate conda environment\n\n```sh\nconda create -n esbuild-py python=3.11\n```\n\n- Install go v1.20.12 from https://go.dev/dl/\n\n### Build\n\n```sh\nconda activate esbuild-py\ngo get github.com/keller-mark/esbuild-py\n# go build -buildmode=c-shared -o _esbuild.so\n```\n\n### Develop\n\nBuild python package and install in editable mode\n\n```sh\npython setup.py bdist_wheel\npython setup.py sdist\npip install -e .\n```\n\n### Publish\n\nIncrement the version in `pyproject.toml`.\nThe [cibuildwheel](https://github.com/pypa/cibuildwheel) GH action will build wheels for a matrix of Python versions, OS, and architectures.\nThen, GH actions will publish to PyPI.\n\n## Resources\n\n\n- https://github.com/ardanlabs/python-go/tree/master/pyext\n- https://pkg.go.dev/github.com/evanw/esbuild@v0.20.2/pkg/api#hdr-Transform_API\n- https://github.com/evanw/esbuild/blob/main/.github/workflows/ci.yml\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Mark Keller  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Python bindings to the esbuild Transform API",
    "version": "0.1.5",
    "project_urls": {
        "repository": "https://github.com/keller-mark/esbuild-py"
    },
    "split_keywords": [
        "widgets",
        " javascript",
        " react"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba6f8543e4ab91983b18b36eb029638ab36e92d5ab4f3174de9f9e990efbf754",
                "md5": "687f5d989f47ee36a79a401d3a7f28e4",
                "sha256": "9aea1f78f456da219131e01a3c70b991489cac3a276066ae48f87ff42ac32bdb"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "687f5d989f47ee36a79a401d3a7f28e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2991575,
            "upload_time": "2024-04-16T00:13:30",
            "upload_time_iso_8601": "2024-04-16T00:13:30.558191Z",
            "url": "https://files.pythonhosted.org/packages/ba/6f/8543e4ab91983b18b36eb029638ab36e92d5ab4f3174de9f9e990efbf754/esbuild_py-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02c8e108cdeea712f013cafe6709f106a4ac4942803dc51142f006a81d4d9813",
                "md5": "1084da1999d6539f3dd2c621b8afc670",
                "sha256": "802c41d66345d09dbab1d4159442e3ce0b5f695bf162aa03724b406273dae3b4"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1084da1999d6539f3dd2c621b8afc670",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2793743,
            "upload_time": "2024-04-16T00:13:48",
            "upload_time_iso_8601": "2024-04-16T00:13:48.639150Z",
            "url": "https://files.pythonhosted.org/packages/02/c8/e108cdeea712f013cafe6709f106a4ac4942803dc51142f006a81d4d9813/esbuild_py-0.1.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df523394dc7ad60be2a6559002d70363219e57447c2d4f4b7d3638fb612d3a27",
                "md5": "f865d789c510200b21d7eb00305de561",
                "sha256": "4841849585a3fd661b6b67e0ef8a6a960c25b9fbecfdc34d95005775fb89d958"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f865d789c510200b21d7eb00305de561",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5189514,
            "upload_time": "2024-04-16T00:13:50",
            "upload_time_iso_8601": "2024-04-16T00:13:50.161367Z",
            "url": "https://files.pythonhosted.org/packages/df/52/3394dc7ad60be2a6559002d70363219e57447c2d4f4b7d3638fb612d3a27/esbuild_py-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51358d34b1fee7c59544a0637e358c1f7f403f7601d47c06c52c32d421904d8e",
                "md5": "d0639ddf39a237c428132ac67492ffee",
                "sha256": "d30563f07d1a1546177b7cec0af0e96a0f7e15eb0f6db07905fdf2bc74a82a10"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d0639ddf39a237c428132ac67492ffee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5184982,
            "upload_time": "2024-04-16T00:13:51",
            "upload_time_iso_8601": "2024-04-16T00:13:51.845166Z",
            "url": "https://files.pythonhosted.org/packages/51/35/8d34b1fee7c59544a0637e358c1f7f403f7601d47c06c52c32d421904d8e/esbuild_py-0.1.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f61dfe5d64412fb83629b8574da109d01631614d367c80bcd264a8e13284315e",
                "md5": "7fc1311ca006d4a38eef6180e0677aed",
                "sha256": "983fea45282f92209acc92261f0703bb609a626088af34287ad019d73756c838"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "7fc1311ca006d4a38eef6180e0677aed",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 7157953,
            "upload_time": "2024-04-16T00:13:53",
            "upload_time_iso_8601": "2024-04-16T00:13:53.981128Z",
            "url": "https://files.pythonhosted.org/packages/f6/1d/fe5d64412fb83629b8574da109d01631614d367c80bcd264a8e13284315e/esbuild_py-0.1.5-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76217a33db38369727c2993376aab06d58c791b59d34c351f767019fb7689846",
                "md5": "a9d81bb6f0aacea8ec1f1981418fea0c",
                "sha256": "cf87d678750c75a5fc4cc7dd3627f6ffebc40ee173df666e1e76c40258eab236"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9d81bb6f0aacea8ec1f1981418fea0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 7254338,
            "upload_time": "2024-04-16T00:13:56",
            "upload_time_iso_8601": "2024-04-16T00:13:56.167789Z",
            "url": "https://files.pythonhosted.org/packages/76/21/7a33db38369727c2993376aab06d58c791b59d34c351f767019fb7689846/esbuild_py-0.1.5-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c588dbf34b4019d68125f8e679f7039c265d605955f294bacfadfeaf89134946",
                "md5": "1a25c1689ce983fc4580f4aa82bfddd0",
                "sha256": "00ad3e107d93521ef98c88c42f4a3cfbae90081028c16a1fb1a01478431ce06e"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "1a25c1689ce983fc4580f4aa82bfddd0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5055859,
            "upload_time": "2024-04-16T00:13:57",
            "upload_time_iso_8601": "2024-04-16T00:13:57.887485Z",
            "url": "https://files.pythonhosted.org/packages/c5/88/dbf34b4019d68125f8e679f7039c265d605955f294bacfadfeaf89134946/esbuild_py-0.1.5-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16237035acc6564a274c0c204e9278c22736aad315bbaf0e7ff3c46585c40e27",
                "md5": "137b126c767159b69851a463386f705f",
                "sha256": "fffc5cb41b6ece9d119298dbc171b2d65a2cebb192ddc713ffa14f3608ad1545"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "137b126c767159b69851a463386f705f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5055932,
            "upload_time": "2024-04-16T00:13:59",
            "upload_time_iso_8601": "2024-04-16T00:13:59.743580Z",
            "url": "https://files.pythonhosted.org/packages/16/23/7035acc6564a274c0c204e9278c22736aad315bbaf0e7ff3c46585c40e27/esbuild_py-0.1.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92567f182dbf982087efebfc1eb7b53c1797e59f7d89b86460523ec3dfffa895",
                "md5": "25cc7b68732c866955d1164367da41da",
                "sha256": "ead98497039a811c0e41a24873218616dde5b205d3e5cfa3530a780269b43194"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "25cc7b68732c866955d1164367da41da",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2991574,
            "upload_time": "2024-04-16T00:14:02",
            "upload_time_iso_8601": "2024-04-16T00:14:02.369541Z",
            "url": "https://files.pythonhosted.org/packages/92/56/7f182dbf982087efebfc1eb7b53c1797e59f7d89b86460523ec3dfffa895/esbuild_py-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7d5eb70c226ae2c6ae41add95ba3e99e4032699f65bbb0c537a04d04292c27c",
                "md5": "2c679c665679df86855d8ba913443b1a",
                "sha256": "ec70994d5fd9f36635568847770d48eac5512e8c0b3fe8dbe23b9dbc4ad7ad27"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2c679c665679df86855d8ba913443b1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2793748,
            "upload_time": "2024-04-16T00:14:04",
            "upload_time_iso_8601": "2024-04-16T00:14:04.543235Z",
            "url": "https://files.pythonhosted.org/packages/b7/d5/eb70c226ae2c6ae41add95ba3e99e4032699f65bbb0c537a04d04292c27c/esbuild_py-0.1.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1df47829c8b3e6f796ed2c311ede49ebf91b38743af5005b24f2609e515d10e2",
                "md5": "e26fec65e4f28d3a3e20fae91267807e",
                "sha256": "990733343f3bed28908e142178c1740db1b31deb9c8a0143b4f9794cf7f99c69"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e26fec65e4f28d3a3e20fae91267807e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5189514,
            "upload_time": "2024-04-16T00:14:06",
            "upload_time_iso_8601": "2024-04-16T00:14:06.218823Z",
            "url": "https://files.pythonhosted.org/packages/1d/f4/7829c8b3e6f796ed2c311ede49ebf91b38743af5005b24f2609e515d10e2/esbuild_py-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9af12bb1a77b504aac104421e4df770881f62127aeca2706ce4a1935c2b6cead",
                "md5": "f181f67f11db96c29ef4217ed7eb5962",
                "sha256": "1ae88dfb13e9e98cdfa71dc037c6795632dc3e9b38a2d4b0b2bbc4d5415aebb2"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f181f67f11db96c29ef4217ed7eb5962",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5184982,
            "upload_time": "2024-04-16T00:14:08",
            "upload_time_iso_8601": "2024-04-16T00:14:08.662690Z",
            "url": "https://files.pythonhosted.org/packages/9a/f1/2bb1a77b504aac104421e4df770881f62127aeca2706ce4a1935c2b6cead/esbuild_py-0.1.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bc4b910f2d8ca540f8370e9d31907cba5b56c29896b57b0b5ea55dde4b32a81",
                "md5": "fc34a9e1da17c34aaa56dfe5c90d1df1",
                "sha256": "5182e2ca92c980854e6d4f4f675a106d4bffe9ead8af570a8e5cefe433b78578"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "fc34a9e1da17c34aaa56dfe5c90d1df1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 7157958,
            "upload_time": "2024-04-16T00:14:11",
            "upload_time_iso_8601": "2024-04-16T00:14:11.214018Z",
            "url": "https://files.pythonhosted.org/packages/4b/c4/b910f2d8ca540f8370e9d31907cba5b56c29896b57b0b5ea55dde4b32a81/esbuild_py-0.1.5-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "239fdd8bc248bba1ce73e473d586cf5af1278c9b2dbb5cd1445b9fed67bce297",
                "md5": "200c3191576a025ad073b9690eb82dd9",
                "sha256": "83485eadd455a3f55208c1cc0b89d7515c9a8741fedac82cb355cfb6545b06fd"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "200c3191576a025ad073b9690eb82dd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 7254344,
            "upload_time": "2024-04-16T00:14:13",
            "upload_time_iso_8601": "2024-04-16T00:14:13.175726Z",
            "url": "https://files.pythonhosted.org/packages/23/9f/dd8bc248bba1ce73e473d586cf5af1278c9b2dbb5cd1445b9fed67bce297/esbuild_py-0.1.5-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2013e670dba62d0b170dcb6137f10c083258a5d0c7fe9ca30370a83fc71fda65",
                "md5": "44c83b9f47d801ead3d2069546fd7015",
                "sha256": "0bc414fef3f3685ab6a2006ca4ff8705c8e719107da96c43f29bb2af8ca4f0a1"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "44c83b9f47d801ead3d2069546fd7015",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5055789,
            "upload_time": "2024-04-16T00:14:15",
            "upload_time_iso_8601": "2024-04-16T00:14:15.020613Z",
            "url": "https://files.pythonhosted.org/packages/20/13/e670dba62d0b170dcb6137f10c083258a5d0c7fe9ca30370a83fc71fda65/esbuild_py-0.1.5-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21c19cb30bf1b5c77188ee211e4578b1b31f0a464381041e174e752e3ceaefb8",
                "md5": "6fa331d792f329148b6fc9f4e80e9b9c",
                "sha256": "8435907a0fe517b8ea03814a7ee01b7d82f4caafba76c56e6e59350e588103d5"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6fa331d792f329148b6fc9f4e80e9b9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5056192,
            "upload_time": "2024-04-16T00:14:17",
            "upload_time_iso_8601": "2024-04-16T00:14:17.782261Z",
            "url": "https://files.pythonhosted.org/packages/21/c1/9cb30bf1b5c77188ee211e4578b1b31f0a464381041e174e752e3ceaefb8/esbuild_py-0.1.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe7ccede77d84f89951c3b115b3e40947d3f236e65bb63e7035f3ce41edd9e44",
                "md5": "415b7d8aea8f4c3bad9ba2105b2cb865",
                "sha256": "3c73a539f7989337bcac3eb92dc59a4ea3b3e40f44c728589d03fb9d4cd6b63d"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "415b7d8aea8f4c3bad9ba2105b2cb865",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2991577,
            "upload_time": "2024-04-16T00:14:19",
            "upload_time_iso_8601": "2024-04-16T00:14:19.533253Z",
            "url": "https://files.pythonhosted.org/packages/fe/7c/cede77d84f89951c3b115b3e40947d3f236e65bb63e7035f3ce41edd9e44/esbuild_py-0.1.5-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36fda0096698144158e61977c26e8d36c9f6041a3c5932b1bd5cedde6cda1c41",
                "md5": "bcba332208834df3ddac5413dba83dd0",
                "sha256": "404f8ee76ff8b0ba997d89298e73657ccba7f61b4c4ef44e44a6e55e7c74fdc7"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bcba332208834df3ddac5413dba83dd0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2793745,
            "upload_time": "2024-04-16T00:14:21",
            "upload_time_iso_8601": "2024-04-16T00:14:21.681588Z",
            "url": "https://files.pythonhosted.org/packages/36/fd/a0096698144158e61977c26e8d36c9f6041a3c5932b1bd5cedde6cda1c41/esbuild_py-0.1.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "278ce7979f5992115b9937e71ea3482d5afdbc5921494db72a3943289efe6a33",
                "md5": "96fda46ad733d44fea6311336a16535d",
                "sha256": "cfd9d03e3ac73c085e70c963dc064ea313d444b802342818ce5c5613aced3f07"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "96fda46ad733d44fea6311336a16535d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5189514,
            "upload_time": "2024-04-16T00:14:24",
            "upload_time_iso_8601": "2024-04-16T00:14:24.538391Z",
            "url": "https://files.pythonhosted.org/packages/27/8c/e7979f5992115b9937e71ea3482d5afdbc5921494db72a3943289efe6a33/esbuild_py-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb44aa38c3c71312a032c1e0fcad08fad61ccb998f3de479512da12b4e7eed46",
                "md5": "981d4df5872f05412ac28c3de24f5f43",
                "sha256": "827ae5a38dfe2e1a4968fea9757f2b3762595ecc85d3dbd0bc5ccfba18332999"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "981d4df5872f05412ac28c3de24f5f43",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5184982,
            "upload_time": "2024-04-16T00:14:26",
            "upload_time_iso_8601": "2024-04-16T00:14:26.155597Z",
            "url": "https://files.pythonhosted.org/packages/bb/44/aa38c3c71312a032c1e0fcad08fad61ccb998f3de479512da12b4e7eed46/esbuild_py-0.1.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebb7883f2cc0d62cfddd8004ed47c6b5eba66b5224ad3d66c88a0395b40535d4",
                "md5": "f3bf4eb1a4edc4834d5d1bb35da3ec4a",
                "sha256": "72c7b32cd1612f77dbdc22cd169b6f9891bc5a9da2fc453239804f8b64a343a4"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f3bf4eb1a4edc4834d5d1bb35da3ec4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 7157960,
            "upload_time": "2024-04-16T00:14:27",
            "upload_time_iso_8601": "2024-04-16T00:14:27.747472Z",
            "url": "https://files.pythonhosted.org/packages/eb/b7/883f2cc0d62cfddd8004ed47c6b5eba66b5224ad3d66c88a0395b40535d4/esbuild_py-0.1.5-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c23d3c8b218abd82e8b4b17e0a6f7229126546b1a521dd42735145472f68a16e",
                "md5": "a00ea852a0f5ed82437d7cd1504c8be2",
                "sha256": "3f7d086cbd0e9459558089d4f9c259f72f77d9d0872874af57a73c1401986ee2"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a00ea852a0f5ed82437d7cd1504c8be2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 7254342,
            "upload_time": "2024-04-16T00:14:29",
            "upload_time_iso_8601": "2024-04-16T00:14:29.413631Z",
            "url": "https://files.pythonhosted.org/packages/c2/3d/3c8b218abd82e8b4b17e0a6f7229126546b1a521dd42735145472f68a16e/esbuild_py-0.1.5-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "031d0a5b71470d384b9f2b0eb5462d2b11386419a69cc3cba05e76ac209c9457",
                "md5": "4efe7d2876926da0f02e159eed536bfb",
                "sha256": "86f32ccb1b65add80023a5ae3353b64ca1f20b1216daf57c4ab38d0118064137"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "4efe7d2876926da0f02e159eed536bfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5055889,
            "upload_time": "2024-04-16T00:14:31",
            "upload_time_iso_8601": "2024-04-16T00:14:31.822492Z",
            "url": "https://files.pythonhosted.org/packages/03/1d/0a5b71470d384b9f2b0eb5462d2b11386419a69cc3cba05e76ac209c9457/esbuild_py-0.1.5-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "620fe04ba763a1d9f531618dd56c1b2099d7be430872002b61a7c77e0fdb2ef1",
                "md5": "5c1790b4756958554ce439ffd018e749",
                "sha256": "5e2aae34b71b2e4060b7aee4e3c8954ce3271c4422501e75a8db4ed1926b9bf7"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5c1790b4756958554ce439ffd018e749",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5056020,
            "upload_time": "2024-04-16T00:14:33",
            "upload_time_iso_8601": "2024-04-16T00:14:33.634276Z",
            "url": "https://files.pythonhosted.org/packages/62/0f/e04ba763a1d9f531618dd56c1b2099d7be430872002b61a7c77e0fdb2ef1/esbuild_py-0.1.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ba6d903db80e05e3b031f603cb1249efb98a0511e66662cde66550234739eef",
                "md5": "aa0590fb4287a31b00e789046c734e7a",
                "sha256": "4db6816fbad5e98298e55aca1104530ae9259bd5681bbf37e56f16c4298e917f"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa0590fb4287a31b00e789046c734e7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2991576,
            "upload_time": "2024-04-16T00:14:35",
            "upload_time_iso_8601": "2024-04-16T00:14:35.954646Z",
            "url": "https://files.pythonhosted.org/packages/9b/a6/d903db80e05e3b031f603cb1249efb98a0511e66662cde66550234739eef/esbuild_py-0.1.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6cafa3b9c093530399336a63b78360f09d14aead3f49354375688257f66a516",
                "md5": "f91a121378175f0d83af93e5d8cdaa23",
                "sha256": "ad0435f43161defc0a57827ea0152b8c886f9b8007df600fb55e24b981cc2907"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f91a121378175f0d83af93e5d8cdaa23",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5189513,
            "upload_time": "2024-04-16T00:14:37",
            "upload_time_iso_8601": "2024-04-16T00:14:37.526963Z",
            "url": "https://files.pythonhosted.org/packages/f6/ca/fa3b9c093530399336a63b78360f09d14aead3f49354375688257f66a516/esbuild_py-0.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd889180f61dad4283c09528158ba8a80e9c1d3372f4fdb59cb23c5b6e81a61a",
                "md5": "ea8a3451e8ff162defee48a5b0af7b2a",
                "sha256": "435771e5c546ce30941c9eb4912b26528228e540a98f880280284c9b7037779d"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea8a3451e8ff162defee48a5b0af7b2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5184980,
            "upload_time": "2024-04-16T00:14:39",
            "upload_time_iso_8601": "2024-04-16T00:14:39.332222Z",
            "url": "https://files.pythonhosted.org/packages/dd/88/9180f61dad4283c09528158ba8a80e9c1d3372f4fdb59cb23c5b6e81a61a/esbuild_py-0.1.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3fae19355b1e8b71ab1a727fdb95ca59a95b34824ea92a12614323da4a71bb4",
                "md5": "7e708320d4b176a32a037568ab684fe4",
                "sha256": "2096fcbfb97bf686013f318186a829277e86a6a21a3beafaf140bda901b8d542"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "7e708320d4b176a32a037568ab684fe4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 7157955,
            "upload_time": "2024-04-16T00:14:40",
            "upload_time_iso_8601": "2024-04-16T00:14:40.806424Z",
            "url": "https://files.pythonhosted.org/packages/b3/fa/e19355b1e8b71ab1a727fdb95ca59a95b34824ea92a12614323da4a71bb4/esbuild_py-0.1.5-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90bfb64adfd7220507e039d7fd9d95df7ac221f36a1d900eb152160191f13df7",
                "md5": "81333a79cfa9957218f6e8c5452f3af4",
                "sha256": "cf8d339d77c1ea55fbd608bfcb9e5c6ee8350664ad4922c0243dc7fbcb64ac83"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "81333a79cfa9957218f6e8c5452f3af4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 7254338,
            "upload_time": "2024-04-16T00:14:43",
            "upload_time_iso_8601": "2024-04-16T00:14:43.049902Z",
            "url": "https://files.pythonhosted.org/packages/90/bf/b64adfd7220507e039d7fd9d95df7ac221f36a1d900eb152160191f13df7/esbuild_py-0.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "262ca6848120974acce220bf040f7a3824341ec94b247a25a8e7bc7a017a66fe",
                "md5": "4fd102a5017ad8868dc1a5f72e3da410",
                "sha256": "859b301ed0271c8a64513d7ac4b0519e554b3799abe625c373ef1f06a9f27164"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "4fd102a5017ad8868dc1a5f72e3da410",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5055900,
            "upload_time": "2024-04-16T00:14:44",
            "upload_time_iso_8601": "2024-04-16T00:14:44.900516Z",
            "url": "https://files.pythonhosted.org/packages/26/2c/a6848120974acce220bf040f7a3824341ec94b247a25a8e7bc7a017a66fe/esbuild_py-0.1.5-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db0592ed97801919bf43894546f829e805adaafb809dc2055a765e4ba6af50bf",
                "md5": "0818d09883e64526740b8bb41c678788",
                "sha256": "5cc8fdcdfa3c6ce64d6d10cf2f6b799ed0690b470cddb377223749c618215dc8"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0818d09883e64526740b8bb41c678788",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5056029,
            "upload_time": "2024-04-16T00:14:46",
            "upload_time_iso_8601": "2024-04-16T00:14:46.883464Z",
            "url": "https://files.pythonhosted.org/packages/db/05/92ed97801919bf43894546f829e805adaafb809dc2055a765e4ba6af50bf/esbuild_py-0.1.5-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0713f331f345cf12064cf3a3310ae600a033bb81f7faca2bb9cdf4677b2e06f2",
                "md5": "ba938efbc31f9844024c42f1f2dde36c",
                "sha256": "6576104d5049fe546a6cae1e4dc1f0a49b4ff625abe4a4494bfa4a71a2597278"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba938efbc31f9844024c42f1f2dde36c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2991575,
            "upload_time": "2024-04-16T00:14:48",
            "upload_time_iso_8601": "2024-04-16T00:14:48.417207Z",
            "url": "https://files.pythonhosted.org/packages/07/13/f331f345cf12064cf3a3310ae600a033bb81f7faca2bb9cdf4677b2e06f2/esbuild_py-0.1.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a94b82ebc82933f59f949510092c122cb849f4351dcfc4e7e16f8e4aa352a072",
                "md5": "e82267b102e37ebc6fe8aaccee0a4ba7",
                "sha256": "f41208752963b954625d5c53206aa69e378625e638c503b250275113925eb20c"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e82267b102e37ebc6fe8aaccee0a4ba7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2793742,
            "upload_time": "2024-04-16T00:14:50",
            "upload_time_iso_8601": "2024-04-16T00:14:50.345179Z",
            "url": "https://files.pythonhosted.org/packages/a9/4b/82ebc82933f59f949510092c122cb849f4351dcfc4e7e16f8e4aa352a072/esbuild_py-0.1.5-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a16388a8559834c354388003c9b72a0cb5f6f365d63ecccd09df61cd5c8ab54f",
                "md5": "f740745bab25d1291f8950abc61113d7",
                "sha256": "33220913934232e4e1188fcb9aa675e5a778ad96149876ccefcb32bcf2b6dcc6"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f740745bab25d1291f8950abc61113d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5189508,
            "upload_time": "2024-04-16T00:14:51",
            "upload_time_iso_8601": "2024-04-16T00:14:51.879662Z",
            "url": "https://files.pythonhosted.org/packages/a1/63/88a8559834c354388003c9b72a0cb5f6f365d63ecccd09df61cd5c8ab54f/esbuild_py-0.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9883251659dc1acb1437102c0f98a4b5b7de5978deef73edf71ad6d6951c6a1e",
                "md5": "3d6c7ac6f35b418e0f48782050170844",
                "sha256": "7e5b3a21155b91c7f0972efee9efc8cec88c4a7652213a79f1b64880511bf518"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d6c7ac6f35b418e0f48782050170844",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5184977,
            "upload_time": "2024-04-16T00:14:53",
            "upload_time_iso_8601": "2024-04-16T00:14:53.359626Z",
            "url": "https://files.pythonhosted.org/packages/98/83/251659dc1acb1437102c0f98a4b5b7de5978deef73edf71ad6d6951c6a1e/esbuild_py-0.1.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a07d385b2e99f6ef30cfcb3ff11039d4db40db09aa4ec4a6424d52860589b754",
                "md5": "ad7235382c7dc01e88dafaaeb24bdc7c",
                "sha256": "99283382e4554dab57efc004beb88beefc832c067032d404e1ec1b68cd2da396"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "ad7235382c7dc01e88dafaaeb24bdc7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 7157947,
            "upload_time": "2024-04-16T00:14:55",
            "upload_time_iso_8601": "2024-04-16T00:14:55.057432Z",
            "url": "https://files.pythonhosted.org/packages/a0/7d/385b2e99f6ef30cfcb3ff11039d4db40db09aa4ec4a6424d52860589b754/esbuild_py-0.1.5-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3b4a1dd56155bff2d9577716fdc1f15805e1fb092a61307049e35a0c0f7e7a3",
                "md5": "43cc52279fc48655d4237ba10ab31b2d",
                "sha256": "e1ef22be6c509bc1b0eb006c698c4259e20e7037c74ce21416b692298a25f509"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "43cc52279fc48655d4237ba10ab31b2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 7254333,
            "upload_time": "2024-04-16T00:14:56",
            "upload_time_iso_8601": "2024-04-16T00:14:56.783464Z",
            "url": "https://files.pythonhosted.org/packages/b3/b4/a1dd56155bff2d9577716fdc1f15805e1fb092a61307049e35a0c0f7e7a3/esbuild_py-0.1.5-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f2386182cea3862227ace41f4821b81c475d70922cfe8927d49b8afb83845c3",
                "md5": "429b090f4f50a41e7b1813657d86362e",
                "sha256": "e98cb3738d2a77fdcbe095a82f25f105ce31adb51db46b22b96b6d0913029667"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "429b090f4f50a41e7b1813657d86362e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5055925,
            "upload_time": "2024-04-16T00:14:58",
            "upload_time_iso_8601": "2024-04-16T00:14:58.287465Z",
            "url": "https://files.pythonhosted.org/packages/5f/23/86182cea3862227ace41f4821b81c475d70922cfe8927d49b8afb83845c3/esbuild_py-0.1.5-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b561da8a09038519ab40cc17d1f6cb61e5ca81b40b88876fff325402e8492290",
                "md5": "f8d98ee781f467e14aa4b6c936d0c6cd",
                "sha256": "381280021ce04e61fa028d3a6d47d6782120cb2ca095f89563d16e75b2ad5ea2"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f8d98ee781f467e14aa4b6c936d0c6cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5056142,
            "upload_time": "2024-04-16T00:14:59",
            "upload_time_iso_8601": "2024-04-16T00:14:59.795303Z",
            "url": "https://files.pythonhosted.org/packages/b5/61/da8a09038519ab40cc17d1f6cb61e5ca81b40b88876fff325402e8492290/esbuild_py-0.1.5-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f60ae3f1402e399c9f7a737037866fdb5ac58ce230ccd1fc56dafacc6463c2b",
                "md5": "8d44e3becfaf3455ff43892fbc4dff99",
                "sha256": "7952049dacafb3c5cf5a7c8bb34b01b4302e0c7c8d3510548de3b9597ef05513"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d44e3becfaf3455ff43892fbc4dff99",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2991570,
            "upload_time": "2024-04-16T00:15:01",
            "upload_time_iso_8601": "2024-04-16T00:15:01.449611Z",
            "url": "https://files.pythonhosted.org/packages/5f/60/ae3f1402e399c9f7a737037866fdb5ac58ce230ccd1fc56dafacc6463c2b/esbuild_py-0.1.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "279001be3ba0472de173d596ea705cbdaba06ae2d79d03de3b4b262b0d7e5bb9",
                "md5": "ef7dc6e617f0b4b5646c166e1d0f01b7",
                "sha256": "5ff22a5dcca83b62bbb58af5d08da9f37c3f65d30a4bc4a90c8590b1586da6ea"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ef7dc6e617f0b4b5646c166e1d0f01b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2793741,
            "upload_time": "2024-04-16T00:15:03",
            "upload_time_iso_8601": "2024-04-16T00:15:03.295720Z",
            "url": "https://files.pythonhosted.org/packages/27/90/01be3ba0472de173d596ea705cbdaba06ae2d79d03de3b4b262b0d7e5bb9/esbuild_py-0.1.5-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "733a56d29c6580afe4d1d039e6839a749ba5647ff122c44358b5e56f216e1661",
                "md5": "781b017ea732bf79a6c22f097998c21a",
                "sha256": "1818b25089783123e04fad73840139c7f17cf342383bb6afb9a6ab886cb66032"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "781b017ea732bf79a6c22f097998c21a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5189507,
            "upload_time": "2024-04-16T00:15:04",
            "upload_time_iso_8601": "2024-04-16T00:15:04.927952Z",
            "url": "https://files.pythonhosted.org/packages/73/3a/56d29c6580afe4d1d039e6839a749ba5647ff122c44358b5e56f216e1661/esbuild_py-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "255010ccacdfcf6924e68965acb0a0d01be51077075216ad9ce2a042ac4ac51c",
                "md5": "15e8ca5f222d01bfb7ee8873041b49fa",
                "sha256": "33ee99a324cc7f90fb7406b4e883637310bf90eea1c37bed3f12c214e85c6b12"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15e8ca5f222d01bfb7ee8873041b49fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5184977,
            "upload_time": "2024-04-16T00:15:06",
            "upload_time_iso_8601": "2024-04-16T00:15:06.799414Z",
            "url": "https://files.pythonhosted.org/packages/25/50/10ccacdfcf6924e68965acb0a0d01be51077075216ad9ce2a042ac4ac51c/esbuild_py-0.1.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0773ebd1ac0182b653f81b93a67fcce86b5981f9bba5e24eb38023d344e0bb21",
                "md5": "1d52613b297b94c67cb7b0b4763ab66b",
                "sha256": "aaee88b2111bb3d38d0caa0c66a116d80edea9aa05782110911abecc658c1390"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1d52613b297b94c67cb7b0b4763ab66b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 7157948,
            "upload_time": "2024-04-16T00:15:08",
            "upload_time_iso_8601": "2024-04-16T00:15:08.972001Z",
            "url": "https://files.pythonhosted.org/packages/07/73/ebd1ac0182b653f81b93a67fcce86b5981f9bba5e24eb38023d344e0bb21/esbuild_py-0.1.5-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1828b0106265b84a2e0fb18e8bfa857cc641fba37584bfdd9c8212bafbbe5638",
                "md5": "85b55284b6325bc07fa50247592110a0",
                "sha256": "8c173f9edb70bb0c96311d607c45b92c36d13c8090bbc2bb97d6880b018d035e"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85b55284b6325bc07fa50247592110a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 7254332,
            "upload_time": "2024-04-16T00:15:10",
            "upload_time_iso_8601": "2024-04-16T00:15:10.720620Z",
            "url": "https://files.pythonhosted.org/packages/18/28/b0106265b84a2e0fb18e8bfa857cc641fba37584bfdd9c8212bafbbe5638/esbuild_py-0.1.5-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08bf846469547867d0c07c2c8151717d3548d47270c6f056d2902d748c84be87",
                "md5": "e2e15866af2756479c3602e53a5297bb",
                "sha256": "772133ee5f07f4a092cdcecceac5b7b80e5436fccb89cc173ed27b3c235def26"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "e2e15866af2756479c3602e53a5297bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5055779,
            "upload_time": "2024-04-16T00:15:12",
            "upload_time_iso_8601": "2024-04-16T00:15:12.330108Z",
            "url": "https://files.pythonhosted.org/packages/08/bf/846469547867d0c07c2c8151717d3548d47270c6f056d2902d748c84be87/esbuild_py-0.1.5-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c08f78cb4f77142e0c846411cb6e2ecb88ffb55167aedf398268fc7b9f666c13",
                "md5": "b251a587147a3668a074b3786caa005a",
                "sha256": "709601794f03d219b4bf32af0b835ae6e191ddf5866d189f4f9bf1b840a25d21"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b251a587147a3668a074b3786caa005a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5055779,
            "upload_time": "2024-04-16T00:15:14",
            "upload_time_iso_8601": "2024-04-16T00:15:14.211641Z",
            "url": "https://files.pythonhosted.org/packages/c0/8f/78cb4f77142e0c846411cb6e2ecb88ffb55167aedf398268fc7b9f666c13/esbuild_py-0.1.5-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03ccb46d08829487762ab753e54cb5ba12e6f4d8ac66aff52d5b265523c79a3e",
                "md5": "d0a6b51bfe9a24e083cd118012705660",
                "sha256": "f215b853c10785273eaeb24ce84bcedeba58fb678268ecc1ab8a9c9f6c772056"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d0a6b51bfe9a24e083cd118012705660",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 2991583,
            "upload_time": "2024-04-16T00:15:15",
            "upload_time_iso_8601": "2024-04-16T00:15:15.830552Z",
            "url": "https://files.pythonhosted.org/packages/03/cc/b46d08829487762ab753e54cb5ba12e6f4d8ac66aff52d5b265523c79a3e/esbuild_py-0.1.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7aaf30ef60fe3dddcda67efcb9be2898e0fbd26f1d2ccd729038d6ffba5c33d0",
                "md5": "0f8436759197f034bd9bb62f835d2dd7",
                "sha256": "a3ff4a28c7cdf99b229a56f8ab1d653b12bfe0645726cbcde6af9036249540d6"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0f8436759197f034bd9bb62f835d2dd7",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 2793760,
            "upload_time": "2024-04-16T00:15:17",
            "upload_time_iso_8601": "2024-04-16T00:15:17.847465Z",
            "url": "https://files.pythonhosted.org/packages/7a/af/30ef60fe3dddcda67efcb9be2898e0fbd26f1d2ccd729038d6ffba5c33d0/esbuild_py-0.1.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "994f15e7605352750b2b152300093b87d2e62988cdb6804e5719918e6004865c",
                "md5": "3dda8b9c424e7cec45458c1127dbe3fb",
                "sha256": "130eae08f2a48f6357d7fd4c7539efbd91a8de17f26cb2f09343670bc6a3dc46"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3dda8b9c424e7cec45458c1127dbe3fb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 5189522,
            "upload_time": "2024-04-16T00:15:19",
            "upload_time_iso_8601": "2024-04-16T00:15:19.911985Z",
            "url": "https://files.pythonhosted.org/packages/99/4f/15e7605352750b2b152300093b87d2e62988cdb6804e5719918e6004865c/esbuild_py-0.1.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5aac23e6cb79c01dc814af3bcb4fd27a8626e207dc6fe682f6359797e87fee8",
                "md5": "e80e47af2ed70755e07ede030d2599ad",
                "sha256": "0c26f90002f5857f10ac8e074833511bfd143f9329c4140fb53ca47ed65cdc3e"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e80e47af2ed70755e07ede030d2599ad",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 5184993,
            "upload_time": "2024-04-16T00:15:21",
            "upload_time_iso_8601": "2024-04-16T00:15:21.477159Z",
            "url": "https://files.pythonhosted.org/packages/f5/aa/c23e6cb79c01dc814af3bcb4fd27a8626e207dc6fe682f6359797e87fee8/esbuild_py-0.1.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01991c91ee4914fb245e5ac0647174188389fb89c76dbc19c1b766f29af35c41",
                "md5": "49be297ccb507319484bf1724e18c72e",
                "sha256": "f6e691fcaf61a2dfd0118fb2cab8887c3c71fe1b60e45d8d6eb804dd9018c683"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "49be297ccb507319484bf1724e18c72e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 5055950,
            "upload_time": "2024-04-16T00:15:22",
            "upload_time_iso_8601": "2024-04-16T00:15:22.937635Z",
            "url": "https://files.pythonhosted.org/packages/01/99/1c91ee4914fb245e5ac0647174188389fb89c76dbc19c1b766f29af35c41/esbuild_py-0.1.5-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c94c3c2fa38a1a1e965b643059c9843b090de28fcf7c162b152ad5b0f67b1296",
                "md5": "a222e5000743b591bb684e4907887635",
                "sha256": "cf1052ca14b7c11887724faceb96a4ad429bdcda786593ac28f8c7cf64e25a0d"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a222e5000743b591bb684e4907887635",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 2991582,
            "upload_time": "2024-04-16T00:15:24",
            "upload_time_iso_8601": "2024-04-16T00:15:24.424568Z",
            "url": "https://files.pythonhosted.org/packages/c9/4c/3c2fa38a1a1e965b643059c9843b090de28fcf7c162b152ad5b0f67b1296/esbuild_py-0.1.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a1bd6f66ac90e86dc240c296bcbebf0954f49c665e7823cf8173ad3420c049d",
                "md5": "6aaa08dd44995cd1734a8ad59ffe6e32",
                "sha256": "d1a287b43a508666e1e40934cb58579653da4dd62d4c7d042a716266f634c710"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6aaa08dd44995cd1734a8ad59ffe6e32",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 5189511,
            "upload_time": "2024-04-16T00:15:26",
            "upload_time_iso_8601": "2024-04-16T00:15:26.807558Z",
            "url": "https://files.pythonhosted.org/packages/1a/1b/d6f66ac90e86dc240c296bcbebf0954f49c665e7823cf8173ad3420c049d/esbuild_py-0.1.5-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61afa58380acde23d078a65774b9f99eb9d5c4d80720ce20f5f81cd94161b57f",
                "md5": "f35709f8982d79157c4ecdc31a6c8313",
                "sha256": "863b398b577d9de007ad3dd9d80254ef7ebfb56a5e8f6a10b1b84c3e55d72403"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f35709f8982d79157c4ecdc31a6c8313",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 5184984,
            "upload_time": "2024-04-16T00:15:28",
            "upload_time_iso_8601": "2024-04-16T00:15:28.899468Z",
            "url": "https://files.pythonhosted.org/packages/61/af/a58380acde23d078a65774b9f99eb9d5c4d80720ce20f5f81cd94161b57f/esbuild_py-0.1.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f53cc7e43224924d0a1dcc0b135dee80d0532b7be1dd45e4a93d94e1afbcd0c3",
                "md5": "50800e64f27a0f49d78dcd02a40ce3a5",
                "sha256": "15c6787928d063cb5ac89d21277de00283b082cd55d1b835e14c73162df42956"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "50800e64f27a0f49d78dcd02a40ce3a5",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 5055824,
            "upload_time": "2024-04-16T00:15:31",
            "upload_time_iso_8601": "2024-04-16T00:15:31.150196Z",
            "url": "https://files.pythonhosted.org/packages/f5/3c/c7e43224924d0a1dcc0b135dee80d0532b7be1dd45e4a93d94e1afbcd0c3/esbuild_py-0.1.5-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6eb0d7f8db649c4fa4c02913ccaec1b2655ce138cbdb5a9b93dde4633fc67c6",
                "md5": "08cb908b517202b42ca0a44c5802c274",
                "sha256": "ae5525a24f9f4128551e361a5222ad8063fe1b195a2ffe340f6c39e4eba408fa"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08cb908b517202b42ca0a44c5802c274",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 2991582,
            "upload_time": "2024-04-16T00:15:33",
            "upload_time_iso_8601": "2024-04-16T00:15:33.448209Z",
            "url": "https://files.pythonhosted.org/packages/c6/eb/0d7f8db649c4fa4c02913ccaec1b2655ce138cbdb5a9b93dde4633fc67c6/esbuild_py-0.1.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c050d63d19c7dd6f5cf0d89d6c82440f5d2f7aec79d0d860ec1a7bec1c4bbfae",
                "md5": "1aaba5b646f21fcfa8b63099db22398d",
                "sha256": "587749d089edc9ea3e1c118bb02d0e4d5e41118b26954dbd1954a56ac1901e1f"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1aaba5b646f21fcfa8b63099db22398d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 2793754,
            "upload_time": "2024-04-16T00:15:35",
            "upload_time_iso_8601": "2024-04-16T00:15:35.019470Z",
            "url": "https://files.pythonhosted.org/packages/c0/50/d63d19c7dd6f5cf0d89d6c82440f5d2f7aec79d0d860ec1a7bec1c4bbfae/esbuild_py-0.1.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a34e90df192e34c0c14666e71c2cfc4a2e1007bdcb4dce6d49288dd057c4ac53",
                "md5": "a8379fe2f130989d5155e7b76fd830cf",
                "sha256": "0ef6aaf7816e3ea3a3775f36d15ed5599b09b2779cfaf4461651e5cf84541f18"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a8379fe2f130989d5155e7b76fd830cf",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 5189513,
            "upload_time": "2024-04-16T00:15:37",
            "upload_time_iso_8601": "2024-04-16T00:15:37.047472Z",
            "url": "https://files.pythonhosted.org/packages/a3/4e/90df192e34c0c14666e71c2cfc4a2e1007bdcb4dce6d49288dd057c4ac53/esbuild_py-0.1.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e03bf53d56c8f87c0615340b8504fed1c811382a6e8cc477ad844b4d7dd8722",
                "md5": "9d6e90957bbab8a68e84f66a432495d5",
                "sha256": "978752c9040cde3cefa4ee198f4f9583b8119b40d6db5c9715be58f541ad6f13"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d6e90957bbab8a68e84f66a432495d5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 5184989,
            "upload_time": "2024-04-16T00:15:38",
            "upload_time_iso_8601": "2024-04-16T00:15:38.986913Z",
            "url": "https://files.pythonhosted.org/packages/3e/03/bf53d56c8f87c0615340b8504fed1c811382a6e8cc477ad844b4d7dd8722/esbuild_py-0.1.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e15e6943ecf3ba26bb3fd23536866f9e562be45aa32a65703b79515958394849",
                "md5": "735269c60fb75e0c06b99c67db3a1a0d",
                "sha256": "8cb28ba08f360adcfad73fb8ce1b261dd8df4455a1eac2d54d08d76010af4cbd"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "735269c60fb75e0c06b99c67db3a1a0d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 5055706,
            "upload_time": "2024-04-16T00:15:40",
            "upload_time_iso_8601": "2024-04-16T00:15:40.612058Z",
            "url": "https://files.pythonhosted.org/packages/e1/5e/6943ecf3ba26bb3fd23536866f9e562be45aa32a65703b79515958394849/esbuild_py-0.1.5-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e98d9a41e3fe88785cf1bac4413c63d6bf3fcdf8dd2e2741229d07160644f798",
                "md5": "3da1e487c40332324490713e6648e00b",
                "sha256": "7aeb4484830a167bc6fd8c14a12177a24e547eb9c4f8302089e65a79b0072c25"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3da1e487c40332324490713e6648e00b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 2991580,
            "upload_time": "2024-04-16T00:15:42",
            "upload_time_iso_8601": "2024-04-16T00:15:42.799174Z",
            "url": "https://files.pythonhosted.org/packages/e9/8d/9a41e3fe88785cf1bac4413c63d6bf3fcdf8dd2e2741229d07160644f798/esbuild_py-0.1.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32860526f96a7564aac60d7c144015c7deaec21c75de1ed07dd47f3a8831eac2",
                "md5": "e5c9bd9b135cedbcc412f2ec81b447a0",
                "sha256": "f8f6115ae3c9d890cb10fb50c243b939c387e716fd15ce5c09956b638a78d7ee"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e5c9bd9b135cedbcc412f2ec81b447a0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 2793755,
            "upload_time": "2024-04-16T00:15:45",
            "upload_time_iso_8601": "2024-04-16T00:15:45.119898Z",
            "url": "https://files.pythonhosted.org/packages/32/86/0526f96a7564aac60d7c144015c7deaec21c75de1ed07dd47f3a8831eac2/esbuild_py-0.1.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7bb0eccee5cb8732948e49504238126a9d0bcaf456a23f91f3da74474a5e212",
                "md5": "f13c7ca93e8d48ece1bd4681a55aaade",
                "sha256": "008cefb06d8a43f967f0dda85b4b237f27bc40e2d15d95533249a75d1bc60293"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f13c7ca93e8d48ece1bd4681a55aaade",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 5189512,
            "upload_time": "2024-04-16T00:15:47",
            "upload_time_iso_8601": "2024-04-16T00:15:47.032532Z",
            "url": "https://files.pythonhosted.org/packages/f7/bb/0eccee5cb8732948e49504238126a9d0bcaf456a23f91f3da74474a5e212/esbuild_py-0.1.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bfb90469accc53ee747853017015aed4d0ca7e362b7b54ca826393720f6d2e7",
                "md5": "8ea556ccf6f1de62d2e97fa5e560d822",
                "sha256": "2f259a0857b11da22d1f499ecc72088be3f2c072e2c79320da6eeb12ae9fe6e8"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ea556ccf6f1de62d2e97fa5e560d822",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 5184988,
            "upload_time": "2024-04-16T00:15:48",
            "upload_time_iso_8601": "2024-04-16T00:15:48.723283Z",
            "url": "https://files.pythonhosted.org/packages/5b/fb/90469accc53ee747853017015aed4d0ca7e362b7b54ca826393720f6d2e7/esbuild_py-0.1.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "500ed679137bba6967e23db7320a3be0a2a172cd4b0de2d1b8d81b364fa7fece",
                "md5": "5d76dca9e899a266e47260204cd92ebf",
                "sha256": "1aaccc8d175e9d777c34c1008c331c01e880eb3747c39c60294759f4baf8ceb9"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5d76dca9e899a266e47260204cd92ebf",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 5056074,
            "upload_time": "2024-04-16T00:15:51",
            "upload_time_iso_8601": "2024-04-16T00:15:51.062503Z",
            "url": "https://files.pythonhosted.org/packages/50/0e/d679137bba6967e23db7320a3be0a2a172cd4b0de2d1b8d81b364fa7fece/esbuild_py-0.1.5-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4ef25ec4fa5c99aff207d60516c21952706d81501769ce98d62476f271962cf",
                "md5": "c69c0cc21fb7c06acaad0b53c734ce90",
                "sha256": "f49fd72faf05264d9d6e587adc7b50ce387def02808ad31593818eeb86fd928f"
            },
            "downloads": -1,
            "filename": "esbuild_py-0.1.5.tar.gz",
            "has_sig": false,
            "md5_digest": "c69c0cc21fb7c06acaad0b53c734ce90",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 6128,
            "upload_time": "2024-04-16T00:15:52",
            "upload_time_iso_8601": "2024-04-16T00:15:52.931503Z",
            "url": "https://files.pythonhosted.org/packages/c4/ef/25ec4fa5c99aff207d60516c21952706d81501769ce98d62476f271962cf/esbuild_py-0.1.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-16 00:15:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "keller-mark",
    "github_project": "esbuild-py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "esbuild-py"
}
        
Elapsed time: 0.27847s