VBMicrolensing


NameVBMicrolensing JSON
Version 5.3.2 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-08-20 06:27:52
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 and **Jiyuan Zhang**, Tisnghua University. We also acknowledge a long list of collaborators who contributed to testing and development of particular aspects over the years: Natasha Abrams, Etienne Bachelet, Fran Bartolic, Dex Bhadra, Sebastiano Calchi Novati, Giovanni Covone, Giuseppe D'Ago, Tyler Heintz, Ava Hoag, Markus Hundertmark, Elahe Khalouei, Jessica Lu, Matthew Penny, Radek Poleski, Haibin Ren, Paolo Rota, Sedighe Sajadian, Rachel Street, 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, E. Bachelet, F. Bartolic, T. Heintz, A. Hoag, M. Hundertmark, 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, A&A 694 (2025) 219](https://ui.adsabs.harvard.edu/abs/2025A%26A...694A.219B/abstract): 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 >= 3.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/SunEphemeris.txt`  - Sun ephemeris for parallax calculation
- `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/43/33/f94c8f8d6e303c556c8870d6ab899b615b6bf6b573e96ef9ed1a094b69ab/vbmicrolensing-5.3.2.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 and **Jiyuan Zhang**, Tisnghua University. We also acknowledge a long list of collaborators who contributed to testing and development of particular aspects over the years: Natasha Abrams, Etienne Bachelet, Fran Bartolic, Dex Bhadra, Sebastiano Calchi Novati, Giovanni Covone, Giuseppe D'Ago, Tyler Heintz, Ava Hoag, Markus Hundertmark, Elahe Khalouei, Jessica Lu, Matthew Penny, Radek Poleski, Haibin Ren, Paolo Rota, Sedighe Sajadian, Rachel Street, 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, E. Bachelet, F. Bartolic, T. Heintz, A. Hoag, M. Hundertmark, 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, A&A 694 (2025) 219](https://ui.adsabs.harvard.edu/abs/2025A%26A...694A.219B/abstract): 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 >= 3.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/SunEphemeris.txt`  - Sun ephemeris for parallax calculation\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": "5.3.2",
    "project_urls": {
        "Homepage": "https://github.com/valboz/VBMicrolensing"
    },
    "split_keywords": [
        "microlensing",
        "magnification",
        "and",
        "astrometry"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d65e00174420186dc8729b471d9df0460c436fbae7209be67ce7847c22477adc",
                "md5": "ec04a35d9dfbfb0cfa256fb6a40db86a",
                "sha256": "90ae33a358b7d28bac03ac674504318c31dd97639f540b2c458a9efd21cc2da6"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec04a35d9dfbfb0cfa256fb6a40db86a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 1390046,
            "upload_time": "2025-08-20T06:26:03",
            "upload_time_iso_8601": "2025-08-20T06:26:03.288084Z",
            "url": "https://files.pythonhosted.org/packages/d6/5e/00174420186dc8729b471d9df0460c436fbae7209be67ce7847c22477adc/vbmicrolensing-5.3.2-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c94321e485cdbdbd0a4625461c143e5b1295139d38fa7681d0732d04105aab8e",
                "md5": "cff5f06cdac8ba81111363c1e58b4cc5",
                "sha256": "df3058afa98d661fd0ef1d3691b918874aa9a4aedfffb8bed364a7a94e47ea87"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cff5f06cdac8ba81111363c1e58b4cc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 1363050,
            "upload_time": "2025-08-20T06:26:05",
            "upload_time_iso_8601": "2025-08-20T06:26:05.457938Z",
            "url": "https://files.pythonhosted.org/packages/c9/43/21e485cdbdbd0a4625461c143e5b1295139d38fa7681d0732d04105aab8e/vbmicrolensing-5.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12c2d7baa533b3776c894e3a8c326480917cdaf8115bd1f577929f4ef53b4941",
                "md5": "349f000634bc0c103a8ab321caea4a03",
                "sha256": "b751f3dcbd63d989cd0623c6d3e3b118e20ed7fcd7e8c064a8ecf3ebbbab8cff"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "349f000634bc0c103a8ab321caea4a03",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 1576155,
            "upload_time": "2025-08-20T06:26:07",
            "upload_time_iso_8601": "2025-08-20T06:26:07.184424Z",
            "url": "https://files.pythonhosted.org/packages/12/c2/d7baa533b3776c894e3a8c326480917cdaf8115bd1f577929f4ef53b4941/vbmicrolensing-5.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a253aa45cb5b318ec1d01c8422fa2bd340da4621461cb646f9feae4e16796d30",
                "md5": "36ca0c77905d64c517c7651834005e4e",
                "sha256": "7e3785c82472bcbaad7bf3d56a0ad6a0876a498a3ddea82ed99cfd4480038261"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36ca0c77905d64c517c7651834005e4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 1560782,
            "upload_time": "2025-08-20T06:26:09",
            "upload_time_iso_8601": "2025-08-20T06:26:09.209668Z",
            "url": "https://files.pythonhosted.org/packages/a2/53/aa45cb5b318ec1d01c8422fa2bd340da4621461cb646f9feae4e16796d30/vbmicrolensing-5.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "766550d38f488b0b4a3ba4092b5c5480afe153397e90f4c3c08101617cc07135",
                "md5": "eca310cc41c37cc7c623e1825d29595e",
                "sha256": "772ae95d91cf2bb6c6f0877ca6525a822c371334fc16a89d0eeb16b8a89ad831"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "eca310cc41c37cc7c623e1825d29595e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 2521732,
            "upload_time": "2025-08-20T06:26:11",
            "upload_time_iso_8601": "2025-08-20T06:26:11.377227Z",
            "url": "https://files.pythonhosted.org/packages/76/65/50d38f488b0b4a3ba4092b5c5480afe153397e90f4c3c08101617cc07135/vbmicrolensing-5.3.2-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a006662583d46bb31edcfac5dce160047831d2a0e0c8f2f724ab4f53936bce2",
                "md5": "3f8efdc9835ecc05863d73959c17a97d",
                "sha256": "de6ad1e72835af70110aa9225c4d031e79c09a54b4b8ccce22fa8d073251299f"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3f8efdc9835ecc05863d73959c17a97d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 2405603,
            "upload_time": "2025-08-20T06:26:13",
            "upload_time_iso_8601": "2025-08-20T06:26:13.735403Z",
            "url": "https://files.pythonhosted.org/packages/9a/00/6662583d46bb31edcfac5dce160047831d2a0e0c8f2f724ab4f53936bce2/vbmicrolensing-5.3.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f02adf4cbfe47f46767226075354eb59c5f78099ae1ca3b81bd20f69575fa2b",
                "md5": "346028e42be57c3d8d6bb19e73ede554",
                "sha256": "52fc4376513f510d5079567f23a630fc7be137a44ca0001f87ff6b13846d9660"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "346028e42be57c3d8d6bb19e73ede554",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 1328016,
            "upload_time": "2025-08-20T06:26:15",
            "upload_time_iso_8601": "2025-08-20T06:26:15.664049Z",
            "url": "https://files.pythonhosted.org/packages/9f/02/adf4cbfe47f46767226075354eb59c5f78099ae1ca3b81bd20f69575fa2b/vbmicrolensing-5.3.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d03948fb09919adc6e81856e098581f63ffc8c7f56864a6ffc9e8e26e6f7fcce",
                "md5": "987af4b415e418a689f1cab3b6ae6287",
                "sha256": "bda3ce21d71aba3492d2b2513bf28cb3681a24ca6cb829e1a38eb5f791edb554"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "987af4b415e418a689f1cab3b6ae6287",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<4,>=3.7",
            "size": 1368232,
            "upload_time": "2025-08-20T06:26:17",
            "upload_time_iso_8601": "2025-08-20T06:26:17.477781Z",
            "url": "https://files.pythonhosted.org/packages/d0/39/48fb09919adc6e81856e098581f63ffc8c7f56864a6ffc9e8e26e6f7fcce/vbmicrolensing-5.3.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6793e276a4664c45a935eaa4eff74a97013bda5a20c798fdc5478cc514257c88",
                "md5": "32f624ce7c0688d0b3d37b058f748852",
                "sha256": "b9467629d89932f1ec9f9cfe6617f47d080c7f85338a27929aa866689f290342"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32f624ce7c0688d0b3d37b058f748852",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 1391282,
            "upload_time": "2025-08-20T06:26:19",
            "upload_time_iso_8601": "2025-08-20T06:26:19.288863Z",
            "url": "https://files.pythonhosted.org/packages/67/93/e276a4664c45a935eaa4eff74a97013bda5a20c798fdc5478cc514257c88/vbmicrolensing-5.3.2-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de1ac04c9a76b6867958e5705c51ea25a5bff307ca6e86cda4485622295aa7a6",
                "md5": "f62797fe62a50afe3718837709293f7f",
                "sha256": "7b5407361b56a8946a03ce648d150bd1a2c34138beeecd425bb3e9848806e58b"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f62797fe62a50afe3718837709293f7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 1364276,
            "upload_time": "2025-08-20T06:26:20",
            "upload_time_iso_8601": "2025-08-20T06:26:20.927931Z",
            "url": "https://files.pythonhosted.org/packages/de/1a/c04c9a76b6867958e5705c51ea25a5bff307ca6e86cda4485622295aa7a6/vbmicrolensing-5.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1bd0882abe5dcc8e4b80f284b65be2c269960dc572b280b0f6d1321fc1c24222",
                "md5": "c615d115f20940ba1536befca11bb740",
                "sha256": "5a31ce752bc264f49e238765ae8c3563d71b543ee7e3c18990e157d5dac27f22"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c615d115f20940ba1536befca11bb740",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 1576718,
            "upload_time": "2025-08-20T06:26:22",
            "upload_time_iso_8601": "2025-08-20T06:26:22.852212Z",
            "url": "https://files.pythonhosted.org/packages/1b/d0/882abe5dcc8e4b80f284b65be2c269960dc572b280b0f6d1321fc1c24222/vbmicrolensing-5.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8097d187cc5ce98f49fc3ed35bd314cabf849be1ef94c428fb206b1f6c417310",
                "md5": "d3f5a72f4ed8c5d067dfb646a4dbbc6e",
                "sha256": "64a92bbbd0c7bc2cfbd75c66817207f12488e63d7e39d3a69d7910ab2d0db3d1"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3f5a72f4ed8c5d067dfb646a4dbbc6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 1561596,
            "upload_time": "2025-08-20T06:26:24",
            "upload_time_iso_8601": "2025-08-20T06:26:24.953369Z",
            "url": "https://files.pythonhosted.org/packages/80/97/d187cc5ce98f49fc3ed35bd314cabf849be1ef94c428fb206b1f6c417310/vbmicrolensing-5.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f1ece8557f02dbfa8663cff1b2ed923ba8b580342b88c47cab832df38fce375",
                "md5": "779860ba8b243950ba2732aea7df68c4",
                "sha256": "e50ba272912903b37b384e493d745b73938e4c36ba0da766aed60a9d6335008d"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "779860ba8b243950ba2732aea7df68c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 2521586,
            "upload_time": "2025-08-20T06:26:27",
            "upload_time_iso_8601": "2025-08-20T06:26:27.016671Z",
            "url": "https://files.pythonhosted.org/packages/2f/1e/ce8557f02dbfa8663cff1b2ed923ba8b580342b88c47cab832df38fce375/vbmicrolensing-5.3.2-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b28e0fd9e42f0e7262bd66cb0a1da544968232e334029a1852dbe5b2b57bcea",
                "md5": "4d0f6acf0c1824ff13a9f217eb6fc9c4",
                "sha256": "53ac53370c117a34ba131393747c359d76db5587d08b0cfd75a9749b6641825f"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d0f6acf0c1824ff13a9f217eb6fc9c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 2408061,
            "upload_time": "2025-08-20T06:26:29",
            "upload_time_iso_8601": "2025-08-20T06:26:29.166343Z",
            "url": "https://files.pythonhosted.org/packages/7b/28/e0fd9e42f0e7262bd66cb0a1da544968232e334029a1852dbe5b2b57bcea/vbmicrolensing-5.3.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aaca5e59802cf067787ab210d155661d9e3326d74cc14b50c45172c99749b083",
                "md5": "4fd1a104b502b6c04192ea7a032ef136",
                "sha256": "ba35f8aa427726522bbdb2ac667be14177cee21ca53f1a9a8ce37e20bee649eb"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "4fd1a104b502b6c04192ea7a032ef136",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 1328691,
            "upload_time": "2025-08-20T06:26:30",
            "upload_time_iso_8601": "2025-08-20T06:26:30.803994Z",
            "url": "https://files.pythonhosted.org/packages/aa/ca/5e59802cf067787ab210d155661d9e3326d74cc14b50c45172c99749b083/vbmicrolensing-5.3.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94f0c60f1997128bbf701aa83fcf0db93d99cc71d184c87df2652e5d96382ae3",
                "md5": "eeae3f5a9cc0e780ee0007f8a3ceb715",
                "sha256": "a10dcb2a5feee9b08c0d709b660f7bd67ee3617bd98c8e2f4ada3b56703b7351"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eeae3f5a9cc0e780ee0007f8a3ceb715",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<4,>=3.7",
            "size": 1369037,
            "upload_time": "2025-08-20T06:26:32",
            "upload_time_iso_8601": "2025-08-20T06:26:32.563457Z",
            "url": "https://files.pythonhosted.org/packages/94/f0/c60f1997128bbf701aa83fcf0db93d99cc71d184c87df2652e5d96382ae3/vbmicrolensing-5.3.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbe6ec8c1b7c2ad31d00674d930061ff89f6c87d5c0bf20951a5d68c2f3552ba",
                "md5": "bbb9d705fcb59d2f1d078a8491f23810",
                "sha256": "e068819e1b32aaddd1b6754d533d3119058d400f8dbada778436c3e65165d13a"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp312-cp312-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bbb9d705fcb59d2f1d078a8491f23810",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 1395066,
            "upload_time": "2025-08-20T06:26:34",
            "upload_time_iso_8601": "2025-08-20T06:26:34.250318Z",
            "url": "https://files.pythonhosted.org/packages/fb/e6/ec8c1b7c2ad31d00674d930061ff89f6c87d5c0bf20951a5d68c2f3552ba/vbmicrolensing-5.3.2-cp312-cp312-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aeaea8fea162f2e4524f200292dd08fa1af26532b5c7d2e7bfe4a3eb3bfd48f9",
                "md5": "ffababa7e901f22c385c4f05bb327439",
                "sha256": "51a6110c355804d5bbf3cdb0e4e5c42d38fa31a5949d69bf5362f16ac7c4f838"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ffababa7e901f22c385c4f05bb327439",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 1366578,
            "upload_time": "2025-08-20T06:26:35",
            "upload_time_iso_8601": "2025-08-20T06:26:35.990019Z",
            "url": "https://files.pythonhosted.org/packages/ae/ae/a8fea162f2e4524f200292dd08fa1af26532b5c7d2e7bfe4a3eb3bfd48f9/vbmicrolensing-5.3.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62c9236b07df80cb3fa934f47cafc54bf58e5071d8a6cc0950db7e714545d529",
                "md5": "46138259d412ae50d14e07bb084ec72f",
                "sha256": "3c6d602212ddab071c23d4ff6e32c1ae08b9c12fc42f10fa4daf8a194ca69f06"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "46138259d412ae50d14e07bb084ec72f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 1576925,
            "upload_time": "2025-08-20T06:26:37",
            "upload_time_iso_8601": "2025-08-20T06:26:37.962703Z",
            "url": "https://files.pythonhosted.org/packages/62/c9/236b07df80cb3fa934f47cafc54bf58e5071d8a6cc0950db7e714545d529/vbmicrolensing-5.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21340ec7203422f8eef98e6bf03287e9f22546416c528b9f9df6d67114654db1",
                "md5": "c9af83ad75050fd2ac0079c8af691e28",
                "sha256": "048aebe94acb986799712b7c17e891f5bac24e50d9db9bfb7f0b8bbc21d881b3"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c9af83ad75050fd2ac0079c8af691e28",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 1560859,
            "upload_time": "2025-08-20T06:26:39",
            "upload_time_iso_8601": "2025-08-20T06:26:39.946665Z",
            "url": "https://files.pythonhosted.org/packages/21/34/0ec7203422f8eef98e6bf03287e9f22546416c528b9f9df6d67114654db1/vbmicrolensing-5.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ca43873820d146e2f0d53c40f9fed2b06cb287673c019715c60576f596d3426",
                "md5": "1e21d869ecbedcd7c1a7386552cbf5dc",
                "sha256": "2cd51b923739164310b9a326a9a9b6ace4d9d66736f0cfbe7fe23f8754671cbb"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1e21d869ecbedcd7c1a7386552cbf5dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 2523249,
            "upload_time": "2025-08-20T06:26:42",
            "upload_time_iso_8601": "2025-08-20T06:26:42.385721Z",
            "url": "https://files.pythonhosted.org/packages/3c/a4/3873820d146e2f0d53c40f9fed2b06cb287673c019715c60576f596d3426/vbmicrolensing-5.3.2-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20470ba5878a318db4618ecec6a3d9fcd08cc940ef0aac67c72efdddd5f81460",
                "md5": "d1708f6a432b82d250e94d08389c4e47",
                "sha256": "95331442c1b9679dc573a8e2df6f12d102bdeb0e0abc63e2c9005c3fedc58101"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1708f6a432b82d250e94d08389c4e47",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 2407957,
            "upload_time": "2025-08-20T06:26:44",
            "upload_time_iso_8601": "2025-08-20T06:26:44.570750Z",
            "url": "https://files.pythonhosted.org/packages/20/47/0ba5878a318db4618ecec6a3d9fcd08cc940ef0aac67c72efdddd5f81460/vbmicrolensing-5.3.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2347a21e9823f20d7603bb713fdd00c6853848ce9462c17a28cdc5260f8d73a4",
                "md5": "23c1bb44ecbd2e085bc860a4e73042dd",
                "sha256": "3692984236666a341e50ceb36568c55ee7d5c291a96572463307bcad0f9b6eb7"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "23c1bb44ecbd2e085bc860a4e73042dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 1327993,
            "upload_time": "2025-08-20T06:26:46",
            "upload_time_iso_8601": "2025-08-20T06:26:46.662370Z",
            "url": "https://files.pythonhosted.org/packages/23/47/a21e9823f20d7603bb713fdd00c6853848ce9462c17a28cdc5260f8d73a4/vbmicrolensing-5.3.2-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b1ed9fc03fef86c44bee7dc6c8af492bd551041a0e826f8b6fccb97dbd609da",
                "md5": "f153fa8c6821dace7a5ceab18f7eee59",
                "sha256": "49c3011c91edf307699a1c533899dff1c24965508062396be8d3dd71bfe27c5c"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f153fa8c6821dace7a5ceab18f7eee59",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<4,>=3.7",
            "size": 1369585,
            "upload_time": "2025-08-20T06:26:48",
            "upload_time_iso_8601": "2025-08-20T06:26:48.510673Z",
            "url": "https://files.pythonhosted.org/packages/1b/1e/d9fc03fef86c44bee7dc6c8af492bd551041a0e826f8b6fccb97dbd609da/vbmicrolensing-5.3.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "715a5647bc390a4c4c3641a748f34580445cb2a9ae277c8bcf0e124ef34ca92d",
                "md5": "9fdcc0c259f1c4abcbeb935360f860a6",
                "sha256": "4d5a32f833764424b69a95c1c180dd5201f53363bc18b191e2690cd81b8c1d2d"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp313-cp313-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9fdcc0c259f1c4abcbeb935360f860a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 1395134,
            "upload_time": "2025-08-20T06:26:50",
            "upload_time_iso_8601": "2025-08-20T06:26:50.155122Z",
            "url": "https://files.pythonhosted.org/packages/71/5a/5647bc390a4c4c3641a748f34580445cb2a9ae277c8bcf0e124ef34ca92d/vbmicrolensing-5.3.2-cp313-cp313-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c12e7e45d3c3e53968af72f2e7e8e0c34d6b1995b7235def9661a068137461b7",
                "md5": "d78e3795bdc2696bdf5e0db6c848e085",
                "sha256": "7809600c206449716a83abf074066159ab240e46a460fce308684a3659956307"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d78e3795bdc2696bdf5e0db6c848e085",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 1366679,
            "upload_time": "2025-08-20T06:26:51",
            "upload_time_iso_8601": "2025-08-20T06:26:51.991024Z",
            "url": "https://files.pythonhosted.org/packages/c1/2e/7e45d3c3e53968af72f2e7e8e0c34d6b1995b7235def9661a068137461b7/vbmicrolensing-5.3.2-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ddfb8a2b50f00508f5469946ee1933be1a19efcd58219b314bcd740a33864974",
                "md5": "3b38acf43bfe9ce5a6c46fde304b2339",
                "sha256": "7d04626f2e463cc217ed3490b91dad18eeff576c2aa1c4f75e36a034b9dc0813"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3b38acf43bfe9ce5a6c46fde304b2339",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 1576888,
            "upload_time": "2025-08-20T06:26:53",
            "upload_time_iso_8601": "2025-08-20T06:26:53.956102Z",
            "url": "https://files.pythonhosted.org/packages/dd/fb/8a2b50f00508f5469946ee1933be1a19efcd58219b314bcd740a33864974/vbmicrolensing-5.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e26d4647674144d37c053f6e1ee2d2741f844b1c070f1b52d62c0fd9470c62c0",
                "md5": "d089164dc644e90d186bec6933f9fe7b",
                "sha256": "e720428a34747460f0fcccb3f8af75bf5932b9bc4f1481e4db15d3af82eebc60"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d089164dc644e90d186bec6933f9fe7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 1561198,
            "upload_time": "2025-08-20T06:26:55",
            "upload_time_iso_8601": "2025-08-20T06:26:55.708419Z",
            "url": "https://files.pythonhosted.org/packages/e2/6d/4647674144d37c053f6e1ee2d2741f844b1c070f1b52d62c0fd9470c62c0/vbmicrolensing-5.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b138a6bcfc77ce0c127be5342ce91ec2e21f58c90b3be49e83e5126f8144083",
                "md5": "de2b358fdbc418b3caf956cde27f5627",
                "sha256": "7a746ef932dece4b0de9f2ba966523e4a888f85c56a1df3b2c835eaae715498f"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "de2b358fdbc418b3caf956cde27f5627",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 2523188,
            "upload_time": "2025-08-20T06:26:59",
            "upload_time_iso_8601": "2025-08-20T06:26:59.771148Z",
            "url": "https://files.pythonhosted.org/packages/9b/13/8a6bcfc77ce0c127be5342ce91ec2e21f58c90b3be49e83e5126f8144083/vbmicrolensing-5.3.2-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2321d665a06f59ac035f754da09633a958664b3562210788bade59989e1bf40",
                "md5": "e3b7579a427e69dab2d5e49b5ac5a70c",
                "sha256": "0658533e84c9c0c7557352c0f63d9ea7819356b1823f22f5b705a3521a875275"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e3b7579a427e69dab2d5e49b5ac5a70c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 2408622,
            "upload_time": "2025-08-20T06:27:02",
            "upload_time_iso_8601": "2025-08-20T06:27:02.179644Z",
            "url": "https://files.pythonhosted.org/packages/d2/32/1d665a06f59ac035f754da09633a958664b3562210788bade59989e1bf40/vbmicrolensing-5.3.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3a57b2a3450c245b2d7480649589e22c82e4c80593a4cafe562cffecc4bb23a",
                "md5": "fa33c7a53059c495122de85afdd942b0",
                "sha256": "5f8d8ca6fa2b58874202341ff1909ebc302131210f446ad8283f60d5875162c3"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "fa33c7a53059c495122de85afdd942b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 1327934,
            "upload_time": "2025-08-20T06:27:03",
            "upload_time_iso_8601": "2025-08-20T06:27:03.776507Z",
            "url": "https://files.pythonhosted.org/packages/f3/a5/7b2a3450c245b2d7480649589e22c82e4c80593a4cafe562cffecc4bb23a/vbmicrolensing-5.3.2-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "faba22aad811c14215a00a2aaf194f3d935f0ee5c446741f2210e4639adaa4a0",
                "md5": "fca9908bcc2f7da5f38202795351faac",
                "sha256": "6837a6034e78a503fd30a53e3029db0c380766ef7eda901f0a0f1f77766d3016"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fca9908bcc2f7da5f38202795351faac",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<4,>=3.7",
            "size": 1369619,
            "upload_time": "2025-08-20T06:27:05",
            "upload_time_iso_8601": "2025-08-20T06:27:05.397895Z",
            "url": "https://files.pythonhosted.org/packages/fa/ba/22aad811c14215a00a2aaf194f3d935f0ee5c446741f2210e4639adaa4a0/vbmicrolensing-5.3.2-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "290a2c24f9bdf62bf08906248404eb1ce005ff75d2de5c4eec16959fac9a7dcb",
                "md5": "9efaec809e188e5a0aa45a8ab42a5e1b",
                "sha256": "6b1c504bff7b8bcb7739c0d8570d766a1f257c3c0cb938d6fc36e25060353eb0"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp37-cp37m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9efaec809e188e5a0aa45a8ab42a5e1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 1370394,
            "upload_time": "2025-08-20T06:27:07",
            "upload_time_iso_8601": "2025-08-20T06:27:07.341418Z",
            "url": "https://files.pythonhosted.org/packages/29/0a/2c24f9bdf62bf08906248404eb1ce005ff75d2de5c4eec16959fac9a7dcb/vbmicrolensing-5.3.2-cp37-cp37m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8550943ca85975af81c951c00f36d4f77811ab6297fe05c769ad46d332535513",
                "md5": "562a3e8c6f0681353ae005d1d689e417",
                "sha256": "6b588a53c6892484a71e640b377a5fb0c5e6ca59c3ed83dc5264096a1e909e7f"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "562a3e8c6f0681353ae005d1d689e417",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 1559271,
            "upload_time": "2025-08-20T06:27:09",
            "upload_time_iso_8601": "2025-08-20T06:27:09.069350Z",
            "url": "https://files.pythonhosted.org/packages/85/50/943ca85975af81c951c00f36d4f77811ab6297fe05c769ad46d332535513/vbmicrolensing-5.3.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4011932debc5eb319cc4fb01ff10428a18ab04afcdf6c7d436a4ab7549ed1cf8",
                "md5": "2c778067c505d357470f31e0464342b2",
                "sha256": "1a353bd1d3d2cabec224bc03dd21511570eeb60bdcb337be7e3583db1c0b3282"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c778067c505d357470f31e0464342b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 1543358,
            "upload_time": "2025-08-20T06:27:10",
            "upload_time_iso_8601": "2025-08-20T06:27:10.776216Z",
            "url": "https://files.pythonhosted.org/packages/40/11/932debc5eb319cc4fb01ff10428a18ab04afcdf6c7d436a4ab7549ed1cf8/vbmicrolensing-5.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d54728551932f7f31b674a29f54a36c3012945b76e829c8a3c4e098c24d0bcd6",
                "md5": "e9d56444cdd34c8d58d734e8c0e101ff",
                "sha256": "c4eb24ada5624826b00e679a11333f723858faa69a0c8bdc205494639d9f32c6"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e9d56444cdd34c8d58d734e8c0e101ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 2505840,
            "upload_time": "2025-08-20T06:27:12",
            "upload_time_iso_8601": "2025-08-20T06:27:12.847667Z",
            "url": "https://files.pythonhosted.org/packages/d5/47/28551932f7f31b674a29f54a36c3012945b76e829c8a3c4e098c24d0bcd6/vbmicrolensing-5.3.2-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab1719cec0c18d93fbf5632deb1111c3cda69b3d98318865100a3f95f26ae8f4",
                "md5": "010d72f1e3a7768ad9e2dce361c2417b",
                "sha256": "d84420095d217dae27a5019baa69a9df35b3fc5b83cca416c08835900bb12d1b"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "010d72f1e3a7768ad9e2dce361c2417b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 2391939,
            "upload_time": "2025-08-20T06:27:15",
            "upload_time_iso_8601": "2025-08-20T06:27:15.010752Z",
            "url": "https://files.pythonhosted.org/packages/ab/17/19cec0c18d93fbf5632deb1111c3cda69b3d98318865100a3f95f26ae8f4/vbmicrolensing-5.3.2-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c042429fcf01a2e7fbf69f09cf651529eafd9c8edfd688f01eef38a03a549027",
                "md5": "34c86f452074b92a5b557f2f5519dee3",
                "sha256": "ce5e6a714e8dcbd2e720ef6d50ebaec652b01350218af2d70ce821b229319619"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "34c86f452074b92a5b557f2f5519dee3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 1314173,
            "upload_time": "2025-08-20T06:27:16",
            "upload_time_iso_8601": "2025-08-20T06:27:16.667014Z",
            "url": "https://files.pythonhosted.org/packages/c0/42/429fcf01a2e7fbf69f09cf651529eafd9c8edfd688f01eef38a03a549027/vbmicrolensing-5.3.2-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2afd267fe0c0b40b79e4cdaf8378eb09e79e2cc22f2401c1b90e72f93081883",
                "md5": "cdfafbdbfabf3d5a2d9b415a48048756",
                "sha256": "1eb080dd7e8010b0e7bb4ece0c22763e7632c70388cd16cb8624bfc32b08b8f1"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cdfafbdbfabf3d5a2d9b415a48048756",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<4,>=3.7",
            "size": 1350050,
            "upload_time": "2025-08-20T06:27:18",
            "upload_time_iso_8601": "2025-08-20T06:27:18.318082Z",
            "url": "https://files.pythonhosted.org/packages/a2/af/d267fe0c0b40b79e4cdaf8378eb09e79e2cc22f2401c1b90e72f93081883/vbmicrolensing-5.3.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e65db6feb8d3f682eda3bebe500f04f97646a216ce965a708fe7bca6b3f8dae8",
                "md5": "cd8e600b026729421d7a02fe74742c5a",
                "sha256": "74fcba860c213c1382d224bea9c4efc75dc6fb28b013cc8442caf8491f67121a"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd8e600b026729421d7a02fe74742c5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 1389930,
            "upload_time": "2025-08-20T06:27:20",
            "upload_time_iso_8601": "2025-08-20T06:27:20.548117Z",
            "url": "https://files.pythonhosted.org/packages/e6/5d/b6feb8d3f682eda3bebe500f04f97646a216ce965a708fe7bca6b3f8dae8/vbmicrolensing-5.3.2-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6077435f4ee2d5dc313b061367c08d4ee59054e9ca18861df81604796f04f58",
                "md5": "8cc506e963f065ae7dbf4415079aeba5",
                "sha256": "24af37d3281b94159ef34a283ec474f719f429cef800193f6f87add8b8dc672f"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8cc506e963f065ae7dbf4415079aeba5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 1362978,
            "upload_time": "2025-08-20T06:27:22",
            "upload_time_iso_8601": "2025-08-20T06:27:22.436666Z",
            "url": "https://files.pythonhosted.org/packages/d6/07/7435f4ee2d5dc313b061367c08d4ee59054e9ca18861df81604796f04f58/vbmicrolensing-5.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b299c45b881b059477223c16c14fe1e150b1a7f2c81c252cbbfaba784500dd1",
                "md5": "2a61a00c541e8a597dfa1ae439f53292",
                "sha256": "91fb3ba3c93d6c37c54f9a6c55d5d20e1f65c23eb979a2451feb6722d1f1f927"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2a61a00c541e8a597dfa1ae439f53292",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 1575964,
            "upload_time": "2025-08-20T06:27:24",
            "upload_time_iso_8601": "2025-08-20T06:27:24.126132Z",
            "url": "https://files.pythonhosted.org/packages/7b/29/9c45b881b059477223c16c14fe1e150b1a7f2c81c252cbbfaba784500dd1/vbmicrolensing-5.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82593905a12ce2368e3891b169c92cf6b4adfc45de27f213806c55d7fe5aeaad",
                "md5": "d19560c7fca3b666fc1d61b4591b2d59",
                "sha256": "1eb067770eb4e498f6dae3000387622ab2bec56608333b610cb301919bf6a9d8"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d19560c7fca3b666fc1d61b4591b2d59",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 1560882,
            "upload_time": "2025-08-20T06:27:25",
            "upload_time_iso_8601": "2025-08-20T06:27:25.841372Z",
            "url": "https://files.pythonhosted.org/packages/82/59/3905a12ce2368e3891b169c92cf6b4adfc45de27f213806c55d7fe5aeaad/vbmicrolensing-5.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b467d13809cb4431e9b643ab56bb11285e718d95ae5ecb47880aaddc7c12e0f1",
                "md5": "a8980f5ca785270e3d476db31bccea5a",
                "sha256": "379768bce9191267bc91530de193d65d998b37706129d1eb64b80dab32e594e5"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a8980f5ca785270e3d476db31bccea5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 2521071,
            "upload_time": "2025-08-20T06:27:28",
            "upload_time_iso_8601": "2025-08-20T06:27:28.411745Z",
            "url": "https://files.pythonhosted.org/packages/b4/67/d13809cb4431e9b643ab56bb11285e718d95ae5ecb47880aaddc7c12e0f1/vbmicrolensing-5.3.2-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb501b4127e5c39fc849e5aa4b7cc6ee68f4d946b970f3444cd1acfdb9451222",
                "md5": "58e30b1cd7faa7e9b4380d9cc00aaf9e",
                "sha256": "1cd0cd6ac41b68747582c09814b2e89afec6a08a566cb01cd0bf46c2e51cee40"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58e30b1cd7faa7e9b4380d9cc00aaf9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 2405773,
            "upload_time": "2025-08-20T06:27:30",
            "upload_time_iso_8601": "2025-08-20T06:27:30.569469Z",
            "url": "https://files.pythonhosted.org/packages/bb/50/1b4127e5c39fc849e5aa4b7cc6ee68f4d946b970f3444cd1acfdb9451222/vbmicrolensing-5.3.2-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "016ab4c324b84468081c90848d8944ba2428fff26423d8e645f1986e82f275eb",
                "md5": "c71a9ad2c0b30375a0d88a4dd49a6fe3",
                "sha256": "2b673c745d24d777c1be0eef50f720dfad6e08d93fbf10959c4ce53144558807"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "c71a9ad2c0b30375a0d88a4dd49a6fe3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 1328046,
            "upload_time": "2025-08-20T06:27:32",
            "upload_time_iso_8601": "2025-08-20T06:27:32.582941Z",
            "url": "https://files.pythonhosted.org/packages/01/6a/b4c324b84468081c90848d8944ba2428fff26423d8e645f1986e82f275eb/vbmicrolensing-5.3.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33760aa8c4e27daedc337da595ed990820fd857654096d2490b12477510a5804",
                "md5": "1f5e463d2bbdd2feeda4edec53ffc637",
                "sha256": "86ce2eecbc4e0c80deefab89beb2c5b123d05d83b111e35091d32d5a83660bbf"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1f5e463d2bbdd2feeda4edec53ffc637",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<4,>=3.7",
            "size": 1367812,
            "upload_time": "2025-08-20T06:27:34",
            "upload_time_iso_8601": "2025-08-20T06:27:34.285061Z",
            "url": "https://files.pythonhosted.org/packages/33/76/0aa8c4e27daedc337da595ed990820fd857654096d2490b12477510a5804/vbmicrolensing-5.3.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ddb338a37aa4e46168d74d928d21af0ff6b26425f0d09c9fe21e95292142d4f",
                "md5": "963da98b31a510197cf60366fd0b531f",
                "sha256": "167612d53db81b5af5740aed40de485067b21530bc989f95452b2c44a7093435"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "963da98b31a510197cf60366fd0b531f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 1390090,
            "upload_time": "2025-08-20T06:27:36",
            "upload_time_iso_8601": "2025-08-20T06:27:36.173840Z",
            "url": "https://files.pythonhosted.org/packages/7d/db/338a37aa4e46168d74d928d21af0ff6b26425f0d09c9fe21e95292142d4f/vbmicrolensing-5.3.2-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ef56998894709a348e690383ced8e0ee964f5daa04226cd5add8799e0757e62",
                "md5": "e7c87a8d5153f3013fa8a775c849ad6a",
                "sha256": "0bbe6b3d9f263400cc6c9273e6f422ff2a0a849cf0c0d6d0438055d654dce0b3"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e7c87a8d5153f3013fa8a775c849ad6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 1363111,
            "upload_time": "2025-08-20T06:27:37",
            "upload_time_iso_8601": "2025-08-20T06:27:37.821893Z",
            "url": "https://files.pythonhosted.org/packages/7e/f5/6998894709a348e690383ced8e0ee964f5daa04226cd5add8799e0757e62/vbmicrolensing-5.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f30f0aa8a994388b5a33783f2c8581f90a138da48373ef0f2477d769dec62c2e",
                "md5": "4858e7d7a4507b901fdc1dd7c727dba3",
                "sha256": "9f23dc58c13e9b466602fe094e6a5bd60f0768bf257e12ecfe86c5b8d4f5c785"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4858e7d7a4507b901fdc1dd7c727dba3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 1576302,
            "upload_time": "2025-08-20T06:27:39",
            "upload_time_iso_8601": "2025-08-20T06:27:39.588033Z",
            "url": "https://files.pythonhosted.org/packages/f3/0f/0aa8a994388b5a33783f2c8581f90a138da48373ef0f2477d769dec62c2e/vbmicrolensing-5.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e5a6473cc5709ba0845499705b3a37b40db6c4d7102ba3e5bc19f109ea6a7a7",
                "md5": "da7ae2a35fd12a90da584b7a7ce841f0",
                "sha256": "731a5cfb6a5fbcfd340bf52134aa3eeddb8ae05a33f6fc5951785ad895630a14"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da7ae2a35fd12a90da584b7a7ce841f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 1561190,
            "upload_time": "2025-08-20T06:27:41",
            "upload_time_iso_8601": "2025-08-20T06:27:41.311388Z",
            "url": "https://files.pythonhosted.org/packages/6e/5a/6473cc5709ba0845499705b3a37b40db6c4d7102ba3e5bc19f109ea6a7a7/vbmicrolensing-5.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a98be286ce3657acaa5b32c64082c9c10469898b0ac5fb5a675bf6a1e788fcc3",
                "md5": "abb407c9cf61c93eb16b14e1d9e5a98c",
                "sha256": "ce37a0ac4ae45a5e8b3c0929294f1c31a13195eb0f9882874b31e2f3a339a1d8"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "abb407c9cf61c93eb16b14e1d9e5a98c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 2521732,
            "upload_time": "2025-08-20T06:27:43",
            "upload_time_iso_8601": "2025-08-20T06:27:43.414287Z",
            "url": "https://files.pythonhosted.org/packages/a9/8b/e286ce3657acaa5b32c64082c9c10469898b0ac5fb5a675bf6a1e788fcc3/vbmicrolensing-5.3.2-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de51ceff3fc39e14d9e3588ab083443b3e383a806e937a5769629ebd5b9fbcdc",
                "md5": "a5bcdf25759385a3e92fcf9be0b7dd56",
                "sha256": "eed960fa3d5290a6327074ebe31d2de45986255ea7487e271c377d8389374e97"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5bcdf25759385a3e92fcf9be0b7dd56",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 2406296,
            "upload_time": "2025-08-20T06:27:46",
            "upload_time_iso_8601": "2025-08-20T06:27:46.327979Z",
            "url": "https://files.pythonhosted.org/packages/de/51/ceff3fc39e14d9e3588ab083443b3e383a806e937a5769629ebd5b9fbcdc/vbmicrolensing-5.3.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b69339efa1d9e20ed396a6eae8bb716d96f5d0844b9afa9c1308e731a859714",
                "md5": "f5ecc15811844632867f0c823ecb057c",
                "sha256": "dd7455fdf25602f4991704aaf9ba6277b93cf1d0e3a358fecc58423af64ddc84"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "f5ecc15811844632867f0c823ecb057c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 1327961,
            "upload_time": "2025-08-20T06:27:47",
            "upload_time_iso_8601": "2025-08-20T06:27:47.998397Z",
            "url": "https://files.pythonhosted.org/packages/5b/69/339efa1d9e20ed396a6eae8bb716d96f5d0844b9afa9c1308e731a859714/vbmicrolensing-5.3.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea1151e09a8a34961eee026fbb6dc020cba9e2031747c5cc5615b10524874f81",
                "md5": "067ec5cb5b2baf306263a3e6c4d0bcef",
                "sha256": "6cac7c5daaa1dc9309564abc89eb962472b47f6cbf87f36077f635eee1edd172"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "067ec5cb5b2baf306263a3e6c4d0bcef",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<4,>=3.7",
            "size": 1378951,
            "upload_time": "2025-08-20T06:27:49",
            "upload_time_iso_8601": "2025-08-20T06:27:49.831373Z",
            "url": "https://files.pythonhosted.org/packages/ea/11/51e09a8a34961eee026fbb6dc020cba9e2031747c5cc5615b10524874f81/vbmicrolensing-5.3.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4333f94c8f8d6e303c556c8870d6ab899b615b6bf6b573e96ef9ed1a094b69ab",
                "md5": "763d0ca3664e8ac5f4ef555c9fc62a7a",
                "sha256": "e455900ac2f85f7b22ca22ed06fe1f72a6dbc26aa90896aa769b4c4f2a236fa6"
            },
            "downloads": -1,
            "filename": "vbmicrolensing-5.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "763d0ca3664e8ac5f4ef555c9fc62a7a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.7",
            "size": 2934060,
            "upload_time": "2025-08-20T06:27:52",
            "upload_time_iso_8601": "2025-08-20T06:27:52.369812Z",
            "url": "https://files.pythonhosted.org/packages/43/33/f94c8f8d6e303c556c8870d6ab899b615b6bf6b573e96ef9ed1a094b69ab/vbmicrolensing-5.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-20 06:27:52",
    "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.79379s