Source code for astroquery.nrao
# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""
Module to query the NRAO Data Archive for observation summaries.
"""
from astropy import config as _config
[docs]class Conf(_config.ConfigNamespace):
"""
Configuration parameters for `astroquery.nrao`.
"""
server = _config.ConfigItem(
['https://archive.nrao.edu/archive/ArchiveQuery'],
'Name of the NRAO mirror to use.')
timeout = _config.ConfigItem(
60,
'Time limit for connecting to NRAO server.')
username = _config.ConfigItem(
"",
'Optional default username for ALMA archive.')
conf = Conf()
from .core import Nrao, NraoClass
__all__ = ['Nrao', 'NraoClass',
'Conf', 'conf',
]