acepython


Nameacepython JSON
Version 0.0.14 PyPI version JSON
download
home_page
SummaryPython wrapper for the FORTRAN ACE code.
upload_time2024-03-08 12:20:43
maintainer
docs_urlNone
author
requires_python>=3.9
license
keywords taurex taurex3 exoplanet exoplanets transmission spectroscopy atmospheres atmosphere chemistry equilibrium-chemistry chemistry-solver chemistry-equilibrium chemistry-equilibrium-solver fortran
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ACEPython - An equilibrium chemistry code

<p align="center"><b><a href="#introduction">Introduction</a> | <a href="#usage">Usage</a> | <a href="#taurex3">TauREx 3</a> | <a href="#citing-pdfo">Citing ACEPython</a></b></p>


## Introduction

ACEPython is a Python wrapper for the FORTRAN equilibrium chemistry code developed by [AgĂșndez et al. 2012](https://ui.adsabs.harvard.edu/abs/2012A%26A...548A..73A/abstract). It can rapidly compute the equilibirum chemical scheme for a given temperature and pressure.

### Installation

ACEPython can be installed with prebuilt wheels using pip:

```bash
pip install acepython
```

Or, if you prefer, you can build it from source which requires a FORTRAN and C compiler. The following commands will build and install ACEPython:

```bash
git clone https://github.com/ucl-exoplanets/acepython.git
cd acepython
pip install .
```

## Usage

ACEPython can be used to compute the equilibrium chemistry for a given temperature and pressure. Temperature and pressure must be created with astropy units. For pressure, any unit can be used (Pa, bar etc). The following example shows how to compute the equilibrium chemistry for a column of atmosphere:

```python
from acepython import run_ace
from astropy import units as u
import numpy as np
import matplotlib.pyplot as plt


temperature = np.linspace(3000, 1000, 100) << u.K
pressure = np.logspace(6, -2, 100) << u.bar

species, mix_profile, mu_profile = run_ace(
    temperature,
    pressure,
)

species_to_see = ["H2", "H20", "CH4", "NH3", "C2H2", "CO", "CO2", "H2CO"]

fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(10, 5))

for i, spec in enumerate(species):
    if spec in species_to_see:
        ax1.plot(mix_profile[i], pressure, label=spec)

ax1.set_yscale("log")
ax1.set_xscale("log")
ax1.invert_yaxis()
ax1.set_ylabel("Pressure (bar)")
ax1.set_xlabel("VMR")

ax1.legend()

ax2.plot(mu_profile, pressure)
ax2.set_yscale("log")
ax2.invert_yaxis()
ax2.set_ylabel("Pressure (bar)")
ax2.set_xlabel("Mean molecular weight (au)")

plt.show()
```

Should produce the following figure:
![alt text](https://github.com/ucl-exoplanets/acepython/blob/main/examples/ace_example.svg?raw=true)

### Custom chemical scheme

By default the elements in the chemical scheme are <mark>H, He, C, N, O</mark> at log abundances <mark>12, 10.93, 8.39, 7.86, 8.73</mark> respectively. The abundances can be changed by passing the elements and corresponding abundances to the `run_ace` function:

```python
species, mix_profile, mu_profile = run_ace(
    temperature,
    pressure,
    elements=["H", "He", "C", "N", "O"],
    abundances=[12, 10.93, 8.39, 7.86, 7.73],
)
```

where we have changed *O* to have a log abundance of *7.73*.

You can customize the species included by passing in thermochemical and species data files.

For example, if we have a custom thermochemical data file called `custom_thermochemical_data.dat` and a custom species data file called `custom_species_data.dat` that includes sulphur we can run ACEPython with:

```python
species, mix_profile, mu_profile = run_ace(
    temperature,
    pressure,
    elements=["H", "He", "C", "N", "O", "S"],
    abundances=[12, 10.93, 8.39, 7.86, 7.73, 7.0],
    thermochemical_data="custom_thermochemical_data_w_S.dat",
    species_data="custom_species_data_w_S.dat",
)
```

## TauREx3

ACEPython also includes a plugin for [TauREx 3.1](https://taurex3-public.readthedocs.io/en/latest/) that allows you to use ACEPython as a chemistry scheme. In the input file you can select it in the *Chemistry* section using <mark>acepython</mark> with arguments:

```bash
[Chemistry]
chemistry = acepython
# He/H ratio (optional)
he_h_ratio = 0.83
# Elements excluding H, He (optional)
elements = C, N, O  
# log abundances (optional)
abundances = 8.39, 7.86, 8.73 
# Custom species data file (optional)
spec_file = custom_species_data.dat 
# Custom thermochemical data file (optional)
thermo_file = custom_thermochemical_data.dat 
```

## Citing ACEPython

If you use ACEPython in your research, please cite the following papers:

```bibtex
@ARTICLE{Agundez2012,
    author = {{Ag{\'u}ndez}, M. and {Venot}, O. and {Iro}, N. and {Selsis}, F. and
        {Hersant}, F. and {H{'e}brard}, E. and {Dobrijevic}, M.},
        title = "{The impact of atmospheric circulation on the chemistry of the hot Jupiter HD 209458b}",
    journal = {A\&A},
    keywords = {astrochemistry, planets and satellites: atmospheres, planets and satellites: individual: HD 209458b, Astrophysics - Earth and Planetary Astrophysics},
        year = "2012",
        month = "Dec",
    volume = {548},
        eid = {A73},
        pages = {A73},
        doi = {10.1051/0004-6361/201220365},
archivePrefix = {arXiv},
    eprint = {1210.6627},
primaryClass = {astro-ph.EP},
    adsurl = {https://ui.adsabs.harvard.edu/abs/2012A&A...548A..73A},
    adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}

@ARTICLE{2021ApJ...917...37A,
       author = {{Al-Refaie}, A.~F. and {Changeat}, Q. and {Waldmann}, I.~P. and {Tinetti}, G.},
        title = "{TauREx 3: A Fast, Dynamic, and Extendable Framework for Retrievals}",
      journal = {\apj},
     keywords = {Open source software, Astronomy software, Exoplanet atmospheres, Radiative transfer, Bayesian statistics, Planetary atmospheres, Planetary science, 1866, 1855, 487, 1335, 1900, 1244, 1255, Astrophysics - Instrumentation and Methods for Astrophysics, Astrophysics - Earth and Planetary Astrophysics},
         year = 2021,
        month = aug,
       volume = {917},
       number = {1},
          eid = {37},
        pages = {37},
          doi = {10.3847/1538-4357/ac0252},
archivePrefix = {arXiv},
       eprint = {1912.07759},
 primaryClass = {astro-ph.IM},
       adsurl = {https://ui.adsabs.harvard.edu/abs/2021ApJ...917...37A},
      adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}

@ARTICLE{2022ApJ...932..123A,
       author = {{Al-Refaie}, A.~F. and {Changeat}, Q. and {Venot}, O. and {Waldmann}, I.~P. and {Tinetti}, G.},
        title = "{A Comparison of Chemical Models of Exoplanet Atmospheres Enabled by TauREx 3.1}",
      journal = {\apj},
     keywords = {Open source software, Publicly available software, Chemical abundances, Bayesian statistics, Exoplanet atmospheres, Exoplanet astronomy, Exoplanet atmospheric composition, Exoplanets, Radiative transfer, 1866, 1864, 224, 1900, 487, 486, 2021, 498, 1335, Astrophysics - Earth and Planetary Astrophysics, Astrophysics - Instrumentation and Methods for Astrophysics},
         year = 2022,
        month = jun,
       volume = {932},
       number = {2},
          eid = {123},
        pages = {123},
          doi = {10.3847/1538-4357/ac6dcd},
archivePrefix = {arXiv},
       eprint = {2110.01271},
 primaryClass = {astro-ph.EP},
       adsurl = {https://ui.adsabs.harvard.edu/abs/2022ApJ...932..123A},
      adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "acepython",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "Ahmed F. Al-Refaie <ahmed.al-refaie.12@ucl.ac.uk>",
    "keywords": "taurex taurex3 exoplanet exoplanets transmission spectroscopy atmospheres atmosphere chemistry equilibrium-chemistry chemistry-solver chemistry-equilibrium chemistry-equilibrium-solver fortran",
    "author": "",
    "author_email": "Ahmed F. Al-Refaie <ahmed.al-refaie.12@ucl.ac.uk>",
    "download_url": "https://files.pythonhosted.org/packages/1f/f0/cf365d6b379532a11b6fa067cdfeea770dbaaf53d73b6e8a0a53ad9eb63c/acepython-0.0.14.tar.gz",
    "platform": null,
    "description": "# ACEPython - An equilibrium chemistry code\n\n<p align=\"center\"><b><a href=\"#introduction\">Introduction</a> | <a href=\"#usage\">Usage</a> | <a href=\"#taurex3\">TauREx 3</a> | <a href=\"#citing-pdfo\">Citing ACEPython</a></b></p>\n\n\n## Introduction\n\nACEPython is a Python wrapper for the FORTRAN equilibrium chemistry code developed by [Ag\u00fandez et al. 2012](https://ui.adsabs.harvard.edu/abs/2012A%26A...548A..73A/abstract). It can rapidly compute the equilibirum chemical scheme for a given temperature and pressure.\n\n### Installation\n\nACEPython can be installed with prebuilt wheels using pip:\n\n```bash\npip install acepython\n```\n\nOr, if you prefer, you can build it from source which requires a FORTRAN and C compiler. The following commands will build and install ACEPython:\n\n```bash\ngit clone https://github.com/ucl-exoplanets/acepython.git\ncd acepython\npip install .\n```\n\n## Usage\n\nACEPython can be used to compute the equilibrium chemistry for a given temperature and pressure. Temperature and pressure must be created with astropy units. For pressure, any unit can be used (Pa, bar etc). The following example shows how to compute the equilibrium chemistry for a column of atmosphere:\n\n```python\nfrom acepython import run_ace\nfrom astropy import units as u\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n\ntemperature = np.linspace(3000, 1000, 100) << u.K\npressure = np.logspace(6, -2, 100) << u.bar\n\nspecies, mix_profile, mu_profile = run_ace(\n    temperature,\n    pressure,\n)\n\nspecies_to_see = [\"H2\", \"H20\", \"CH4\", \"NH3\", \"C2H2\", \"CO\", \"CO2\", \"H2CO\"]\n\nfig, (ax1, ax2) = plt.subplots(1, 2, figsize=(10, 5))\n\nfor i, spec in enumerate(species):\n    if spec in species_to_see:\n        ax1.plot(mix_profile[i], pressure, label=spec)\n\nax1.set_yscale(\"log\")\nax1.set_xscale(\"log\")\nax1.invert_yaxis()\nax1.set_ylabel(\"Pressure (bar)\")\nax1.set_xlabel(\"VMR\")\n\nax1.legend()\n\nax2.plot(mu_profile, pressure)\nax2.set_yscale(\"log\")\nax2.invert_yaxis()\nax2.set_ylabel(\"Pressure (bar)\")\nax2.set_xlabel(\"Mean molecular weight (au)\")\n\nplt.show()\n```\n\nShould produce the following figure:\n![alt text](https://github.com/ucl-exoplanets/acepython/blob/main/examples/ace_example.svg?raw=true)\n\n### Custom chemical scheme\n\nBy default the elements in the chemical scheme are <mark>H, He, C, N, O</mark> at log abundances <mark>12, 10.93, 8.39, 7.86, 8.73</mark> respectively. The abundances can be changed by passing the elements and corresponding abundances to the `run_ace` function:\n\n```python\nspecies, mix_profile, mu_profile = run_ace(\n    temperature,\n    pressure,\n    elements=[\"H\", \"He\", \"C\", \"N\", \"O\"],\n    abundances=[12, 10.93, 8.39, 7.86, 7.73],\n)\n```\n\nwhere we have changed *O* to have a log abundance of *7.73*.\n\nYou can customize the species included by passing in thermochemical and species data files.\n\nFor example, if we have a custom thermochemical data file called `custom_thermochemical_data.dat` and a custom species data file called `custom_species_data.dat` that includes sulphur we can run ACEPython with:\n\n```python\nspecies, mix_profile, mu_profile = run_ace(\n    temperature,\n    pressure,\n    elements=[\"H\", \"He\", \"C\", \"N\", \"O\", \"S\"],\n    abundances=[12, 10.93, 8.39, 7.86, 7.73, 7.0],\n    thermochemical_data=\"custom_thermochemical_data_w_S.dat\",\n    species_data=\"custom_species_data_w_S.dat\",\n)\n```\n\n## TauREx3\n\nACEPython also includes a plugin for [TauREx 3.1](https://taurex3-public.readthedocs.io/en/latest/) that allows you to use ACEPython as a chemistry scheme. In the input file you can select it in the *Chemistry* section using <mark>acepython</mark> with arguments:\n\n```bash\n[Chemistry]\nchemistry = acepython\n# He/H ratio (optional)\nhe_h_ratio = 0.83\n# Elements excluding H, He (optional)\nelements = C, N, O  \n# log abundances (optional)\nabundances = 8.39, 7.86, 8.73 \n# Custom species data file (optional)\nspec_file = custom_species_data.dat \n# Custom thermochemical data file (optional)\nthermo_file = custom_thermochemical_data.dat \n```\n\n## Citing ACEPython\n\nIf you use ACEPython in your research, please cite the following papers:\n\n```bibtex\n@ARTICLE{Agundez2012,\n    author = {{Ag{\\'u}ndez}, M. and {Venot}, O. and {Iro}, N. and {Selsis}, F. and\n        {Hersant}, F. and {H{'e}brard}, E. and {Dobrijevic}, M.},\n        title = \"{The impact of atmospheric circulation on the chemistry of the hot Jupiter HD 209458b}\",\n    journal = {A\\&A},\n    keywords = {astrochemistry, planets and satellites: atmospheres, planets and satellites: individual: HD 209458b, Astrophysics - Earth and Planetary Astrophysics},\n        year = \"2012\",\n        month = \"Dec\",\n    volume = {548},\n        eid = {A73},\n        pages = {A73},\n        doi = {10.1051/0004-6361/201220365},\narchivePrefix = {arXiv},\n    eprint = {1210.6627},\nprimaryClass = {astro-ph.EP},\n    adsurl = {https://ui.adsabs.harvard.edu/abs/2012A&A...548A..73A},\n    adsnote = {Provided by the SAO/NASA Astrophysics Data System}\n}\n\n@ARTICLE{2021ApJ...917...37A,\n       author = {{Al-Refaie}, A.~F. and {Changeat}, Q. and {Waldmann}, I.~P. and {Tinetti}, G.},\n        title = \"{TauREx 3: A Fast, Dynamic, and Extendable Framework for Retrievals}\",\n      journal = {\\apj},\n     keywords = {Open source software, Astronomy software, Exoplanet atmospheres, Radiative transfer, Bayesian statistics, Planetary atmospheres, Planetary science, 1866, 1855, 487, 1335, 1900, 1244, 1255, Astrophysics - Instrumentation and Methods for Astrophysics, Astrophysics - Earth and Planetary Astrophysics},\n         year = 2021,\n        month = aug,\n       volume = {917},\n       number = {1},\n          eid = {37},\n        pages = {37},\n          doi = {10.3847/1538-4357/ac0252},\narchivePrefix = {arXiv},\n       eprint = {1912.07759},\n primaryClass = {astro-ph.IM},\n       adsurl = {https://ui.adsabs.harvard.edu/abs/2021ApJ...917...37A},\n      adsnote = {Provided by the SAO/NASA Astrophysics Data System}\n}\n\n@ARTICLE{2022ApJ...932..123A,\n       author = {{Al-Refaie}, A.~F. and {Changeat}, Q. and {Venot}, O. and {Waldmann}, I.~P. and {Tinetti}, G.},\n        title = \"{A Comparison of Chemical Models of Exoplanet Atmospheres Enabled by TauREx 3.1}\",\n      journal = {\\apj},\n     keywords = {Open source software, Publicly available software, Chemical abundances, Bayesian statistics, Exoplanet atmospheres, Exoplanet astronomy, Exoplanet atmospheric composition, Exoplanets, Radiative transfer, 1866, 1864, 224, 1900, 487, 486, 2021, 498, 1335, Astrophysics - Earth and Planetary Astrophysics, Astrophysics - Instrumentation and Methods for Astrophysics},\n         year = 2022,\n        month = jun,\n       volume = {932},\n       number = {2},\n          eid = {123},\n        pages = {123},\n          doi = {10.3847/1538-4357/ac6dcd},\narchivePrefix = {arXiv},\n       eprint = {2110.01271},\n primaryClass = {astro-ph.EP},\n       adsurl = {https://ui.adsabs.harvard.edu/abs/2022ApJ...932..123A},\n      adsnote = {Provided by the SAO/NASA Astrophysics Data System}\n}\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Python wrapper for the FORTRAN ACE code.",
    "version": "0.0.14",
    "project_urls": {
        "Source": "https://github.com/ucl-exoplanets/acepython"
    },
    "split_keywords": [
        "taurex",
        "taurex3",
        "exoplanet",
        "exoplanets",
        "transmission",
        "spectroscopy",
        "atmospheres",
        "atmosphere",
        "chemistry",
        "equilibrium-chemistry",
        "chemistry-solver",
        "chemistry-equilibrium",
        "chemistry-equilibrium-solver",
        "fortran"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22a12ca831f093ed368bfa514fda9a28aa04ecc043f8e0077f4579459a44a9d0",
                "md5": "2b0f225c26f99d14546daf9646fef8c9",
                "sha256": "e865f89bbc465a7fd4c4d15e7516314e3fc975b15e782ec4a5eb552fed46b1d9"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b0f225c26f99d14546daf9646fef8c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2350401,
            "upload_time": "2024-03-08T12:20:10",
            "upload_time_iso_8601": "2024-03-08T12:20:10.817828Z",
            "url": "https://files.pythonhosted.org/packages/22/a1/2ca831f093ed368bfa514fda9a28aa04ecc043f8e0077f4579459a44a9d0/acepython-0.0.14-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f1d9771dd937cf073ae79ce0ec4a7e6a070b5dad0d185c57e9b8fb70ce06c79",
                "md5": "2640c27e5416ff5cfd7b84926bb12731",
                "sha256": "2a00bc447d0e107ffaed084acf2d5b8e5dce69c8a40e249692651db827f83259"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2640c27e5416ff5cfd7b84926bb12731",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1087025,
            "upload_time": "2024-03-08T12:20:13",
            "upload_time_iso_8601": "2024-03-08T12:20:13.386257Z",
            "url": "https://files.pythonhosted.org/packages/2f/1d/9771dd937cf073ae79ce0ec4a7e6a070b5dad0d185c57e9b8fb70ce06c79/acepython-0.0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3db6551342c294ed6e8d86d00225554aafd39df77e897c0197abb5c71c42c05",
                "md5": "2339d4fc2a584116b0038dca6f1ac750",
                "sha256": "ab6712b56d98cad7c546730bf91efcac816a1e2183d83f1f6fa78cbf49848041"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2339d4fc2a584116b0038dca6f1ac750",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 767810,
            "upload_time": "2024-03-08T12:20:15",
            "upload_time_iso_8601": "2024-03-08T12:20:15.698703Z",
            "url": "https://files.pythonhosted.org/packages/d3/db/6551342c294ed6e8d86d00225554aafd39df77e897c0197abb5c71c42c05/acepython-0.0.14-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3be7e70c77c1d438e64e51b44c0fe0ee5358cc9267215e3b789e3c27ee2e53fb",
                "md5": "7e7de5983ca63687d22ad9e2b7e991bc",
                "sha256": "c7f2bbbeceedb2d334c5b9eb42c03c3e1aac64fbeeba5f076c94b343b528c80a"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7e7de5983ca63687d22ad9e2b7e991bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 435827,
            "upload_time": "2024-03-08T12:20:17",
            "upload_time_iso_8601": "2024-03-08T12:20:17.837714Z",
            "url": "https://files.pythonhosted.org/packages/3b/e7/e70c77c1d438e64e51b44c0fe0ee5358cc9267215e3b789e3c27ee2e53fb/acepython-0.0.14-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab7ae2cce3f3692931ef71ec8c034bd5596358e5ab4b0b58d412f1da204305af",
                "md5": "748808d707682b19b0f2116e00b951b5",
                "sha256": "c2f44c01923a3c0c96c1a011f525a9a09ddc03669e171833cd3c255df37b11f8"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "748808d707682b19b0f2116e00b951b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2350402,
            "upload_time": "2024-03-08T12:20:20",
            "upload_time_iso_8601": "2024-03-08T12:20:20.062121Z",
            "url": "https://files.pythonhosted.org/packages/ab/7a/e2cce3f3692931ef71ec8c034bd5596358e5ab4b0b58d412f1da204305af/acepython-0.0.14-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff22190cba1b69900b19b8f5405b918f598c543fd2928c07f17d677ae4eef1e8",
                "md5": "982c3198395af24a4f17f6b1127bb379",
                "sha256": "6b2c07e816a57698dc12bae38a9761aaa9baecc9a57485e54d1176bc3c8a084d"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "982c3198395af24a4f17f6b1127bb379",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1087033,
            "upload_time": "2024-03-08T12:20:24",
            "upload_time_iso_8601": "2024-03-08T12:20:24.102862Z",
            "url": "https://files.pythonhosted.org/packages/ff/22/190cba1b69900b19b8f5405b918f598c543fd2928c07f17d677ae4eef1e8/acepython-0.0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2257ed1dbd48f21c283f08b0d30579e35c5d92aed5fe63ffba53fd028dd263a9",
                "md5": "2626fe5de5c8d3c544a22acd69fc1d9f",
                "sha256": "5f993b27f6a995f1f2e93ab71381d41d819e8668ff3c414a5090ad1ae7454f94"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2626fe5de5c8d3c544a22acd69fc1d9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 767798,
            "upload_time": "2024-03-08T12:20:25",
            "upload_time_iso_8601": "2024-03-08T12:20:25.580554Z",
            "url": "https://files.pythonhosted.org/packages/22/57/ed1dbd48f21c283f08b0d30579e35c5d92aed5fe63ffba53fd028dd263a9/acepython-0.0.14-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12b1da9b59ec80723fdf393c1795550bfbdc22d5e43207ff40ccaf9a9a0847b3",
                "md5": "76c26f535e41636ce70c0f2230d0b773",
                "sha256": "792d538347eff26f0c89853c6b91c1a249b655ae5c6d4fe34a943159da1cbc5c"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "76c26f535e41636ce70c0f2230d0b773",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 435843,
            "upload_time": "2024-03-08T12:20:27",
            "upload_time_iso_8601": "2024-03-08T12:20:27.738680Z",
            "url": "https://files.pythonhosted.org/packages/12/b1/da9b59ec80723fdf393c1795550bfbdc22d5e43207ff40ccaf9a9a0847b3/acepython-0.0.14-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a6c76d809c5c8189013d56aec73fb8b1dc982876c399aea2509eda7eb1e7a70",
                "md5": "d745de4b353992f6e07f82b7f0d34ea9",
                "sha256": "fbf602b1b5517bd4114a642cbabd356cbaefa3770ec076ab0dcbb6db10f52431"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d745de4b353992f6e07f82b7f0d34ea9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2350665,
            "upload_time": "2024-03-08T12:20:29",
            "upload_time_iso_8601": "2024-03-08T12:20:29.892229Z",
            "url": "https://files.pythonhosted.org/packages/8a/6c/76d809c5c8189013d56aec73fb8b1dc982876c399aea2509eda7eb1e7a70/acepython-0.0.14-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2944647aafa7859c32623ccf135932b23899f242784f26c151b30eaf42915297",
                "md5": "5e711a820a3e62248c5554016ecbb10d",
                "sha256": "1dd30d4790aa2126449ddc2d27558e8070127c7b02da46b35ed84af0662787c3"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e711a820a3e62248c5554016ecbb10d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1087181,
            "upload_time": "2024-03-08T12:20:32",
            "upload_time_iso_8601": "2024-03-08T12:20:32.144904Z",
            "url": "https://files.pythonhosted.org/packages/29/44/647aafa7859c32623ccf135932b23899f242784f26c151b30eaf42915297/acepython-0.0.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af14bf85b24c42fc468b51cbeedf2527ab57b12a537f5a0a32a612020b2a3e02",
                "md5": "e7e7338ebd7f43c0954ef0007d72d8bc",
                "sha256": "f9ad46f2e991cb90d2205b227182647c4c838dac1a071cf43af8af7c6265a9cf"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e7e7338ebd7f43c0954ef0007d72d8bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 768028,
            "upload_time": "2024-03-08T12:20:34",
            "upload_time_iso_8601": "2024-03-08T12:20:34.295736Z",
            "url": "https://files.pythonhosted.org/packages/af/14/bf85b24c42fc468b51cbeedf2527ab57b12a537f5a0a32a612020b2a3e02/acepython-0.0.14-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37fef3ca542fdf277ad60084e97431a469e919db86d9e7db48c7ca1155ab6d05",
                "md5": "1728efa00680acfd340307e23b93f4d0",
                "sha256": "97700809354e8b38c8d477c1f964059cd66257e2d1a31a693cc8b86e07da747b"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1728efa00680acfd340307e23b93f4d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 436072,
            "upload_time": "2024-03-08T12:20:35",
            "upload_time_iso_8601": "2024-03-08T12:20:35.781552Z",
            "url": "https://files.pythonhosted.org/packages/37/fe/f3ca542fdf277ad60084e97431a469e919db86d9e7db48c7ca1155ab6d05/acepython-0.0.14-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d315cfc22da1a4e192ccd415a11d86111667134c1071e4830e632b97e209527",
                "md5": "bd416521f8285a02a1ec1dff37fe03ab",
                "sha256": "389d1701d7c7e4b2c4ac21c56c96bd23ebc28544db83fc0d81ca17b3645328be"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd416521f8285a02a1ec1dff37fe03ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2350396,
            "upload_time": "2024-03-08T12:20:37",
            "upload_time_iso_8601": "2024-03-08T12:20:37.911317Z",
            "url": "https://files.pythonhosted.org/packages/8d/31/5cfc22da1a4e192ccd415a11d86111667134c1071e4830e632b97e209527/acepython-0.0.14-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33ac0060117192436402a7a1776758405f999ed4c18e587533fd418c15c3d315",
                "md5": "1809d839e6555b1a609245b3e3991bfa",
                "sha256": "f5a885ac6a9aaf1abc03e5786d309815a9af290e06148d940922a29bdcec4698"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1809d839e6555b1a609245b3e3991bfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1087021,
            "upload_time": "2024-03-08T12:20:39",
            "upload_time_iso_8601": "2024-03-08T12:20:39.366371Z",
            "url": "https://files.pythonhosted.org/packages/33/ac/0060117192436402a7a1776758405f999ed4c18e587533fd418c15c3d315/acepython-0.0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12233d8909b437a6ec42a86f11a618b2aa48c103636126f3fc2889ff0a719399",
                "md5": "1e6deeadac32cccea931fc8143c6dfba",
                "sha256": "757ab5da7b55ed2eb249d1a3d3ca60d62608106d2cb469d915b6d178a2d4ffc7"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e6deeadac32cccea931fc8143c6dfba",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 767801,
            "upload_time": "2024-03-08T12:20:40",
            "upload_time_iso_8601": "2024-03-08T12:20:40.724989Z",
            "url": "https://files.pythonhosted.org/packages/12/23/3d8909b437a6ec42a86f11a618b2aa48c103636126f3fc2889ff0a719399/acepython-0.0.14-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e507c5f9db33709b1e12e7bf9d233496189c83983551d7c5284d95bf42ea4bf5",
                "md5": "93d7df867c59b378a89a2749ab3f4b58",
                "sha256": "47c2ab4fd080a85aefb48ab579cc21daaeac74d4e6c6ea0e01f879d1ae0511bd"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "93d7df867c59b378a89a2749ab3f4b58",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 435816,
            "upload_time": "2024-03-08T12:20:42",
            "upload_time_iso_8601": "2024-03-08T12:20:42.128709Z",
            "url": "https://files.pythonhosted.org/packages/e5/07/c5f9db33709b1e12e7bf9d233496189c83983551d7c5284d95bf42ea4bf5/acepython-0.0.14-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ff0cf365d6b379532a11b6fa067cdfeea770dbaaf53d73b6e8a0a53ad9eb63c",
                "md5": "78b3d6f857d969a031eac7c2508360d6",
                "sha256": "08af0226aace7b23e5c7969dea629ec70b10ba3706162724214e87d4b433b528"
            },
            "downloads": -1,
            "filename": "acepython-0.0.14.tar.gz",
            "has_sig": false,
            "md5_digest": "78b3d6f857d969a031eac7c2508360d6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 80077,
            "upload_time": "2024-03-08T12:20:43",
            "upload_time_iso_8601": "2024-03-08T12:20:43.937837Z",
            "url": "https://files.pythonhosted.org/packages/1f/f0/cf365d6b379532a11b6fa067cdfeea770dbaaf53d73b6e8a0a53ad9eb63c/acepython-0.0.14.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-08 12:20:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ucl-exoplanets",
    "github_project": "acepython",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "acepython"
}
        
Elapsed time: 0.22649s