File: __init__.py

package info (click to toggle)
python-fitsio 1.1.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 884 kB
  • sloc: python: 5,350; ansic: 3,436; makefile: 8
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,
)