{"id":13993820,"url":"https://github.com/astropy/astroquery","last_synced_at":"2025-05-13T20:13:08.897Z","repository":{"id":3715224,"uuid":"4787269","full_name":"astropy/astroquery","owner":"astropy","description":"Functions and classes to access online data resources. Maintainers: @keflavich and @bsipocz and @ceb8","archived":false,"fork":false,"pushed_at":"2025-05-10T01:07:41.000Z","size":77857,"stargazers_count":729,"open_issues_count":362,"forks_count":416,"subscribers_count":30,"default_branch":"main","last_synced_at":"2025-05-13T12:27:50.719Z","etag":null,"topics":["astronomy","astropy","astropy-affiliated","closember","python"],"latest_commit_sha":null,"homepage":"http://astroquery.readthedocs.org/en/latest/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/astropy.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE.rst","code_of_conduct":null,"threat_model":null,"audit":null,"citation":"CITATION","codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"numfocus","custom":"https://numfocus.org/donate-to-astropy"}},"created_at":"2012-06-25T20:52:07.000Z","updated_at":"2025-05-10T01:07:46.000Z","dependencies_parsed_at":"2023-07-06T14:46:22.722Z","dependency_job_id":"92489ed2-9587-4eef-be32-584c60b32707","html_url":"https://github.com/astropy/astroquery","commit_stats":{"total_commits":7873,"total_committers":212,"mean_commits":"37.136792452830186","dds":0.7556204750412803,"last_synced_commit":"8ae63fb00b3e48e21a61923a4318a8bae40759e0"},"previous_names":[],"tags_count":36,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astropy%2Fastroquery","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astropy%2Fastroquery/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astropy%2Fastroquery/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/astropy%2Fastroquery/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/astropy","download_url":"https://codeload.github.com/astropy/astroquery/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253981759,"owners_count":21994330,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["astronomy","astropy","astropy-affiliated","closember","python"],"created_at":"2024-08-09T14:02:34.338Z","updated_at":"2025-05-13T20:13:08.857Z","avatar_url":"https://github.com/astropy.png","language":"Python","readme":"`Documentation`_ | `View on Github`_ |  `Download Development ZIP`_\n\n.. image:: https://img.shields.io/pypi/v/astroquery.svg\n    :target: https://pypi.org/project/astroquery/#history\n    :alt: Latest PyPI version\n\n.. image:: https://readthedocs.org/projects/astroquery/badge/?version=latest\n    :target: https://astroquery.readthedocs.io/en/latest/?badge=latest\n    :alt: Documentation Status\n\n.. image:: https://github.com/astropy/astroquery/workflows/CI/badge.svg\n    :target: https://github.com/astropy/astroquery/actions?query=workflow%37ACI\n    :alt: Github Actions CI Status\n\n.. image:: https://codecov.io/gh/astropy/astroquery/branch/main/graph/badge.svg\n    :target: https://codecov.io/gh/astropy/astroquery\n    :alt: Coverage results\n\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.1160627.svg\n   :target: https://doi.org/10.5281/zenodo.1160627\n   :alt: Zenodo\n\n\n==================================\nAccessing Online Astronomical Data\n==================================\n\nAstroquery is an `astropy \u003chttps://www.astropy.org\u003e`_ affiliated package that\ncontains a collection of tools to access online Astronomical data. Each web\nservice has its own sub-package. For example, to interface with the `SIMBAD\nwebsite \u003chttps://simbad.cds.unistra.fr/simbad/\u003e`_, use the ``simbad`` sub-package:\n\n.. code-block:: python\n\n    \u003e\u003e\u003e from astroquery.simbad import Simbad\n    \u003e\u003e\u003e theta1c = Simbad.query_object('tet01 Ori C')\n    \u003e\u003e\u003e theta1c.pprint()\n       main_id          ra           dec      ... coo_wavelength     coo_bibcode       matched_id\n                       deg           deg      ...\n    ------------- ------------- ------------- ... -------------- ------------------- -------------\n    * tet01 Ori C 83.8186095697 -5.3897005033 ...              O 2020yCat.1350....0G * tet01 Ori C\n\nInstallation and Requirements\n-----------------------------\n\nAstroquery works with Python 3.9 or later.\nAs an `astropy`_ affiliate, astroquery requires `astropy`_ version 5.0 or later.\n\nThe latest version of astroquery can be pip installed (note the ``--pre`` for\npicking up released developer versions, and ``-U`` for upgrade):\n\n.. code-block:: bash\n\n    $ python -m pip install -U --pre astroquery\n\nTo install all the mandatory and optional dependencies add the ``[all]``\nidentifier to the pip command above (or use ``[docs]`` or ``[test]`` for the\ndependencies required to build the documentation or run the tests):\n\n.. code-block:: bash\n\n    $ python -m pip install -U --pre astroquery[all]\n\n\nTo install the 'bleeding edge' version:\n\n.. code-block:: bash\n\n   $ python -m pip install git+https://github.com/astropy/astroquery.git\n\nor cloned and installed from source:\n\n.. code-block:: bash\n\n    $ # If you have a github account:\n    $ git clone git@github.com:astropy/astroquery.git\n    $ # If you do not:\n    $ git clone https://github.com/astropy/astroquery.git\n    $ cd astroquery\n    $ python -m pip install .\n\nUsing astroquery\n----------------\n\nImporting astroquery on its own doesn't get you much: you need to import each\nsub-module specifically.  See the documentation for a list of `Available\nServices \u003chttps://astroquery.readthedocs.io/en/latest/#available-services\u003e`_.\nThe `API`_ shows the standard suite of tools common to most modules, e.g.\n`query_object` and `query_region`.\n\nTo report bugs and request features, please use the issue tracker.  Code\ncontributions are very welcome, though we encourage you to follow the `API`_\nand `contributing guidelines\n\u003chttps://github.com/astropy/astroquery/blob/main/CONTRIBUTING.rst\u003e`_ as much\nas possible.\n\nCiting Astroquery\n-----------------\n\nIf you use ``astroquery``, please cite the paper we published in `The\nAstronomical Journal \u003chttps://adsabs.harvard.edu/abs/2019AJ....157...98G\u003e`__.\n\nThe BibTeX entry is available from the package itself::\n\n  import astroquery\n  astroquery.__citation__\n\n\nIn addition you may also want to refer to specific versions of the\npackage. We create a separate Zenodo DOI for each version, they can be\nlooked up at the following `Zenodo page \u003chttps://doi.org/10.5281/zenodo.591669\u003e`__\n\n\nAdditional Links\n----------------\n\nMaintained by `Adam Ginsburg`_ and `Brigitta Sipocz \u003chttps://github.com/bsipocz\u003e`_\n\n\n.. _Download Development ZIP: https://github.com/astropy/astroquery/zipball/main\n.. _View on Github: https://github.com/astropy/astroquery/\n.. _Documentation: https://astroquery.readthedocs.io\n.. _Adam Ginsburg: https://www.adamgginsburg.com\n.. _API: https://astroquery.readthedocs.io/en/latest/api.html\n","funding_links":["https://github.com/sponsors/numfocus","https://numfocus.org/donate-to-astropy"],"categories":["Python","Repositories"],"sub_categories":["Other"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastropy%2Fastroquery","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fastropy%2Fastroquery","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastropy%2Fastroquery/lists"}