Source code for astroquery.simbad
# Licensed under a 3-clause BSD style license - see LICENSE.rst
"""
SIMBAD Query Tool
=================
The SIMBAD query tool creates a `script query
<http://simbad.u-strasbg.fr/simbad/sim-fscript>`__ that returns VOtable XML
data that is then parsed into a SimbadResult object. This object then
parses the data and returns a table parsed with `astropy.io.votable.parse`.
"""
from astropy import config as _config
[docs]class Conf(_config.ConfigNamespace):
"""
Configuration parameters for `astroquery.simbad`.
"""
server = _config.ConfigItem(
['simbad.u-strasbg.fr', 'simbad.harvard.edu'],
'Name of the SIMBAD mirror to use.')
timeout = _config.ConfigItem(
60,
'Time limit for connecting to Simbad server.')
row_limit = _config.ConfigItem(
# O defaults to the maximum limit
0,
'Maximum number of rows that will be fetched from the result.')
conf = Conf()
from .core import Simbad, SimbadClass, SimbadBaseQuery
__all__ = ['Simbad', 'SimbadClass',
'SimbadBaseQuery',
'Conf', 'conf',
]