VBMicrolensing


NameVBMicrolensing JSON
Version 4.2.1 PyPI version JSON
download
home_pageNone
SummaryVBMicrolensing is a tool for efficient computation in gravitational microlensing events using the advanced contour integration method, supporting single, binary and multiple lenses.
upload_time2025-02-09 09:32:48
maintainerNone
docs_urlNone
authorNone
requires_python<4,>=3.7
licenseLGPL-3.0
keywords microlensing magnification and astrometry
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # VBMicrolensing
`VBMicrolensing` is a tool for efficient computation in gravitational 
microlensing events using the advanced contour integration method, supporting single, binary and multiple lenses. 

In particular, VBMicrolensing is designed for the following calculations:
- **Magnification** by single, binary and multiple lenses
- **Centroid** of the images generated by single and binary lenses
- **Critical curves and caustics** of binary and multiple lenses
- Complete **light curves** including several higher order effects: limb darkening of the source, binary source, parallax, xallarap, circular and elliptic orbital motion.

`VBMicrolensing` is written as a C++ library and wrapped as a Python package, the user can call the code from either C++ or Python. This new code encompasses the well-known [VBBinaryLensing](https://github.com/valboz/VBBinaryLensing) code, which is at the basis of several platforms for microlensing modeling. `VBBinaryLensing` will still be available as a legacy software, but will no longer be maintained. 

`VBMicrolensing` has been developed by **Valerio Bozza**, University of Salerno, with a substantial contribution by **Vito Saggese**, University of Naples. We also acknowledge a long list of collaborators who contributed to testing and development of particular aspects over the years: Etienne Bachelet, Fran Bartolic, Sebastiano Calchi Novati, Giovanni Covone, Giuseppe D'Ago, Tyler Heintz, Ava Hoag, Markus Hundertmark, Elahe Khalouei, Radek Poleski, Haibin Ren, Paolo Rota, Sedighe Sajadian, Rachel Street, Jiyuan Zhang, Keto Zhang, Weicheng Zhang, Wei Zhu.

## Attribution
Any use of this code for scientific publications should be acknowledged by a citation to the works relevant to your study:
- [V. Bozza, MNRAS 408 (2010) 2188](https://ui.adsabs.harvard.edu/abs/2010MNRAS.408.2188B/abstract): general algorithm for binary lensing;
- [V. Bozza et al., MNRAS 479 (2018) 5157](https://ui.adsabs.harvard.edu/abs/2018MNRAS.479.5157B/abstract): BinaryMag2 function, Extended-Source-Point-Lens methods; 
- [V. Bozza, E. Khalouei and E. Bachelet, MNRAS 505 (2021) 126](https://ui.adsabs.harvard.edu/abs/2021MNRAS.505..126B/abstract): astrometry, generalized limb darkening, Keplerian orbital motion; 
- [V. Bozza, v. Saggese, G. Covone, P. Rota & J. Zhang, arXiv:2410.13660 (2024)](https://arxiv.org/abs/2410.13660): multiple lenses.

If specifically relevant to your work, please also cite
[J. Skowron and A. Gould, arXiv:1203.1034](https://arxiv.org/abs/1203.1034).
 
## Installation

### Python

The easiest way to install `VBMicrolensing` is through `pip install VBMicrolensing`

In alternative, in order to use the latest build, clone this GitHub repository on your computer, enter your local copy of the repository and run
```
pip install .
```

Currently, `VBMicrolensing` works on Linux, Windows, MacOS and python >= 2.7. The package requires a C++ compiler supporting C++17.

### C++

If you just want to use the C++ library, clone this repository, all cpp files and the 
`VBMicrolensing.h` are located in in `VBMicrolensing/lib` and should be added to your project. 

The package also contains the following files:
- `VBMicrolensing/data/ESPL.tbl`  - Pre-calculated table for Extended-source-point-lens
- `VBMicrolensing/data/OB151212coords.txt` - Sample file with event coordinates
- `VBMicrolensing/data/satellite1.txt` - Sample table for satellite position (Spitzer)
- `VBMicrolensing/data/satellite2.txt` - Sample table for satellite position (Kepler)
  
## Documentation
Full [documentation for the use of VBmicrolensing in python](/docs/python/readme.md) and [documentation for the use of VBmicrolensing in C++](/docs/C++/readme.md) are available.

Furthermore, the vast majority of functions are documented with Python docstrings which can be accessed as, for example, `?VBBL.BinaryMag2()` in
a Jupyter notebook.

We also provide some [examples](examples) showing the capabilities of the package. In particular, we reproduce some known triple-lense microlensing events.

## License
VBMicrolensing is freely available to the community under the 
GNU Lesser General Public License Version 3 included in this repository.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "VBMicrolensing",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.7",
    "maintainer_email": null,
    "keywords": "Microlensing magnification and astrometry",
    "author": null,
    "author_email": "Valerio Bozza <valboz@sa.infn.it>, Vito Saggese <vitosaggese.vs@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/27/fa/c9e5ba426b4a3dba69e4c3708d2bbdd0e49cbf0a504f0cdef8251d48fb31/vbmicrolensing-4.2.1.tar.gz",
    "platform": null,
    "description": "# VBMicrolensing\n`VBMicrolensing` is a tool for efficient computation in gravitational \nmicrolensing events using the advanced contour integration method, supporting single, binary and multiple lenses. \n\nIn particular, VBMicrolensing is designed for the following calculations:\n- **Magnification** by single, binary and multiple lenses\n- **Centroid** of the images generated by single and binary lenses\n- **Critical curves and caustics** of binary and multiple lenses\n- Complete **light curves** including several higher order effects: limb darkening of the source, binary source, parallax, xallarap, circular and elliptic orbital motion.\n\n`VBMicrolensing` is written as a C++ library and wrapped as a Python package, the user can call the code from either C++ or Python. This new code encompasses the well-known [VBBinaryLensing](https://github.com/valboz/VBBinaryLensing) code, which is at the basis of several platforms for microlensing modeling. `VBBinaryLensing` will still be available as a legacy software, but will no longer be maintained. \n\n`VBMicrolensing` has been developed by **Valerio Bozza**, University of Salerno, with a substantial contribution by **Vito Saggese**, University of Naples. We also acknowledge a long list of collaborators who contributed to testing and development of particular aspects over the years: Etienne Bachelet, Fran Bartolic, Sebastiano Calchi Novati, Giovanni Covone, Giuseppe D'Ago, Tyler Heintz, Ava Hoag, Markus Hundertmark, Elahe Khalouei, Radek Poleski, Haibin Ren, Paolo Rota, Sedighe Sajadian, Rachel Street, Jiyuan Zhang, Keto Zhang, Weicheng Zhang, Wei Zhu.\n\n## Attribution\nAny use of this code for scientific publications should be acknowledged by a citation to the works relevant to your study:\n- [V. Bozza, MNRAS 408 (2010) 2188](https://ui.adsabs.harvard.edu/abs/2010MNRAS.408.2188B/abstract): general algorithm for binary lensing;\n- [V. Bozza et al., MNRAS 479 (2018) 5157](https://ui.adsabs.harvard.edu/abs/2018MNRAS.479.5157B/abstract): BinaryMag2 function, Extended-Source-Point-Lens methods; \n- [V. Bozza, E. Khalouei and E. Bachelet, MNRAS 505 (2021) 126](https://ui.adsabs.harvard.edu/abs/2021MNRAS.505..126B/abstract): astrometry, generalized limb darkening, Keplerian orbital motion; \n- [V. Bozza, v. Saggese, G. Covone, P. Rota & J. Zhang, arXiv:2410.13660 (2024)](https://arxiv.org/abs/2410.13660): multiple lenses.\n\nIf specifically relevant to your work, please also cite\n[J. Skowron and A. Gould, arXiv:1203.1034](https://arxiv.org/abs/1203.1034).\n \n## Installation\n\n### Python\n\nThe easiest way to install `VBMicrolensing` is through `pip install VBMicrolensing`\n\nIn alternative, in order to use the latest build, clone this GitHub repository on your computer, enter your local copy of the repository and run\n```\npip install .\n```\n\nCurrently, `VBMicrolensing` works on Linux, Windows, MacOS and python >= 2.7. The package requires a C++ compiler supporting C++17.\n\n### C++\n\nIf you just want to use the C++ library, clone this repository, all cpp files and the \n`VBMicrolensing.h` are located in in `VBMicrolensing/lib` and should be added to your project. \n\nThe package also contains the following files:\n- `VBMicrolensing/data/ESPL.tbl`  - Pre-calculated table for Extended-source-point-lens\n- `VBMicrolensing/data/OB151212coords.txt` - Sample file with event coordinates\n- `VBMicrolensing/data/satellite1.txt` - Sample table for satellite position (Spitzer)\n- `VBMicrolensing/data/satellite2.txt` - Sample table for satellite position (Kepler)\n  \n## Documentation\nFull [documentation for the use of VBmicrolensing in python](/docs/python/readme.md) and [documentation for the use of VBmicrolensing in C++](/docs/C++/readme.md) are available.\n\nFurthermore, the vast majority of functions are documented with Python docstrings which can be accessed as, for example, `?VBBL.BinaryMag2()` in\na Jupyter notebook.\n\nWe also provide some [examples](examples) showing the capabilities of the package. In particular, we reproduce some known triple-lense microlensing events.\n\n## License\nVBMicrolensing is freely available to the community under the \nGNU Lesser General Public License Version 3 included in this repository.\n",
    "bugtrack_url": null,
    "license": "LGPL-3.0",
    "summary": "VBMicrolensing is a tool for efficient computation in gravitational microlensing events using the advanced contour integration method, supporting single, binary and multiple lenses.",
    "version": "4.2.1",
    "project_urls": {
        "Homepage": "https://github.com/valboz/VBMicrolensing"
    },
    "split_keywords": [
        "microlensing",
        "magnification",
        "and",
        "astrometry"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7fbecb55bc1ba7ab3b0714928a49334f391812751a44f09fbc9f8bbe14051313",
                "md5": "9765715d639934596b7feabdfff4a5d6",
                "sha256": "7c8ce1b255c0f8cf76bd9137833a7e70c85ee71caad7930c010c7ce1292aa6f0"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9765715d639934596b7feabdfff4a5d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 743208,
            "upload_time": "2025-02-09T09:35:21",
            "upload_time_iso_8601": "2025-02-09T09:35:21.042998Z",
            "url": "https://files.pythonhosted.org/packages/7f/be/cb55bc1ba7ab3b0714928a49334f391812751a44f09fbc9f8bbe14051313/vbmicrolensing-4.2.1-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "075163e28d4b76ee956fc493f1476668706a0f85a43016d6a69058f6cf918ad4",
                "md5": "ca982208d751b42ed0c5e18fd29f6896",
                "sha256": "42d8b0040e133595803b82457c2b9e2b70220537fbc5112cca62f6cf44dbdf69"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ca982208d751b42ed0c5e18fd29f6896",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 719058,
            "upload_time": "2025-02-09T09:35:23",
            "upload_time_iso_8601": "2025-02-09T09:35:23.163065Z",
            "url": "https://files.pythonhosted.org/packages/07/51/63e28d4b76ee956fc493f1476668706a0f85a43016d6a69058f6cf918ad4/vbmicrolensing-4.2.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1172b1d14acf3e4d5528aeffad114b70cce22c5384d5bd6589fe164457ae2e8f",
                "md5": "fe46308802bb2f7d8a4bbc2e4505a52a",
                "sha256": "6864572fcdb72a47e1927321ede4a3fb9847e9092816afab092fd105490063cd"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fe46308802bb2f7d8a4bbc2e4505a52a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 786824,
            "upload_time": "2025-02-09T09:35:24",
            "upload_time_iso_8601": "2025-02-09T09:35:24.740404Z",
            "url": "https://files.pythonhosted.org/packages/11/72/b1d14acf3e4d5528aeffad114b70cce22c5384d5bd6589fe164457ae2e8f/vbmicrolensing-4.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a4e77cc1980b4d39a20ba4f166d091b841e8d4ab6fb32fd068a8921fed81dfd",
                "md5": "c359a3662a75f7510102956743cbe78a",
                "sha256": "6dfd388f01879b4ea31d328f7c9d8f662b791a023f8c8e2f5c13b739934ac75c"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c359a3662a75f7510102956743cbe78a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 785509,
            "upload_time": "2025-02-09T09:35:26",
            "upload_time_iso_8601": "2025-02-09T09:35:26.818705Z",
            "url": "https://files.pythonhosted.org/packages/4a/4e/77cc1980b4d39a20ba4f166d091b841e8d4ab6fb32fd068a8921fed81dfd/vbmicrolensing-4.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d339008cd094974792e19466b9d162598b2e6619e7cd860c5cd6ab053855b517",
                "md5": "2fa5c0a1ca73a3c7122ee51ab786a593",
                "sha256": "033ac37f5619ba1b1194c6d5549b14b45517d468ebec3947348cdc81526194d1"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2fa5c0a1ca73a3c7122ee51ab786a593",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 1872164,
            "upload_time": "2025-02-09T09:35:29",
            "upload_time_iso_8601": "2025-02-09T09:35:29.606979Z",
            "url": "https://files.pythonhosted.org/packages/d3/39/008cd094974792e19466b9d162598b2e6619e7cd860c5cd6ab053855b517/vbmicrolensing-4.2.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b93f99736157df198546c27cf5a051f7ee191d236bc1568b6b7d026995c4840e",
                "md5": "367dc780b403a67e030b0d897e891d5e",
                "sha256": "83379dc3914e648e6d6cb5b52ecb18fc6888eb109b563f6009f299ef020ea8f5"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "367dc780b403a67e030b0d897e891d5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 1760330,
            "upload_time": "2025-02-09T09:35:32",
            "upload_time_iso_8601": "2025-02-09T09:35:32.697030Z",
            "url": "https://files.pythonhosted.org/packages/b9/3f/99736157df198546c27cf5a051f7ee191d236bc1568b6b7d026995c4840e/vbmicrolensing-4.2.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e35697ed51e860b74d04e4da6a1e638ca85564969943a19455072fee399e6fc",
                "md5": "a50d52a6d4173510ef3d26994684f71d",
                "sha256": "bb9042b31d34357036f30a9192bce0ffdb5842ddccfd22f55eff0796f4a42de5"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "a50d52a6d4173510ef3d26994684f71d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 691112,
            "upload_time": "2025-02-09T09:35:34",
            "upload_time_iso_8601": "2025-02-09T09:35:34.980926Z",
            "url": "https://files.pythonhosted.org/packages/0e/35/697ed51e860b74d04e4da6a1e638ca85564969943a19455072fee399e6fc/vbmicrolensing-4.2.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f2d2d9b379e5b1320e5d217ac4fb6ff20ab066c4374eabf08200f07a63c84d9d",
                "md5": "f78d5b17b1084c39b681b1cdb9576ed5",
                "sha256": "5b72b74d6c2924e341b5229624eecd4c78eb760c7ecb4069c1e8631e489b415f"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f78d5b17b1084c39b681b1cdb9576ed5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 723585,
            "upload_time": "2025-02-09T09:35:37",
            "upload_time_iso_8601": "2025-02-09T09:35:37.162057Z",
            "url": "https://files.pythonhosted.org/packages/f2/d2/d9b379e5b1320e5d217ac4fb6ff20ab066c4374eabf08200f07a63c84d9d/vbmicrolensing-4.2.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9900dadb484798b0957d4dae7f4b86a1888da09db1b6f8d4901530530c96fd42",
                "md5": "13cc4cb99d9e6375c9a709a86439c66f",
                "sha256": "f2a26eef35592c97f2966e332cb6184f9c524469c58e3f8adbf4ce9509f2429f"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13cc4cb99d9e6375c9a709a86439c66f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 744542,
            "upload_time": "2025-02-09T09:35:39",
            "upload_time_iso_8601": "2025-02-09T09:35:39.354104Z",
            "url": "https://files.pythonhosted.org/packages/99/00/dadb484798b0957d4dae7f4b86a1888da09db1b6f8d4901530530c96fd42/vbmicrolensing-4.2.1-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d057d755e57b9b00025661b372d31719f5eda8126f5438a0d7a5a31473badcea",
                "md5": "fcd80a447df36fee016e0772b2b8da80",
                "sha256": "848f79313685426db8c1f0ff9f57af984811b88fe5861f7e25d9006d2ef594ba"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fcd80a447df36fee016e0772b2b8da80",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 720386,
            "upload_time": "2025-02-09T09:35:41",
            "upload_time_iso_8601": "2025-02-09T09:35:41.504163Z",
            "url": "https://files.pythonhosted.org/packages/d0/57/d755e57b9b00025661b372d31719f5eda8126f5438a0d7a5a31473badcea/vbmicrolensing-4.2.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7548712e7c9fc17552a4eb3298a6acde037fcfb195e8f0db0acdcd14e91403fc",
                "md5": "089d44f86c22fdc88ea79fec8c69d29f",
                "sha256": "c2c4cc52e1c1bf305cdc5df5fae51648d1dcb5181825dc071d43957fdc9f8b94"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "089d44f86c22fdc88ea79fec8c69d29f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 787829,
            "upload_time": "2025-02-09T09:35:43",
            "upload_time_iso_8601": "2025-02-09T09:35:43.620615Z",
            "url": "https://files.pythonhosted.org/packages/75/48/712e7c9fc17552a4eb3298a6acde037fcfb195e8f0db0acdcd14e91403fc/vbmicrolensing-4.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e6bf453c86519bec70bd28cdd1d0d8046048b599e81489555655b6b2f068746",
                "md5": "434933283cbd3ab675b063457a86e50d",
                "sha256": "9823af5f448b72a162797ca8d73ca5215760887f8f58d8a1aa30c5c275fca11c"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "434933283cbd3ab675b063457a86e50d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 786794,
            "upload_time": "2025-02-09T09:35:45",
            "upload_time_iso_8601": "2025-02-09T09:35:45.077645Z",
            "url": "https://files.pythonhosted.org/packages/0e/6b/f453c86519bec70bd28cdd1d0d8046048b599e81489555655b6b2f068746/vbmicrolensing-4.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d038b4d3acc6295228c76a7ab00710873152d8d4aade7d94b7b50aaec962cdd",
                "md5": "2248f9f6de2f2f49bf483542b215bb40",
                "sha256": "06ec6a63eb970d21a6c53d1e30cf0b6c5e0ea797b348ffc3a5005801e2ec255a"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2248f9f6de2f2f49bf483542b215bb40",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 1871527,
            "upload_time": "2025-02-09T09:35:47",
            "upload_time_iso_8601": "2025-02-09T09:35:47.835356Z",
            "url": "https://files.pythonhosted.org/packages/3d/03/8b4d3acc6295228c76a7ab00710873152d8d4aade7d94b7b50aaec962cdd/vbmicrolensing-4.2.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8782a52735c3475e539f63dba0599a4b12631520cc642e53a71fb4028a92e88e",
                "md5": "b50738d0248ccc01894063aa9dac39b5",
                "sha256": "fb38bd5f5cd2e4ebb30ed232996651561d2c39046f7aa1f50edad565a2332457"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b50738d0248ccc01894063aa9dac39b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 1762334,
            "upload_time": "2025-02-09T09:35:49",
            "upload_time_iso_8601": "2025-02-09T09:35:49.878115Z",
            "url": "https://files.pythonhosted.org/packages/87/82/a52735c3475e539f63dba0599a4b12631520cc642e53a71fb4028a92e88e/vbmicrolensing-4.2.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3bf1f8c753fb3c6266f8ee21181ffa4db7a084b007453d19eb5ace84a050c67c",
                "md5": "cdfcbd4203e321c7b589800ccf8975c5",
                "sha256": "12063b51ab1d0c9fe1d9b7630e0225e64ff5feb5906a300ed45eb098034df19f"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "cdfcbd4203e321c7b589800ccf8975c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 691937,
            "upload_time": "2025-02-09T09:35:51",
            "upload_time_iso_8601": "2025-02-09T09:35:51.500929Z",
            "url": "https://files.pythonhosted.org/packages/3b/f1/f8c753fb3c6266f8ee21181ffa4db7a084b007453d19eb5ace84a050c67c/vbmicrolensing-4.2.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce1055a6f2fae35018ef65c6cb4ee33e023a9f8ef168c6fabbf510bd156f28e3",
                "md5": "ece33943c5b483642747ec60dca2392d",
                "sha256": "03a2228dbc6da5b301c1dec693e365b9d5f29df6034297872d72c15f133fd801"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ece33943c5b483642747ec60dca2392d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 724566,
            "upload_time": "2025-02-09T09:32:46",
            "upload_time_iso_8601": "2025-02-09T09:32:46.268426Z",
            "url": "https://files.pythonhosted.org/packages/ce/10/55a6f2fae35018ef65c6cb4ee33e023a9f8ef168c6fabbf510bd156f28e3/vbmicrolensing-4.2.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0789cee249a1a30299c0d71345b47027d1ab310b8f7dd0c9c2d1e7c47a6d504c",
                "md5": "6416022e6e1355d3807e65e53c139a70",
                "sha256": "f2f3be47789476ba29e534afa603f2a851aa1a41054eb6aaba74979c60c0a9b4"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp312-cp312-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6416022e6e1355d3807e65e53c139a70",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 745137,
            "upload_time": "2025-02-09T09:45:07",
            "upload_time_iso_8601": "2025-02-09T09:45:07.435733Z",
            "url": "https://files.pythonhosted.org/packages/07/89/cee249a1a30299c0d71345b47027d1ab310b8f7dd0c9c2d1e7c47a6d504c/vbmicrolensing-4.2.1-cp312-cp312-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "639149fc880f321029e629ab064ec0a6cdd3521e625fe2e905688ecd0864e0c2",
                "md5": "349dc3c6cdfaa3ba43a381fc9b089fe2",
                "sha256": "6c86e66b76f21fbd3c06471287f91551b6afaabd7090e61478b6fd8730302820"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "349dc3c6cdfaa3ba43a381fc9b089fe2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 720143,
            "upload_time": "2025-02-09T09:45:11",
            "upload_time_iso_8601": "2025-02-09T09:45:11.173230Z",
            "url": "https://files.pythonhosted.org/packages/63/91/49fc880f321029e629ab064ec0a6cdd3521e625fe2e905688ecd0864e0c2/vbmicrolensing-4.2.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48b19864276c0976b7a1ac0560dedbf065257d02c9ffea4ee8778ba559900570",
                "md5": "a2bf8a2bd2628d18d0dd9001c61d4b26",
                "sha256": "b227bbfd01d95f8aa5857c88c2df7770385e046eb035543d563300e19a54441d"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a2bf8a2bd2628d18d0dd9001c61d4b26",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 787715,
            "upload_time": "2025-02-09T09:45:14",
            "upload_time_iso_8601": "2025-02-09T09:45:14.296018Z",
            "url": "https://files.pythonhosted.org/packages/48/b1/9864276c0976b7a1ac0560dedbf065257d02c9ffea4ee8778ba559900570/vbmicrolensing-4.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2372021875514f3e5e7fc76fdd9bdcfa426a60c34b16b6b0bb375a154b2ce375",
                "md5": "0f86383df5200579a9869559547ce057",
                "sha256": "57e5bc7f022977b2dcfad416f9c786a39633ef0ef8f206982db9ddd4436fecb4"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f86383df5200579a9869559547ce057",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 786342,
            "upload_time": "2025-02-09T09:45:16",
            "upload_time_iso_8601": "2025-02-09T09:45:16.413633Z",
            "url": "https://files.pythonhosted.org/packages/23/72/021875514f3e5e7fc76fdd9bdcfa426a60c34b16b6b0bb375a154b2ce375/vbmicrolensing-4.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc8602556915a9bc53826cb2f79ad747ce6fbba4fff129ed39852bcd7957d03a",
                "md5": "9918ea8ba8f8742731eedbc598d26e99",
                "sha256": "9f28a4ee1a39a8d146e25a5900e585bd5091bc11bc329305064c37a8ff8b3ee6"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9918ea8ba8f8742731eedbc598d26e99",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 1873421,
            "upload_time": "2025-02-09T09:45:18",
            "upload_time_iso_8601": "2025-02-09T09:45:18.862815Z",
            "url": "https://files.pythonhosted.org/packages/cc/86/02556915a9bc53826cb2f79ad747ce6fbba4fff129ed39852bcd7957d03a/vbmicrolensing-4.2.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a15e43f3f7d340ccaef526dedf7953627d10eb47bdf80d75efb103452946c5d9",
                "md5": "7216c3bc3c0f3fa9ec507c3d7166e2d9",
                "sha256": "dc05787d1553bed42167a7161626f67ef0b24f6f38559b25db3e9216a2cbfd8f"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7216c3bc3c0f3fa9ec507c3d7166e2d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 1762988,
            "upload_time": "2025-02-09T09:45:21",
            "upload_time_iso_8601": "2025-02-09T09:45:21.565031Z",
            "url": "https://files.pythonhosted.org/packages/a1/5e/43f3f7d340ccaef526dedf7953627d10eb47bdf80d75efb103452946c5d9/vbmicrolensing-4.2.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42c8c609a83fb21dfcd428bc54e96cb9b726cfa95b16b3a96317d16ad12b7204",
                "md5": "d69c0854a18001e3e44011ced538777d",
                "sha256": "c3530efa4e2853e478a0ce42e62dd107a52cdeb06b96203e735b86a34133656a"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d69c0854a18001e3e44011ced538777d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 692027,
            "upload_time": "2025-02-09T09:45:23",
            "upload_time_iso_8601": "2025-02-09T09:45:23.914064Z",
            "url": "https://files.pythonhosted.org/packages/42/c8/c609a83fb21dfcd428bc54e96cb9b726cfa95b16b3a96317d16ad12b7204/vbmicrolensing-4.2.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a72502913da2b7aa97163a7e683472da433167ef88d56d29d2ec9bb92dd93302",
                "md5": "cc1ed6a87d7f166c0eedd99c2e111ec2",
                "sha256": "0880f7958c8c8aad4e9d9e341d10063b5a9b488fc3e3097f366c0274a8beb38a"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cc1ed6a87d7f166c0eedd99c2e111ec2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 725471,
            "upload_time": "2025-02-09T09:45:26",
            "upload_time_iso_8601": "2025-02-09T09:45:26.938704Z",
            "url": "https://files.pythonhosted.org/packages/a7/25/02913da2b7aa97163a7e683472da433167ef88d56d29d2ec9bb92dd93302/vbmicrolensing-4.2.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e31962f2b9ed17f5d5be853a8d395b964788b339ba8d2c2db687a6d5c41fc759",
                "md5": "224a2a61406d4fdc19a0eaa33169d3c8",
                "sha256": "86e04d0da0acca1bdba28c5f159c4441c45f7032a696e337a27fb6b2a2200b18"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp313-cp313-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "224a2a61406d4fdc19a0eaa33169d3c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 745209,
            "upload_time": "2025-02-09T09:45:28",
            "upload_time_iso_8601": "2025-02-09T09:45:28.855410Z",
            "url": "https://files.pythonhosted.org/packages/e3/19/62f2b9ed17f5d5be853a8d395b964788b339ba8d2c2db687a6d5c41fc759/vbmicrolensing-4.2.1-cp313-cp313-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afdd57d96a29de6603a1415ff0db6684e4037d907e586b46783699f60157a393",
                "md5": "1069fc63d86ce997782381254e1ee68d",
                "sha256": "975ca1ddc33004a219fc0ab308d798cc6c7ef5e4ec027aeb44bc247dcf5dfb6e"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1069fc63d86ce997782381254e1ee68d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 720181,
            "upload_time": "2025-02-09T09:45:31",
            "upload_time_iso_8601": "2025-02-09T09:45:31.051742Z",
            "url": "https://files.pythonhosted.org/packages/af/dd/57d96a29de6603a1415ff0db6684e4037d907e586b46783699f60157a393/vbmicrolensing-4.2.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "241df7de341a5974e3f93c2b584c1b9e9024677215e85faac99a547d52dcd273",
                "md5": "5e26c51c6784b5dc200a461cab5ce477",
                "sha256": "3fdf632a2e8dc058100578072d3a9e47d5a6618ee6cf7b2357cd42f5f59ec65f"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5e26c51c6784b5dc200a461cab5ce477",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 787693,
            "upload_time": "2025-02-09T09:45:32",
            "upload_time_iso_8601": "2025-02-09T09:45:32.662336Z",
            "url": "https://files.pythonhosted.org/packages/24/1d/f7de341a5974e3f93c2b584c1b9e9024677215e85faac99a547d52dcd273/vbmicrolensing-4.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78053bb2ee823df063d47625273e9590aabb017e649d35daafdfd2fa40fa1eb3",
                "md5": "b324242b4ca38f5f9379e26375006417",
                "sha256": "2cc8f9abac582610a13e117bb22c7885bdb7e35e8193bb207415a12c95f54765"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b324242b4ca38f5f9379e26375006417",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 786674,
            "upload_time": "2025-02-09T09:45:34",
            "upload_time_iso_8601": "2025-02-09T09:45:34.805611Z",
            "url": "https://files.pythonhosted.org/packages/78/05/3bb2ee823df063d47625273e9590aabb017e649d35daafdfd2fa40fa1eb3/vbmicrolensing-4.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28a6fb2ae796dae8a8dafb0cfcad21256ff3f49aa5cb363b85ac2096482c14c9",
                "md5": "b024813bf046a3b6a6f0258a752cfe32",
                "sha256": "d778130d706c13736a7a819f9798827021d55a3fa2482edb4ed1503e76bf6dae"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b024813bf046a3b6a6f0258a752cfe32",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 1873350,
            "upload_time": "2025-02-09T09:45:37",
            "upload_time_iso_8601": "2025-02-09T09:45:37.492258Z",
            "url": "https://files.pythonhosted.org/packages/28/a6/fb2ae796dae8a8dafb0cfcad21256ff3f49aa5cb363b85ac2096482c14c9/vbmicrolensing-4.2.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0eb787489538102784e8898ca0d9fe2cb15c29df0eff5b78b949b90ac5bdb79c",
                "md5": "b6f0ed04d4c213e53066c1b266dd9c6b",
                "sha256": "3c3b5e70f38ab97cd69bbb3b7ef63d86b7148e78eb27bff0292b96bac39dae76"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6f0ed04d4c213e53066c1b266dd9c6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 1763093,
            "upload_time": "2025-02-09T09:45:40",
            "upload_time_iso_8601": "2025-02-09T09:45:40.066877Z",
            "url": "https://files.pythonhosted.org/packages/0e/b7/87489538102784e8898ca0d9fe2cb15c29df0eff5b78b949b90ac5bdb79c/vbmicrolensing-4.2.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd0cb2778e45ddbcc2b0eb5a660e541d1aa0338f4aa34b5a3b106fc5c57c0af3",
                "md5": "adc01e31b173219c24169e2f1b5297f4",
                "sha256": "4c255be180a562b1cfc8fb6c0042891ce2c396ceaa9878d5c3eaa6d9905e3a4b"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "adc01e31b173219c24169e2f1b5297f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 692017,
            "upload_time": "2025-02-09T09:45:42",
            "upload_time_iso_8601": "2025-02-09T09:45:42.358549Z",
            "url": "https://files.pythonhosted.org/packages/cd/0c/b2778e45ddbcc2b0eb5a660e541d1aa0338f4aa34b5a3b106fc5c57c0af3/vbmicrolensing-4.2.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f714d446b99ba77a034d5f5bbd6a33a49c49bd803b563b70b65e1e3cb352e53d",
                "md5": "f91e53de09bb003b0680897fd6aca445",
                "sha256": "3d289d3d67cb46bb6523cb1585f123453bb12a8ed981f8426a7f869f1fdd976b"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f91e53de09bb003b0680897fd6aca445",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 725552,
            "upload_time": "2025-02-09T09:45:44",
            "upload_time_iso_8601": "2025-02-09T09:45:44.657802Z",
            "url": "https://files.pythonhosted.org/packages/f7/14/d446b99ba77a034d5f5bbd6a33a49c49bd803b563b70b65e1e3cb352e53d/vbmicrolensing-4.2.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "56e3c481d020b83114abe3c50fb5578458eeef738c7315ddeb0db6f93d278a2a",
                "md5": "a424d27c0d1c1ca243e770e06214ac7b",
                "sha256": "d94cf8476045e70ea518d4eb3c2b1144f70e688efb28d48542eec16dd8e53e20"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp37-cp37m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a424d27c0d1c1ca243e770e06214ac7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 740444,
            "upload_time": "2025-02-09T09:45:46",
            "upload_time_iso_8601": "2025-02-09T09:45:46.102353Z",
            "url": "https://files.pythonhosted.org/packages/56/e3/c481d020b83114abe3c50fb5578458eeef738c7315ddeb0db6f93d278a2a/vbmicrolensing-4.2.1-cp37-cp37m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c7b367582cedd96315f12b62d7294e16dfbcd6a37b6bc0eccaa767f2bd99b1b",
                "md5": "16f61272a3ec5daa1d2096c41a13ee0f",
                "sha256": "1b64d74fb66d460b33516832ca1f2553e084409f06becc19339f86bcd01cbeb0"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "16f61272a3ec5daa1d2096c41a13ee0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 786662,
            "upload_time": "2025-02-09T09:45:47",
            "upload_time_iso_8601": "2025-02-09T09:45:47.636902Z",
            "url": "https://files.pythonhosted.org/packages/4c/7b/367582cedd96315f12b62d7294e16dfbcd6a37b6bc0eccaa767f2bd99b1b/vbmicrolensing-4.2.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd052b0c3fa958b27811d2d59dc040ea755906c12634a1ae92820111ed409a2c",
                "md5": "54e819c06b89c0c3b947dc50dbddcd32",
                "sha256": "79e973d455df09b6a0b48c4cbf7d485a88f818ffebbd800fb9904c542218c455"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54e819c06b89c0c3b947dc50dbddcd32",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 785118,
            "upload_time": "2025-02-09T09:45:49",
            "upload_time_iso_8601": "2025-02-09T09:45:49.180523Z",
            "url": "https://files.pythonhosted.org/packages/bd/05/2b0c3fa958b27811d2d59dc040ea755906c12634a1ae92820111ed409a2c/vbmicrolensing-4.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "652f2806c692e1cf8e08a4d5743555b77a8a7d09ff3311c9ac0f028fa2da2e4e",
                "md5": "d2df9a8bef0566d10485296fb5272cc4",
                "sha256": "316ab432c16b605c72dae176f039a6a5380f8841c8a16bddf1decedcafb14a6b"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d2df9a8bef0566d10485296fb5272cc4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 1878381,
            "upload_time": "2025-02-09T09:45:51",
            "upload_time_iso_8601": "2025-02-09T09:45:51.993366Z",
            "url": "https://files.pythonhosted.org/packages/65/2f/2806c692e1cf8e08a4d5743555b77a8a7d09ff3311c9ac0f028fa2da2e4e/vbmicrolensing-4.2.1-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "068a1e1b939626453b3dbb6d7b72c26376e9805622a298031dcb45571b58c6fb",
                "md5": "f5162666ed60fae32fe1fd7b28582249",
                "sha256": "c900a2f290497562a09e7c96e08f87a561ecc606c9f26dbb9f4c844bb87f4606"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5162666ed60fae32fe1fd7b28582249",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 1765074,
            "upload_time": "2025-02-09T09:45:54",
            "upload_time_iso_8601": "2025-02-09T09:45:54.751808Z",
            "url": "https://files.pythonhosted.org/packages/06/8a/1e1b939626453b3dbb6d7b72c26376e9805622a298031dcb45571b58c6fb/vbmicrolensing-4.2.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19b6e8ea08028c84a1797834dbf05430bfe81ec62ab2628f7858cffff1b24f5f",
                "md5": "b509f572b0319fa796fe08ab36222db9",
                "sha256": "d287f39328f42f0989f3247acfb6378c8c91c76eee042d85554cc54a4f464602"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "b509f572b0319fa796fe08ab36222db9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 692542,
            "upload_time": "2025-02-09T09:45:56",
            "upload_time_iso_8601": "2025-02-09T09:45:56.531512Z",
            "url": "https://files.pythonhosted.org/packages/19/b6/e8ea08028c84a1797834dbf05430bfe81ec62ab2628f7858cffff1b24f5f/vbmicrolensing-4.2.1-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f18532856eafb403c7b358e4ed4bd7162cd6d59cb94a1b0adb6a564ad9dbbb5a",
                "md5": "9e25f236164b4f22c781a3dfbb9e62be",
                "sha256": "e1e8eccc5d659c4ad32e15f2687b24dc00104e75bfea29d7eb1e97d547079aaa"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9e25f236164b4f22c781a3dfbb9e62be",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 723029,
            "upload_time": "2025-02-09T09:45:58",
            "upload_time_iso_8601": "2025-02-09T09:45:58.056333Z",
            "url": "https://files.pythonhosted.org/packages/f1/85/32856eafb403c7b358e4ed4bd7162cd6d59cb94a1b0adb6a564ad9dbbb5a/vbmicrolensing-4.2.1-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9db0cf6a0c37c5c0a14ac782ca6f7f8f1db852bce09f452b89d9866e64b07ab",
                "md5": "5291fcd9fc57ab15a48ce455b597d106",
                "sha256": "585c0f2d0cd3f26c1f74fb0308d7bd4953cad7447cff89705a777227ea9d61d2"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5291fcd9fc57ab15a48ce455b597d106",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 742999,
            "upload_time": "2025-02-09T09:45:59",
            "upload_time_iso_8601": "2025-02-09T09:45:59.593259Z",
            "url": "https://files.pythonhosted.org/packages/d9/db/0cf6a0c37c5c0a14ac782ca6f7f8f1db852bce09f452b89d9866e64b07ab/vbmicrolensing-4.2.1-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1052c7948c5bef9711fa929df3b896f764d968724de2ace4ae2fc6f2574e908a",
                "md5": "e3055ded9eb2bc70e916e2a2bdb45399",
                "sha256": "96841a4592074b82d2b61d963af9b757b9cf7ec632f198e3a4e1e4dc50779b5d"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e3055ded9eb2bc70e916e2a2bdb45399",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 718905,
            "upload_time": "2025-02-09T09:46:01",
            "upload_time_iso_8601": "2025-02-09T09:46:01.183968Z",
            "url": "https://files.pythonhosted.org/packages/10/52/c7948c5bef9711fa929df3b896f764d968724de2ace4ae2fc6f2574e908a/vbmicrolensing-4.2.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc58cced52c64674bcea67771bc8dc8c9c58d08abd820767c62ec497647ae809",
                "md5": "b0ac5cbe324ee15b5d8b3ce9baa61e5c",
                "sha256": "5a2da49b60d9751c13a6981380666704afc3a9dfe4ad1b6a97ab50f920881ad8"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b0ac5cbe324ee15b5d8b3ce9baa61e5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 787258,
            "upload_time": "2025-02-09T09:46:02",
            "upload_time_iso_8601": "2025-02-09T09:46:02.839013Z",
            "url": "https://files.pythonhosted.org/packages/dc/58/cced52c64674bcea67771bc8dc8c9c58d08abd820767c62ec497647ae809/vbmicrolensing-4.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40d67b4e2e07d0494e205b53eb616176f99fc141399394cdda6fbb20d54763b5",
                "md5": "d2f51b11fa08916c7eff447b276fc46f",
                "sha256": "ac43e468d97d4be18cb32cdd2fd7fa4e4a04c1e6c022e3033eab044177dc9545"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d2f51b11fa08916c7eff447b276fc46f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 785204,
            "upload_time": "2025-02-09T09:46:04",
            "upload_time_iso_8601": "2025-02-09T09:46:04.416457Z",
            "url": "https://files.pythonhosted.org/packages/40/d6/7b4e2e07d0494e205b53eb616176f99fc141399394cdda6fbb20d54763b5/vbmicrolensing-4.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fdb3972891e915eda1e66939bf28fae6f006496f4dc8b376fc71da607609bf8",
                "md5": "c4c8aadf1c58ca4c70bb148cedaa57f2",
                "sha256": "65a59e1c3a8f39c180c7f878f4da3554a5c2ef9dc1e4557ec336de48382aac4d"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c4c8aadf1c58ca4c70bb148cedaa57f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 1871851,
            "upload_time": "2025-02-09T09:46:07",
            "upload_time_iso_8601": "2025-02-09T09:46:07.002482Z",
            "url": "https://files.pythonhosted.org/packages/9f/db/3972891e915eda1e66939bf28fae6f006496f4dc8b376fc71da607609bf8/vbmicrolensing-4.2.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8b64aeee724a98fa1d93a0901134daa983d0a7ea4a9eaa55fd6381cfd7022ca",
                "md5": "ee162820976e0f6db04ac36f07f46770",
                "sha256": "b01d92801d3fa67b55a8c6d14109b1e73016983733ef5e12dcf9ecb6a5be1099"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee162820976e0f6db04ac36f07f46770",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 1759761,
            "upload_time": "2025-02-09T09:46:09",
            "upload_time_iso_8601": "2025-02-09T09:46:09.116361Z",
            "url": "https://files.pythonhosted.org/packages/f8/b6/4aeee724a98fa1d93a0901134daa983d0a7ea4a9eaa55fd6381cfd7022ca/vbmicrolensing-4.2.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12ee712a2ab59833674c753f37d295abd26fdf478c11f0e1fb26e0456e7b4b6c",
                "md5": "c6180db7779f1a67de66425bbd198621",
                "sha256": "44debd02ac31338cdb4bb122a2e7957a39b4c01d1c0c10e1ea455309a05a820b"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "c6180db7779f1a67de66425bbd198621",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 690922,
            "upload_time": "2025-02-09T09:46:10",
            "upload_time_iso_8601": "2025-02-09T09:46:10.638203Z",
            "url": "https://files.pythonhosted.org/packages/12/ee/712a2ab59833674c753f37d295abd26fdf478c11f0e1fb26e0456e7b4b6c/vbmicrolensing-4.2.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65803519df568dfaef63ded33788d0278c7ad89548354a8f7b2aa43c123d5741",
                "md5": "044d53daae386d33ab0d2357a614bb12",
                "sha256": "a76818b50b553138c8efbb793a611ec4499a6b6a9e165e9b67e7f58bc8ed300d"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "044d53daae386d33ab0d2357a614bb12",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 723829,
            "upload_time": "2025-02-09T09:46:12",
            "upload_time_iso_8601": "2025-02-09T09:46:12.158039Z",
            "url": "https://files.pythonhosted.org/packages/65/80/3519df568dfaef63ded33788d0278c7ad89548354a8f7b2aa43c123d5741/vbmicrolensing-4.2.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "561f399058b7dc8162ca68c835c6f8b3e067698df23f0b964b94414fafa706b8",
                "md5": "16ff11b4dd7b3ea974bf471dc5810a38",
                "sha256": "ef37a946926a331d617570141d02bc79589e0cbea5f9acf79b9ecfd61eb4cce1"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "16ff11b4dd7b3ea974bf471dc5810a38",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 743213,
            "upload_time": "2025-02-09T09:46:13",
            "upload_time_iso_8601": "2025-02-09T09:46:13.718306Z",
            "url": "https://files.pythonhosted.org/packages/56/1f/399058b7dc8162ca68c835c6f8b3e067698df23f0b964b94414fafa706b8/vbmicrolensing-4.2.1-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7216f9aaa7c59e6709d57a6b38d7f2cff4dbc8cd6fda240b2a78299b7bf0badf",
                "md5": "afde87d3cf93ad5b918e0f297dc6a7dd",
                "sha256": "7abd66f4cbff70f4f8c760bac805a341034d691264ba9223c5b16281f03fbef9"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "afde87d3cf93ad5b918e0f297dc6a7dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 719143,
            "upload_time": "2025-02-09T09:46:15",
            "upload_time_iso_8601": "2025-02-09T09:46:15.712810Z",
            "url": "https://files.pythonhosted.org/packages/72/16/f9aaa7c59e6709d57a6b38d7f2cff4dbc8cd6fda240b2a78299b7bf0badf/vbmicrolensing-4.2.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19bf354d3959b184d205420d95a51a6aeb23085973f994ab499316f5376d78cf",
                "md5": "9b77aa050e9db2dce17f491850041623",
                "sha256": "f8e0b403f6b4e55401eb4e2fa9ae32b57c380c1de820fc117526aa991aadfba5"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9b77aa050e9db2dce17f491850041623",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 787010,
            "upload_time": "2025-02-09T09:46:17",
            "upload_time_iso_8601": "2025-02-09T09:46:17.806288Z",
            "url": "https://files.pythonhosted.org/packages/19/bf/354d3959b184d205420d95a51a6aeb23085973f994ab499316f5376d78cf/vbmicrolensing-4.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "047d3884bd67722008b1517a50fe8ea93eac53ed28bdbad3697b3d58a6606373",
                "md5": "19f8b74dc302ed9f58a3a31570e8fdfe",
                "sha256": "6ea78335cac276249b0e7dcb4cb9ecf320ec0305534492d2d93fb90f72bdc0fa"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19f8b74dc302ed9f58a3a31570e8fdfe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 785569,
            "upload_time": "2025-02-09T09:46:19",
            "upload_time_iso_8601": "2025-02-09T09:46:19.702534Z",
            "url": "https://files.pythonhosted.org/packages/04/7d/3884bd67722008b1517a50fe8ea93eac53ed28bdbad3697b3d58a6606373/vbmicrolensing-4.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a196755280ceb99e70608144e8af4623fdcd16a71ee8a483c715cf0725d8fd2",
                "md5": "b66e1d05c3c20fdcb35e0a420c543d17",
                "sha256": "d9f62d065d93a343aec7074caeaa11c4c4085e70293ba44ca6bdca58c4669dd5"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b66e1d05c3c20fdcb35e0a420c543d17",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 1872015,
            "upload_time": "2025-02-09T09:46:21",
            "upload_time_iso_8601": "2025-02-09T09:46:21.632507Z",
            "url": "https://files.pythonhosted.org/packages/1a/19/6755280ceb99e70608144e8af4623fdcd16a71ee8a483c715cf0725d8fd2/vbmicrolensing-4.2.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72552f989ae52b96f5c735cb288d7d7f0ecc6d431b7461a7a970435b0752f506",
                "md5": "29c3ddde79799e7cbabd88c4ac09d661",
                "sha256": "42782f6cc493d1e0891328edc1d273686cdfc6d07ea687907eff02c83ca750c6"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "29c3ddde79799e7cbabd88c4ac09d661",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 1760317,
            "upload_time": "2025-02-09T09:46:23",
            "upload_time_iso_8601": "2025-02-09T09:46:23.634456Z",
            "url": "https://files.pythonhosted.org/packages/72/55/2f989ae52b96f5c735cb288d7d7f0ecc6d431b7461a7a970435b0752f506/vbmicrolensing-4.2.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e2ba4eaa32683e396df650c99f53f37c92eeb06891099bcc568627b9d58d22b",
                "md5": "48e77f6e4c27702b948c80ff60518bb9",
                "sha256": "2d025d385c231c1e2ee1555fd1c1688f64e7a35d213898b6ad405ffd98b4b81c"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "48e77f6e4c27702b948c80ff60518bb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 691156,
            "upload_time": "2025-02-09T09:46:25",
            "upload_time_iso_8601": "2025-02-09T09:46:25.191272Z",
            "url": "https://files.pythonhosted.org/packages/1e/2b/a4eaa32683e396df650c99f53f37c92eeb06891099bcc568627b9d58d22b/vbmicrolensing-4.2.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26cf617a1757a8341fbdd57939c11c2bb6a7d9ad4059132db16d4769d10c5c0a",
                "md5": "7b6463ee14f71117a5ed14f26fe75621",
                "sha256": "f85ba1fb1e26c5c748d1a77675767af827dc4645d260a4512d5ab4193b9e80a2"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7b6463ee14f71117a5ed14f26fe75621",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 718144,
            "upload_time": "2025-02-09T09:46:26",
            "upload_time_iso_8601": "2025-02-09T09:46:26.756973Z",
            "url": "https://files.pythonhosted.org/packages/26/cf/617a1757a8341fbdd57939c11c2bb6a7d9ad4059132db16d4769d10c5c0a/vbmicrolensing-4.2.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27fac9e5ba426b4a3dba69e4c3708d2bbdd0e49cbf0a504f0cdef8251d48fb31",
                "md5": "3140ea6ef88a6e877a032de6840e1ed1",
                "sha256": "dc8a0420b6001a9db0f8434f18078a2621b341045f07f14b472ec60a0a24005e"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-4.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "3140ea6ef88a6e877a032de6840e1ed1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.7",
            "size": 1882896,
            "upload_time": "2025-02-09T09:32:48",
            "upload_time_iso_8601": "2025-02-09T09:32:48.970315Z",
            "url": "https://files.pythonhosted.org/packages/27/fa/c9e5ba426b4a3dba69e4c3708d2bbdd0e49cbf0a504f0cdef8251d48fb31/vbmicrolensing-4.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-09 09:32:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "valboz",
    "github_project": "VBMicrolensing",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "vbmicrolensing"
}
        
Elapsed time: 0.62345s