File: __init__.py

package info (click to toggle)
python-fitsio 1.2.5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,200 kB
  • sloc: ansic: 9,410; python: 5,802; makefile: 9
file content (9 lines) | stat: -rw-r--r-- 231 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
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,
)