yt-astro-analysis


Nameyt-astro-analysis JSON
Version 1.1.3 PyPI version JSON
download
home_page
Summaryyt astrophysical analysis modules extension
upload_time2023-10-11 12:48:11
maintainer
docs_urlNone
author
requires_python>=3.9
licenseBSD 3-Clause
keywords astronomy astrophysics visualization amr adaptivemeshrefinement
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # The yt Astro Analysis Extension


[![PyPI version](https://badge.fury.io/py/yt-astro-analysis.svg)](https://badge.fury.io/py/yt-astro-analysis)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/yt-astro-analysis/badges/version.svg)](https://anaconda.org/conda-forge/yt-astro-analysis)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1458961.svg)](https://doi.org/10.5281/zenodo.1458961)
[![Powered by NumFOCUS](https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A)](https://numfocus.org)

[![CircleCI](https://circleci.com/gh/yt-project/yt_astro_analysis.svg?style=svg)](https://circleci.com/gh/yt-project/yt_astro_analysis)
[![codecov](https://codecov.io/gh/yt-project/yt_astro_analysis/branch/main/graph/badge.svg)](https://codecov.io/gh/yt-project/yt_astro_analysis)
[![Documentation Status](https://readthedocs.org/projects/yt-astro-analysis/badge/?version=latest)](https://yt-astro-analysis.readthedocs.io/en/latest/?badge=latest)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/yt-project/yt_astro_analysis/main.svg)](https://results.pre-commit.ci/latest/github/yt-project/yt_astro_analysis/main)

[![yt-project](https://img.shields.io/static/v1?label="works%20with"&message="yt"&color="blueviolet")](https://yt-project.org)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json)](https://github.com/charliermarsh/ruff)

This is yt_astro_analysis, the [yt](https://github.com/yt-project/yt) extension
package for astrophysical analysis. This package contains
functionality for:

 * Halo finding and analysis
 * Lightcones
 * Planning cosmological simulations for making lightcones and lightrays
 * Exporting to the RADMC-3D radiation transport code
 * Creating PPV FITS cubes

This is primarily machinery that used to be in yt's
analysis_modules. These were made into a separate package to allow yt
to become less astro-specifc and to allow these modules to be
developed on their own schedule.

## Installation

Full installation documentation can also be found
[here](https://yt-astro-analysis.readthedocs.io/en/latest/Installation.html).

### Stable

Get the latest release via pip as
```shell
python -m pip install yt-astro-analysis
```

Or with conda, as
```shell
conda install -c conda-forge yt-astro-analysis
```

Note, the package name is spelled with hyphens (`yt-astro-analysis`)
when installing from pip or conda. With pip, the package name can be
spelled with either hyphens or underscores, but with conda it must
always be hyphens.

### From source

To build `yt_astro_analysis` from source, clone the git repository and install
as

```shell
git clone https://github.com/yt-project/yt_astro_analysis
cd yt_astro_analysis
python -m pip install -e .
```

### Installing with Rockstar support

In order to run the Rockstar halo finder from within yt_astro_analysis, it is
necessary to install yt_astro_analysis from source.
You will need to install `rockstar-galaxies` from either
[John Wise's
repository](https://bitbucket.org/jwise77/rockstar-galaxies) or [Peter
Behroozi's
repository](https://bitbucket.org/pbehroozi/rockstar-galaxies). To
install Rockstar, do the following:

```
git clone https://bitbucket.org/jwise77/rockstar-galaxies
cd rockstar-galaxies
make lib
```

Then, go into the yt_astro_analysis source directory and add a file called
"rockstar.cfg" with the path the Rockstar repo you just cloned.  Then, install
yt_astro_analysis.

```
cd yt_astro_analysis
echo <path_to_rockstar> > rockstar.cfg
python -m pip install -e .
```

Finally, you'll need to make sure that the location of
``librockstar-galaxies.so`` is in your LD_LIBRARY_PATH.

```
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<path_to_rockstar>
```

## Importing from yt_astro_analysis

For every module that was moved from yt's analysis_modules to yt_astro_analysis,
all imports can be changed simply by substituting ``yt.analysis_modules`` with
``yt.extensions.astro_analysis``.  For example, the following

```python
from yt.analysis_modules.ppv_cube.api import PPVCube
```
becomes
```python
from yt.extensions.astro_analysis.ppv_cube.api import PPVCube
```

## Contributing

We really want your contributions!  As an official
[yt-project](https://yt-project.org/) extension, everything in the
[yt Contributor Guide](https://github.com/yt-project/yt#contributing) applies
here.

If you'd rather make your own standalone package, we want to support that, too!
Please, consider making your package a
[yt extension](https://yt-project.org/extensions.html).

## Resources

As an extension of the [yt-project](https://yt-project.org/), the
[yt resources](https://github.com/yt-project/yt#resources) are available for help.

 * The latest documentation can be found at https://yt-astro-analysis.readthedocs.io/

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "yt-astro-analysis",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "astronomy astrophysics visualization amr adaptivemeshrefinement",
    "author": "",
    "author_email": "The yt project <yt-dev@python.org>",
    "download_url": "https://files.pythonhosted.org/packages/4e/24/0496654344e8d4a87e01c2b9213a4bf645ba41c8ca2547a3de7c394d9838/yt_astro_analysis-1.1.3.tar.gz",
    "platform": null,
    "description": "# The yt Astro Analysis Extension\n\n\n[![PyPI version](https://badge.fury.io/py/yt-astro-analysis.svg)](https://badge.fury.io/py/yt-astro-analysis)\n[![Anaconda-Server Badge](https://anaconda.org/conda-forge/yt-astro-analysis/badges/version.svg)](https://anaconda.org/conda-forge/yt-astro-analysis)\n[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1458961.svg)](https://doi.org/10.5281/zenodo.1458961)\n[![Powered by NumFOCUS](https://img.shields.io/badge/powered%20by-NumFOCUS-orange.svg?style=flat&colorA=E1523D&colorB=007D8A)](https://numfocus.org)\n\n[![CircleCI](https://circleci.com/gh/yt-project/yt_astro_analysis.svg?style=svg)](https://circleci.com/gh/yt-project/yt_astro_analysis)\n[![codecov](https://codecov.io/gh/yt-project/yt_astro_analysis/branch/main/graph/badge.svg)](https://codecov.io/gh/yt-project/yt_astro_analysis)\n[![Documentation Status](https://readthedocs.org/projects/yt-astro-analysis/badge/?version=latest)](https://yt-astro-analysis.readthedocs.io/en/latest/?badge=latest)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/yt-project/yt_astro_analysis/main.svg)](https://results.pre-commit.ci/latest/github/yt-project/yt_astro_analysis/main)\n\n[![yt-project](https://img.shields.io/static/v1?label=\"works%20with\"&message=\"yt\"&color=\"blueviolet\")](https://yt-project.org)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json)](https://github.com/charliermarsh/ruff)\n\nThis is yt_astro_analysis, the [yt](https://github.com/yt-project/yt) extension\npackage for astrophysical analysis. This package contains\nfunctionality for:\n\n * Halo finding and analysis\n * Lightcones\n * Planning cosmological simulations for making lightcones and lightrays\n * Exporting to the RADMC-3D radiation transport code\n * Creating PPV FITS cubes\n\nThis is primarily machinery that used to be in yt's\nanalysis_modules. These were made into a separate package to allow yt\nto become less astro-specifc and to allow these modules to be\ndeveloped on their own schedule.\n\n## Installation\n\nFull installation documentation can also be found\n[here](https://yt-astro-analysis.readthedocs.io/en/latest/Installation.html).\n\n### Stable\n\nGet the latest release via pip as\n```shell\npython -m pip install yt-astro-analysis\n```\n\nOr with conda, as\n```shell\nconda install -c conda-forge yt-astro-analysis\n```\n\nNote, the package name is spelled with hyphens (`yt-astro-analysis`)\nwhen installing from pip or conda. With pip, the package name can be\nspelled with either hyphens or underscores, but with conda it must\nalways be hyphens.\n\n### From source\n\nTo build `yt_astro_analysis` from source, clone the git repository and install\nas\n\n```shell\ngit clone https://github.com/yt-project/yt_astro_analysis\ncd yt_astro_analysis\npython -m pip install -e .\n```\n\n### Installing with Rockstar support\n\nIn order to run the Rockstar halo finder from within yt_astro_analysis, it is\nnecessary to install yt_astro_analysis from source.\nYou will need to install `rockstar-galaxies` from either\n[John Wise's\nrepository](https://bitbucket.org/jwise77/rockstar-galaxies) or [Peter\nBehroozi's\nrepository](https://bitbucket.org/pbehroozi/rockstar-galaxies). To\ninstall Rockstar, do the following:\n\n```\ngit clone https://bitbucket.org/jwise77/rockstar-galaxies\ncd rockstar-galaxies\nmake lib\n```\n\nThen, go into the yt_astro_analysis source directory and add a file called\n\"rockstar.cfg\" with the path the Rockstar repo you just cloned.  Then, install\nyt_astro_analysis.\n\n```\ncd yt_astro_analysis\necho <path_to_rockstar> > rockstar.cfg\npython -m pip install -e .\n```\n\nFinally, you'll need to make sure that the location of\n``librockstar-galaxies.so`` is in your LD_LIBRARY_PATH.\n\n```\nexport LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<path_to_rockstar>\n```\n\n## Importing from yt_astro_analysis\n\nFor every module that was moved from yt's analysis_modules to yt_astro_analysis,\nall imports can be changed simply by substituting ``yt.analysis_modules`` with\n``yt.extensions.astro_analysis``.  For example, the following\n\n```python\nfrom yt.analysis_modules.ppv_cube.api import PPVCube\n```\nbecomes\n```python\nfrom yt.extensions.astro_analysis.ppv_cube.api import PPVCube\n```\n\n## Contributing\n\nWe really want your contributions!  As an official\n[yt-project](https://yt-project.org/) extension, everything in the\n[yt Contributor Guide](https://github.com/yt-project/yt#contributing) applies\nhere.\n\nIf you'd rather make your own standalone package, we want to support that, too!\nPlease, consider making your package a\n[yt extension](https://yt-project.org/extensions.html).\n\n## Resources\n\nAs an extension of the [yt-project](https://yt-project.org/), the\n[yt resources](https://github.com/yt-project/yt#resources) are available for help.\n\n * The latest documentation can be found at https://yt-astro-analysis.readthedocs.io/\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause",
    "summary": "yt astrophysical analysis modules extension",
    "version": "1.1.3",
    "project_urls": {
        "Documentation": "https://yt-astro-analysis.readthedocs.io/",
        "Homepage": "https://yt-project.org/",
        "Source": "https://github.com/yt-project/yt_astro_analysis/",
        "Tracker": "https://github.com/yt-project/yt_astro_analysis/issues"
    },
    "split_keywords": [
        "astronomy",
        "astrophysics",
        "visualization",
        "amr",
        "adaptivemeshrefinement"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0859138ece5a8d7dbe62a0c164f37694de8767e2c7db975f9c03277b1d27f26f",
                "md5": "5a56a2af849c0c591d548c3074b7502e",
                "sha256": "386c50070ac8b351f021b618ffee59a169f57d7b2ea05993a00ccbb060ead0eb"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a56a2af849c0c591d548c3074b7502e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 260289,
            "upload_time": "2023-10-11T12:47:51",
            "upload_time_iso_8601": "2023-10-11T12:47:51.331342Z",
            "url": "https://files.pythonhosted.org/packages/08/59/138ece5a8d7dbe62a0c164f37694de8767e2c7db975f9c03277b1d27f26f/yt_astro_analysis-1.1.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eacf35e895a5aca9ca9bd0576a915734f7a4a46fead63b02cec22cce46019c93",
                "md5": "d8f21885d1031ddd98deb6f009d0f87e",
                "sha256": "959901960bb9917eb3fda0c53deca80947ce76da46797e0bdff901ae7b17a6ef"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8f21885d1031ddd98deb6f009d0f87e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 435211,
            "upload_time": "2023-10-11T12:47:53",
            "upload_time_iso_8601": "2023-10-11T12:47:53.108748Z",
            "url": "https://files.pythonhosted.org/packages/ea/cf/35e895a5aca9ca9bd0576a915734f7a4a46fead63b02cec22cce46019c93/yt_astro_analysis-1.1.3-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a20b663d8f6fd826eb1d7bc2c8b8389e71b575ebec73780083fefaf758c6518",
                "md5": "4faf69f033ae42450b87025dcdffbaeb",
                "sha256": "f8112f0f103610f299a04d47dc5c9373d79165f18260eab982d3f010054df7fe"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4faf69f033ae42450b87025dcdffbaeb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 263243,
            "upload_time": "2023-10-11T12:47:55",
            "upload_time_iso_8601": "2023-10-11T12:47:55.117233Z",
            "url": "https://files.pythonhosted.org/packages/9a/20/b663d8f6fd826eb1d7bc2c8b8389e71b575ebec73780083fefaf758c6518/yt_astro_analysis-1.1.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6cef1155fec194691b7bcc5c3d1c3258fded87cd017b49c76d352c7133dace7",
                "md5": "2495e0c7983faf23383e6d41d7cf0849",
                "sha256": "fede87036f44b59147fc8c9ef09f041a9dec35a0faf2a2ed54b98ae6aa54fd13"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2495e0c7983faf23383e6d41d7cf0849",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 260149,
            "upload_time": "2023-10-11T12:47:56",
            "upload_time_iso_8601": "2023-10-11T12:47:56.580442Z",
            "url": "https://files.pythonhosted.org/packages/d6/ce/f1155fec194691b7bcc5c3d1c3258fded87cd017b49c76d352c7133dace7/yt_astro_analysis-1.1.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29a43e131848ea137e0498caba345eec13cbc1970f830205f4c238e16f297948",
                "md5": "016c7a8ed531581b79d37b7b28d68404",
                "sha256": "0afa188e905b770be3455989b47bd1dcf2b91893faf056c5c2dc8cbb10f41ec6"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "016c7a8ed531581b79d37b7b28d68404",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 444254,
            "upload_time": "2023-10-11T12:47:58",
            "upload_time_iso_8601": "2023-10-11T12:47:58.006121Z",
            "url": "https://files.pythonhosted.org/packages/29/a4/3e131848ea137e0498caba345eec13cbc1970f830205f4c238e16f297948/yt_astro_analysis-1.1.3-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f2a21685c4c230929692a8c98aa15453bc7c573e04f4ef5c0a07186103164b2",
                "md5": "2c866f74b0204c86a663de7b2140225d",
                "sha256": "83d2f90be31ce891de1a44b7bec8f904c5285e05e6d7c61fc2256a4efb8dfb30"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c866f74b0204c86a663de7b2140225d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 263291,
            "upload_time": "2023-10-11T12:47:59",
            "upload_time_iso_8601": "2023-10-11T12:47:59.355507Z",
            "url": "https://files.pythonhosted.org/packages/8f/2a/21685c4c230929692a8c98aa15453bc7c573e04f4ef5c0a07186103164b2/yt_astro_analysis-1.1.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9ea33132a4f738e629c2c6d51c4855f7c3c7b55a1e125d2ba13e39c538101ec",
                "md5": "bf9c0e6667c4ef0a89cfaf578eab5944",
                "sha256": "f059e893b74444f812f4d12c2f72d08a0254b7a601ee9b3845da069bec6933b5"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf9c0e6667c4ef0a89cfaf578eab5944",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 260433,
            "upload_time": "2023-10-11T12:48:01",
            "upload_time_iso_8601": "2023-10-11T12:48:01.001806Z",
            "url": "https://files.pythonhosted.org/packages/c9/ea/33132a4f738e629c2c6d51c4855f7c3c7b55a1e125d2ba13e39c538101ec/yt_astro_analysis-1.1.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60c611338d4019f51beef02462a76f339162fa1821ce53e63368ae911d4ef553",
                "md5": "be242800d7bd6755e62d0f1c88e3f895",
                "sha256": "dbb5eb01a488008006af995a04f89cb57b84c8058fb9988d94d124b87405ee5d"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be242800d7bd6755e62d0f1c88e3f895",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 450714,
            "upload_time": "2023-10-11T12:48:02",
            "upload_time_iso_8601": "2023-10-11T12:48:02.679369Z",
            "url": "https://files.pythonhosted.org/packages/60/c6/11338d4019f51beef02462a76f339162fa1821ce53e63368ae911d4ef553/yt_astro_analysis-1.1.3-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6218bafe4eb72cdd335712008cd254b5a0b5b349a3116423e110eed3ebf1ba4",
                "md5": "4f359f0fb25b48f8eeb31f1ef739f65c",
                "sha256": "f4ad713917d0e9de2a0dea14c7df158a87db8b6651ad4528a34ee82f78cd2ca1"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4f359f0fb25b48f8eeb31f1ef739f65c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 263297,
            "upload_time": "2023-10-11T12:48:04",
            "upload_time_iso_8601": "2023-10-11T12:48:04.481368Z",
            "url": "https://files.pythonhosted.org/packages/e6/21/8bafe4eb72cdd335712008cd254b5a0b5b349a3116423e110eed3ebf1ba4/yt_astro_analysis-1.1.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60476bbfca1094b0169ec9652a5329d53ab1d065afd258fbcc074aab0bf4e602",
                "md5": "7b2e31733dee51c247e55ff2b4adf395",
                "sha256": "48620cb8eed7321de50af516db334ef2e903b8d41552f4a88b547401233491ea"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b2e31733dee51c247e55ff2b4adf395",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 260275,
            "upload_time": "2023-10-11T12:48:06",
            "upload_time_iso_8601": "2023-10-11T12:48:06.084973Z",
            "url": "https://files.pythonhosted.org/packages/60/47/6bbfca1094b0169ec9652a5329d53ab1d065afd258fbcc074aab0bf4e602/yt_astro_analysis-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93c51ad51a8d637c00b3497f2641bd191ed089237e167ccaa5594e9b084a66d3",
                "md5": "13c4b769de8d885fcf280609f953666f",
                "sha256": "0795f415f0ac9ade4885260380607f1c6cc04364ff80d5b66f9c140b256db0fe"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13c4b769de8d885fcf280609f953666f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 434823,
            "upload_time": "2023-10-11T12:48:07",
            "upload_time_iso_8601": "2023-10-11T12:48:07.493140Z",
            "url": "https://files.pythonhosted.org/packages/93/c5/1ad51a8d637c00b3497f2641bd191ed089237e167ccaa5594e9b084a66d3/yt_astro_analysis-1.1.3-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5998ac24054b2ace0f15a4da646ba63eea8344ad15678145ebc34ef6aedbe874",
                "md5": "a75eadbc90378e483105759f997cbdfc",
                "sha256": "52366a82c4352532b2278eb36637fccc37b65655f7b0574135b4398a8fd3b8dd"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a75eadbc90378e483105759f997cbdfc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 263236,
            "upload_time": "2023-10-11T12:48:09",
            "upload_time_iso_8601": "2023-10-11T12:48:09.184483Z",
            "url": "https://files.pythonhosted.org/packages/59/98/ac24054b2ace0f15a4da646ba63eea8344ad15678145ebc34ef6aedbe874/yt_astro_analysis-1.1.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e240496654344e8d4a87e01c2b9213a4bf645ba41c8ca2547a3de7c394d9838",
                "md5": "6106e9d37dac8ec502d687a6f247f95d",
                "sha256": "f156e7026e98a4422f1e7eb81ff1a1a993207dda63b48b04234c60686ed363b9"
            },
            "downloads": -1,
            "filename": "yt_astro_analysis-1.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "6106e9d37dac8ec502d687a6f247f95d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 1623344,
            "upload_time": "2023-10-11T12:48:11",
            "upload_time_iso_8601": "2023-10-11T12:48:11.079527Z",
            "url": "https://files.pythonhosted.org/packages/4e/24/0496654344e8d4a87e01c2b9213a4bf645ba41c8ca2547a3de7c394d9838/yt_astro_analysis-1.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-11 12:48:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "yt-project",
    "github_project": "yt_astro_analysis",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "circle": true,
    "lcname": "yt-astro-analysis"
}
        
Elapsed time: 0.13034s