File: __init__.py

package info (click to toggle)
python-fitsio 1.3.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,020 kB
  • sloc: python: 7,963; ansic: 3,962; makefile: 10
file content (14 lines) | stat: -rw-r--r-- 249 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from .base import (  # noqa
    ANY_HDU,
    BINARY_TBL,
    ASCII_TBL,
    IMAGE_HDU,
    _hdu_type_map,
)
from .image import ImageHDU  # noqa
from .table import (  # noqa
    TableHDU,
    AsciiTableHDU,
    _table_npy2fits_form,
    _npy2fits,
)