Name | astroquery JSON |
Version |
0.4.9.post1
JSON |
| download |
home_page | None |
Summary | Functions and classes to access online astronomical data resources |
upload_time | 2025-01-25 03:47:35 |
maintainer | None |
docs_url | None |
author | The Astroquery Developers |
requires_python | >=3.9 |
license | BSD |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
`Documentation`_ | `View on Github`_ | `Download Development ZIP`_
.. image:: https://img.shields.io/pypi/v/astroquery.svg
:target: https://pypi.org/project/astroquery/#history
:alt: Latest PyPI version
.. image:: https://readthedocs.org/projects/astroquery/badge/?version=latest
:target: https://astroquery.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. image:: https://github.com/astropy/astroquery/workflows/CI/badge.svg
:target: https://github.com/astropy/astroquery/actions?query=workflow%37ACI
:alt: Github Actions CI Status
.. image:: https://codecov.io/gh/astropy/astroquery/branch/main/graph/badge.svg
:target: https://codecov.io/gh/astropy/astroquery
:alt: Coverage results
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.1160627.svg
:target: https://doi.org/10.5281/zenodo.1160627
:alt: Zenodo
==================================
Accessing Online Astronomical Data
==================================
Astroquery is an `astropy <https://www.astropy.org>`_ affiliated package that
contains a collection of tools to access online Astronomical data. Each web
service has its own sub-package. For example, to interface with the `SIMBAD
website <https://simbad.cds.unistra.fr/simbad/>`_, use the ``simbad`` sub-package:
.. code-block:: python
>>> from astroquery.simbad import Simbad
>>> theta1c = Simbad.query_object('tet01 Ori C')
>>> theta1c.pprint()
main_id ra dec ... coo_wavelength coo_bibcode matched_id
deg deg ...
------------- ------------- ------------- ... -------------- ------------------- -------------
* tet01 Ori C 83.8186095697 -5.3897005033 ... O 2020yCat.1350....0G * tet01 Ori C
Installation and Requirements
-----------------------------
Astroquery works with Python 3.9 or later.
As an `astropy`_ affiliate, astroquery requires `astropy`_ version 5.0 or later.
The latest version of astroquery can be pip installed (note the ``--pre`` for
picking up released developer versions, and ``-U`` for upgrade):
.. code-block:: bash
$ python -m pip install -U --pre astroquery
To install all the mandatory and optional dependencies add the ``[all]``
identifier to the pip command above (or use ``[docs]`` or ``[test]`` for the
dependencies required to build the documentation or run the tests):
.. code-block:: bash
$ python -m pip install -U --pre astroquery[all]
To install the 'bleeding edge' version:
.. code-block:: bash
$ python -m pip install git+https://github.com/astropy/astroquery.git
or cloned and installed from source:
.. code-block:: bash
$ # If you have a github account:
$ git clone git@github.com:astropy/astroquery.git
$ # If you do not:
$ git clone https://github.com/astropy/astroquery.git
$ cd astroquery
$ python -m pip install .
Using astroquery
----------------
Importing astroquery on its own doesn't get you much: you need to import each
sub-module specifically. See the documentation for a list of `Available
Services <https://astroquery.readthedocs.io/en/latest/#available-services>`_.
The `API`_ shows the standard suite of tools common to most modules, e.g.
`query_object` and `query_region`.
To report bugs and request features, please use the issue tracker. Code
contributions are very welcome, though we encourage you to follow the `API`_
and `contributing guidelines
<https://github.com/astropy/astroquery/blob/main/CONTRIBUTING.rst>`_ as much
as possible.
Citing Astroquery
-----------------
If you use ``astroquery``, please cite the paper we published in `The
Astronomical Journal <https://adsabs.harvard.edu/abs/2019AJ....157...98G>`__.
The BibTeX entry is available from the package itself::
import astroquery
astroquery.__citation__
In addition you may also want to refer to specific versions of the
package. We create a separate Zenodo DOI for each version, they can be
looked up at the following `Zenodo page <https://doi.org/10.5281/zenodo.591669>`__
Additional Links
----------------
Maintained by `Adam Ginsburg`_ and `Brigitta Sipocz <https://github.com/bsipocz>`_
.. _Download Development ZIP: https://github.com/astropy/astroquery/zipball/main
.. _View on Github: https://github.com/astropy/astroquery/
.. _Documentation: https://astroquery.readthedocs.io
.. _Adam Ginsburg: https://www.adamgginsburg.com
.. _API: https://astroquery.readthedocs.io/en/latest/api.html
Raw data
{
"_id": null,
"home_page": null,
"name": "astroquery",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": "The Astroquery Developers",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/64/4d/acfc42c29f82e7a0dd7901face8551a83e5055b75433ccc5c96dcbb395a3/astroquery-0.4.9.post1.tar.gz",
"platform": null,
"description": "`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 <https://www.astropy.org>`_ 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 <https://simbad.cds.unistra.fr/simbad/>`_, use the ``simbad`` sub-package:\n\n.. code-block:: python\n\n >>> from astroquery.simbad import Simbad\n >>> theta1c = Simbad.query_object('tet01 Ori C')\n >>> 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 <https://astroquery.readthedocs.io/en/latest/#available-services>`_.\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<https://github.com/astropy/astroquery/blob/main/CONTRIBUTING.rst>`_ as much\nas possible.\n\nCiting Astroquery\n-----------------\n\nIf you use ``astroquery``, please cite the paper we published in `The\nAstronomical Journal <https://adsabs.harvard.edu/abs/2019AJ....157...98G>`__.\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 <https://doi.org/10.5281/zenodo.591669>`__\n\n\nAdditional Links\n----------------\n\nMaintained by `Adam Ginsburg`_ and `Brigitta Sipocz <https://github.com/bsipocz>`_\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",
"bugtrack_url": null,
"license": "BSD",
"summary": "Functions and classes to access online astronomical data resources",
"version": "0.4.9.post1",
"project_urls": {
"Documentation": "https://astroquery.readthedocs.io",
"Source": "https://github.com/astropy/astroquery"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "fbe5ec215258bdc718a9a1ccfd44332af9824e9a4be60db96afce449dac81f79",
"md5": "75bb7e6da5fc12d4883c1040efed22ed",
"sha256": "d3e4af26bc57ce1822c1a89963f5096e89f3b8eb414341e0643cb235fee32f50"
},
"downloads": -1,
"filename": "astroquery-0.4.9.post1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "75bb7e6da5fc12d4883c1040efed22ed",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 11085630,
"upload_time": "2025-01-25T03:46:59",
"upload_time_iso_8601": "2025-01-25T03:46:59.740516Z",
"url": "https://files.pythonhosted.org/packages/fb/e5/ec215258bdc718a9a1ccfd44332af9824e9a4be60db96afce449dac81f79/astroquery-0.4.9.post1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "644dacfc42c29f82e7a0dd7901face8551a83e5055b75433ccc5c96dcbb395a3",
"md5": "081e00ed3b847e52330d1bc85a405ff5",
"sha256": "5c116bf19036d71e9321d4a049875af55349a4888e24844558fe9984b9f57197"
},
"downloads": -1,
"filename": "astroquery-0.4.9.post1.tar.gz",
"has_sig": false,
"md5_digest": "081e00ed3b847e52330d1bc85a405ff5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 12269009,
"upload_time": "2025-01-25T03:47:35",
"upload_time_iso_8601": "2025-01-25T03:47:35.219616Z",
"url": "https://files.pythonhosted.org/packages/64/4d/acfc42c29f82e7a0dd7901face8551a83e5055b75433ccc5c96dcbb395a3/astroquery-0.4.9.post1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-25 03:47:35",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "astropy",
"github_project": "astroquery",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "astroquery"
}