Source code for astroquery.heasarc

# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""
HEASARC
-------

The High Energy Astrophysics Science Archive Research Center (HEASARC)
is the primary archive for NASA's (and other space agencies') missions.
"""
from astropy import config as _config


[docs] class Conf(_config.ConfigNamespace): """ Configuration parameters for `astroquery.heasarc`. """ server = _config.ConfigItem( ['https://heasarc.gsfc.nasa.gov/db-perl/W3Browse/w3query.pl', 'https://www.isdc.unige.ch/browse/w3query.pl'], 'Name of the HEASARC server used to query available missions.') timeout = _config.ConfigItem( 30, 'Time limit for connecting to HEASARC server.') VO_URL = _config.ConfigItem( 'https://heasarc.gsfc.nasa.gov/xamin/vo', 'Base Url for VO services') TAR_URL = _config.ConfigItem( 'https://heasarc.gsfc.nasa.gov/xamin/TarServlet', 'URL for the xamin tar servlet' ) S3_BUCKET = _config.ConfigItem( 'nasa-heasarc', 'The name of the AWS S3 bucket that contain the HEASARC data' )
conf = Conf() from .core import Heasarc, HeasarcClass __all__ = ['Heasarc', 'HeasarcClass', 'Conf', 'conf', ]