/fits

FITS file reader for Python

Primary LanguagePythonMIT LicenseMIT

fits -- FITS file reader for Python

Load a FITS file into memory-mapped numpy arrays.

import fits

with open('myfile.fits', 'rb') as fp:
    hdus = fits.load(fp)