astropy.vo.client.vos_catalog.call_vo_service(service_type, catalog_db=None, pedantic=None, verbose=True, cache=True, kwargs={})[source] [edit on github]¶
Makes a generic VO service call.
Parameters:
service_type : str
Name of the type of service, e.g., ‘conesearch_good’.
Used in error messages and to select a catalog database
if catalog_db is not provided.
catalog_db
May be one of the following, in order from easiest to
use to most control:
None: A database of service_type catalogs is
downloaded from astropy.vo.Conf.vos_baseurl. The
first catalog in the database to successfully return a
result is used.
When True, raise an error when the file violates the spec,
otherwise issue a warning. Warnings may be controlled using
warnings module. When not provided, uses the
configuration setting astropy.io.votable.Conf.pedantic, which
defaults to False.
verbose : bool
Verbose output.
cache : bool
Use caching for VO Service database. Access to actual VO
websites referenced by the database still needs internet
connection.
kwargs : dictionary
Keyword arguments to pass to the catalog service.
No checking is done that the arguments are accepted by
the service, etc.