| |
|
|
| from astropy.io import registry |
|
|
| from .info import serialize_method_as |
|
|
| __doctest_skip__ = ['TableRead', 'TableWrite'] |
|
|
|
|
| class TableRead(registry.UnifiedReadWrite): |
| """Read and parse a data table and return as a Table. |
| |
| This function provides the Table interface to the astropy unified I/O |
| layer. This allows easily reading a file in many supported data formats |
| using syntax such as:: |
| |
| >>> from astropy.table import Table |
| >>> dat = Table.read('table.dat', format='ascii') |
| >>> events = Table.read('events.fits', format='fits') |
| |
| Get help on the available readers for ``Table`` using the``help()`` method:: |
| |
| >>> Table.read.help() # Get help reading Table and list supported formats |
| >>> Table.read.help('fits') # Get detailed help on Table FITS reader |
| >>> Table.read.list_formats() # Print list of available formats |
| |
| See also: http://docs.astropy.org/en/stable/io/unified.html |
| |
| Parameters |
| ---------- |
| *args : tuple, optional |
| Positional arguments passed through to data reader. If supplied the |
| first argument is typically the input filename. |
| format : str |
| File format specifier. |
| **kwargs : dict, optional |
| Keyword arguments passed through to data reader. |
| |
| Returns |
| ------- |
| out : `Table` |
| Table corresponding to file contents |
| |
| Notes |
| ----- |
| """ |
| def __init__(self, instance, cls): |
| super().__init__(instance, cls, 'read') |
|
|
| def __call__(self, *args, **kwargs): |
| cls = self._cls |
| out = registry.read(cls, *args, **kwargs) |
|
|
| |
| |
| |
| |
| |
| if cls is not out.__class__: |
| try: |
| out = cls(out, copy=False) |
| except Exception: |
| raise TypeError('could not convert reader output to {0} ' |
| 'class.'.format(cls.__name__)) |
| return out |
|
|
|
|
| class TableWrite(registry.UnifiedReadWrite): |
| """ |
| Write this Table object out in the specified format. |
| |
| This function provides the Table interface to the astropy unified I/O |
| layer. This allows easily writing a file in many supported data formats |
| using syntax such as:: |
| |
| >>> from astropy.table import Table |
| >>> dat = Table([[1, 2], [3, 4]], names=('a', 'b')) |
| >>> dat.write('table.dat', format='ascii') |
| |
| Get help on the available writers for ``Table`` using the``help()`` method:: |
| |
| >>> Table.write.help() # Get help writing Table and list supported formats |
| >>> Table.write.help('fits') # Get detailed help on Table FITS writer |
| >>> Table.write.list_formats() # Print list of available formats |
| |
| The ``serialize_method`` argument is explained in the section on |
| `Table serialization methods |
| <http://docs.astropy.org/en/latest/io/unified.html#table-serialization-methods>`_. |
| |
| See also: http://docs.astropy.org/en/stable/io/unified.html |
| |
| Parameters |
| ---------- |
| *args : tuple, optional |
| Positional arguments passed through to data writer. If supplied the |
| first argument is the output filename. |
| format : str |
| File format specifier. |
| serialize_method : str, dict, optional |
| Serialization method specifier for columns. |
| **kwargs : dict, optional |
| Keyword arguments passed through to data writer. |
| |
| Notes |
| ----- |
| """ |
| def __init__(self, instance, cls): |
| super().__init__(instance, cls, 'write') |
|
|
| def __call__(self, *args, **kwargs): |
| serialize_method = kwargs.pop('serialize_method', None) |
| instance = self._instance |
| with serialize_method_as(instance, serialize_method): |
| registry.write(instance, *args, **kwargs) |
|
|