parse_capabilities¶
- pyvo.io.vosi.endpoint.parse_capabilities(source, *, pedantic=None, filename=None, _debug_python_based_parser=False)[source]¶
- Parses a capabilities xml file (or file-like object), and returns a - CapabilitiesFileobject.- Parameters:
- sourcestr or readable file-like object
- Path or file object containing a capabilities xml file. 
- pedanticbool, optional
- When - True, raise an error when the file violates the spec, otherwise issue a warning. Warnings may be controlled using the standard Python mechanisms. See the- warningsmodule in the Python standard library for more information. Defaults to False.
- filenamestr, optional
- A filename, URL or other identifier to use in error messages. If filename is None and source is a string (i.e. a path), then source will be used as a filename for error messages. Therefore, filename is only required when source is a file-like object. 
- _debug_python_based_parserbool, optional
- If - True, use the Python-based parser. This is useful for debugging purposes. Defaults to False.
 
- Returns:
- capabilities_fileCapabilitiesFileobject
 
- capabilities_file
 - See also - pyvo.io.vosi.exceptions
- The exceptions this function may raise.