xml_readlines#

astropy.utils.xml.iterparser.xml_readlines(source)[source]#

Get the lines from a given XML file. Correctly determines the encoding and always returns unicode.

Parameters:
sourcepath-like object, file-like (readable), or callable()

Handle that contains the data or function that reads it. If a function or callable object, it must directly read from a stream. Non-callable objects must define a read method.

Returns:
lineslist of unicode