register_reader

astropy.io.registry.register_reader(data_format, data_class, function, force=False)[source] [edit on github]

Register a reader function.

Parameters:
data_format : str

The data format identifier. This is the string that will be used to specify the data type when reading.

data_class : classobj

The class of the object that the reader produces.

function : function

The function to read in a data object.

force : bool, optional

Whether to override any existing function if already present. Default is False.