1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
.. _io_registry:
************************************
I/O Registry (`astropy.io.registry`)
************************************
.. note::
The I/O registry is only meant to be used directly by users who want
to define their own custom readers/writers. Users who want to find
out more about what built-in formats are supported by
:class:`~astropy.table.Table` by default should see
:ref:`table_io`. No built-in formats are currently defined for
:class:`~astropy.nddata.NDData`, but this will be added in
future).
Introduction
============
The I/O registry is a sub-module used to define the readers/writers available
for the :class:`~astropy.table.Table` and
:class:`~astropy.nddata.NDData` classes.
Using `astropy.io.registry`
===========================
This section demonstrates how to create a custom reader/writer. A reader is
written as a function that can take any arguments except ``format`` (which is
needed when manually specifying the format - see below) and returns an
instance of the :class:`~astropy.table.Table` or
:class:`~astropy.nddata.NDData` classes (or sub-classes). For demonstration,
let's assume that we are trying to write a reader/writer for the
:class:`~astropy.table.Table` class::
from astropy.table import Table
def my_table_reader(filename, some_option=1):
# Read in the table by any means necessary
return table # should be an instance of Table
Such a function can then be registered with the I/O registry::
from astropy.io import registry
registry.register_reader('my-table-format', Table, my_table_reader)
where the first argument is the name of the format, the second argument is the
class that the function returns an instance for, and the third argument is the
reader itself.
We can then read in a table with::
d = Table.read('my_table_file.mtf', format='my-table-format')
In practice, it would be nice to have the ``read`` method automatically
identify that this file is in the ``my-table-format`` format, so we can
construct a function that can recognize these files, which we refer to here as
an *identifier* function.
An identifier function should take a first argument that is a string
which indicates whether the identifier is being called from ``read`` or
``write``, and should then accept arbitrary number of positional and keyword
arguments via ``*args`` and ``**kwargs``, which are the arguments passed to
the ``read`` method.
In the above case, we can write a simplistic function that only looks at
filenames (but in practice, this function could even look at the first few
bytes of the file for example). The only requirement for the identifier
function is that it return a boolean indicating whether the input matches that
expected for the format. In our example, we want to automatically recognize
files with filenames ending in ``.mtf`` as being in the ``my-table-format``
format::
import os
from astropy.extern import six
def identify_mtf(origin, *args, **kwargs):
return (isinstance(args[0], six.string_types) and
os.path.splitext(args[0].lower())[1] == '.mtf')
.. note:: Identifier functions should be prepared for arbitrary input - in
particular, the first argument may not be a filename or file
object, so it should not assume that this is the case.
We then register this identifier function, similarly to the reader function::
registry.register_identifier('my-table-format', Table, identify_mtf)
Having registered this function, we can then do::
t = Table.read('catalog.mtf')
If multiple formats match the current input, then an exception is
raised, and similarly if no format matches the current input. In that
case, the format should be explicitly given with the ``format=``
keyword argument.
It is also possible to create custom writers. To go with our custom reader
above, we can write a custom writer::
def my_table_writer(table, filename, clobber=False):
... # Write the table out to a file
Writer functons should take a dataset object (either an instance of the
:class:`~astropy.table.Table` or :class:`~astropy.nddata.NDData`
classes or sub-classes), and any number of subsequent positional and keyword
arguments - although as for the reader, the ``format`` keyword argument cannot
be used.
We then register the writer::
registry.register_writer('my-custom-format', Table, my_table_writer)
We can write the table out to a file::
t.write('catalog_new.mtf', format='my-table-format')
Since we have already registered the identifier function, we can also simply
do::
t.write('catalog_new.mtf')
Reference/API
=============
.. automodapi:: astropy.io.registry
|