{ "info": { "author": "Erin Scott Sheldon", "author_email": "erin.sheldon@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License (GPL)", "Topic :: Scientific/Engineering :: Astronomy" ], "description": "A python library to read from and write to FITS files.\n\n[![Build Status (master)](https://travis-ci.org/esheldon/fitsio.svg?branch=master)](https://travis-ci.org/esheldon/fitsio)\n\n\n## Description\n\nThis is a python extension written in c and python. Data are read into\nnumerical python arrays.\n\nA version of cfitsio is bundled with this package, there is no need to install\nyour own, nor will this conflict with a version you have installed.\n\n\n## Some Features\n\n- Read from and write to image, binary, and ascii table extensions.\n- Read arbitrary subsets of table columns and rows without loading all the data\n to memory.\n- Read image subsets without reading the whole image. Write subsets to existing images.\n- Write and read variable length table columns.\n- Read images and tables using slice notation similar to numpy arrays. This is like a more\n powerful memmap, since it is column-aware for tables.\n- Append rows to an existing table. Delete row sets and row ranges. Resize tables,\n or insert rows.\n- Query the columns and rows in a table.\n- Read and write header keywords.\n- Read and write images in tile-compressed format (RICE,GZIP,PLIO,HCOMPRESS).\n- Read/write gzip files directly. Read unix compress (.Z,.zip) and bzip2 (.bz2) files.\n- TDIM information is used to return array columns in the correct shape.\n- Write and read string table columns, including array columns of arbitrary\n shape.\n- Read and write complex, bool (logical), unsigned integer, signed bytes types.\n- Write checksums into the header and verify them.\n- Insert new columns into tables in-place.\n- Iterate over rows in a table. Data are buffered for efficiency.\n- python 3 support, including python 3 strings\n\n\n## Examples\n\n```python\nimport fitsio\nfrom fitsio import FITS,FITSHDR\n\n# Often you just want to quickly read or write data without bothering to\n# create a FITS object. In that case, you can use the read and write\n# convienience functions.\n\n# read all data from the first hdu that has data\nfilename='data.fits'\ndata = fitsio.read(filename)\n\n# read a subset of rows and columns from a table\ndata = fitsio.read(filename, rows=[35,1001], columns=['x','y'], ext=2)\n\n# read the header\nh = fitsio.read_header(filename)\n# read both data and header\ndata,h = fitsio.read(filename, header=True)\n\n# open the file and write a new binary table extension with the data\n# array, which is a numpy array with fields, or \"recarray\".\n\ndata = np.zeros(10, dtype=[('id','i8'),('ra','f8'),('dec','f8')])\nfitsio.write(filename, data)\n\n# Write an image to the same file. By default a new extension is\n# added to the file. use clobber=True to overwrite an existing file\n# instead. To append rows to an existing table, see below.\n\nfitsio.write(filename, image)\n\n# NOTE when reading row subsets, the data must still be read from disk.\n# This is most efficient if the data are read in the order they appear in\n# the file. For this reason, the rows are always returned in row-sorted\n# order.\n\n#\n# the FITS class gives the you the ability to explore the data, and gives\n# more control\n#\n\n# open a FITS file for reading and explore\nfits=fitsio.FITS('data.fits')\n\n# see what is in here; the FITS object prints itself\nprint(fits)\n\nfile: data.fits\nmode: READONLY\nextnum hdutype hduname\n0 IMAGE_HDU\n1 BINARY_TBL mytable\n\n# at the python or ipython prompt the fits object will\n# print itself\n>>> fits\nfile: data.fits\n... etc\n\n# explore the extensions, either by extension number or\n# extension name if available\n>>> fits[0]\n\nfile: data.fits\nextension: 0\ntype: IMAGE_HDU\nimage info:\n data type: f8\n dims: [4096,2048]\n\n# by name; can also use fits[1]\n>>> fits['mytable']\n\nfile: data.fits\nextension: 1\ntype: BINARY_TBL\nextname: mytable\nrows: 4328342\ncolumn info:\n i1scalar u1\n f f4\n fvec f4 array[2]\n darr f8 array[3,2]\n dvarr f8 varray[10]\n s S5\n svec S6 array[3]\n svar S0 vstring[8]\n sarr S2 array[4,3]\n\n# See bottom for how to get more information for an extension\n\n# [-1] to refers the last HDU\n>>> fits[-1]\n...\n\n# if there are multiple HDUs with the same name, and an EXTVER\n# is set, you can use it. Here extver=2\n# fits['mytable',2]\n\n\n# read the image from extension zero\nimg = fits[0].read()\nimg = fits[0][:,:]\n\n# read a subset of the image without reading the whole image\nimg = fits[0][25:35, 45:55]\n\n\n# read all rows and columns from a binary table extension\ndata = fits[1].read()\ndata = fits['mytable'].read()\ndata = fits[1][:]\n\n# read a subset of rows and columns. By default uses a case-insensitive\n# match. The result retains the names with original case. If columns is a\n# sequence, a numpy array with fields, or recarray is returned\ndata = fits[1].read(rows=[1,5], columns=['index','x','y'])\n\n# Similar but using slice notation\n# row subsets\ndata = fits[1][10:20]\ndata = fits[1][10:20:2]\ndata = fits[1][[1,5,18]]\n\n# all rows of column 'x'\ndata = fits[1]['x'][:]\n\n# Read a few columns at once. This is more efficient than separate read for\n# each column\ndata = fits[1]['x','y'][:]\n\n# General column and row subsets. As noted above, the data are returned\n# in row sorted order for efficiency reasons.\ncolumns=['index','x','y']\nrows=[1,5]\ndata = fits[1][columns][rows]\n\n# iterate over rows in a table hdu\n# faster if we buffer some rows, let's buffer 1000 at a time\nfits=fitsio.FITS(filename,iter_row_buffer=1000)\nfor row in fits[1]:\n print(row)\n\n# iterate over HDUs in a FITS object\nfor hdu in fits:\n data=hdu.read()\n\n# Note dvarr shows type varray[10] and svar shows type vstring[8]. These\n# are variable length columns and the number specified is the maximum size.\n# By default they are read into fixed-length fields in the output array.\n# You can over-ride this by constructing the FITS object with the vstorage\n# keyword or specifying vstorage when reading. Sending vstorage='object'\n# will store the data in variable size object fields to save memory; the\n# default is vstorage='fixed'. Object fields can also be written out to a\n# new FITS file as variable length to save disk space.\n\nfits = fitsio.FITS(filename,vstorage='object')\n# OR\ndata = fits[1].read(vstorage='object')\nprint(data['dvarr'].dtype)\n dtype('object')\n\n\n# you can grab a FITS HDU object to simplify notation\nhdu1 = fits[1]\ndata = hdu1['x','y'][35:50]\n\n# get rows that satisfy the input expression. See \"Row Filtering\n# Specification\" in the cfitsio manual (note no temporary table is\n# created in this case, contrary to the cfitsio docs)\nw=fits[1].where(\"x > 0.25 && y < 35.0\")\ndata = fits[1][w]\n\n# read the header\nh = fits[0].read_header()\nprint(h['BITPIX'])\n -64\n\nfits.close()\n\n\n# now write some data\nfits = FITS('test.fits','rw')\n\n\n# create a rec array. Note vstr\n# is a variable length string\nnrows=35\ndata = np.zeros(nrows, dtype=[('index','i4'),('vstr','O'),('x','f8'),\n ('arr','f4',(3,4))])\ndata['index'] = np.arange(nrows,dtype='i4')\ndata['x'] = np.random.random(nrows)\ndata['vstr'] = [str(i) for i in xrange(nrows)]\ndata['arr'] = np.arange(nrows*3*4,dtype='f4').reshape(nrows,3,4)\n\n# create a new table extension and write the data\nfits.write(data)\n\n# can also be a list of ordinary arrays if you send the names\narray_list=[xarray,yarray,namearray]\nnames=['x','y','name']\nfits.write(array_list, names=names)\n\n# similarly a dict of arrays\nfits.write(dict_of_arrays)\nfits.write(dict_of_arrays, names=names) # control name order\n\n# append more rows to the table. The fields in data2 should match columns\n# in the table. missing columns will be filled with zeros\nfits[-1].append(data2)\n\n# insert a new column into a table\nfits[-1].insert_column('newcol', data)\n\n# insert with a specific colnum\nfits[-1].insert_column('newcol', data, colnum=2)\n\n# overwrite rows\nfits[-1].write(data)\n\n# overwrite starting at a particular row. The table will grow if needed\nfits[-1].write(data, firstrow=350)\n\n\n# create an image\nimg=np.arange(2*3,dtype='i4').reshape(2,3)\n\n# write an image in a new HDU (if this is a new file, the primary HDU)\nfits.write(img)\n\n# write an image with rice compression\nfits.write(img, compress='rice')\n\n# overwrite the image\nfits[ext].write(img2)\n\n# write into an existing image, starting at the location [300,400]\n# the image will be expanded if needed\nfits[ext].write(img3, start=[300,400])\n\n# change the shape of the image on disk\nfits[ext].reshape([250,100])\n\n# add checksums for the data\nfits[-1].write_checksum()\n\n# can later verify data integridy\nfits[-1].verify_checksum()\n\n# you can also write a header at the same time. The header can be\n# - a simple dict (no comments)\n# - a list of dicts with 'name','value','comment' fields\n# - a FITSHDR object\n\nhdict = {'somekey': 35, 'location': 'kitt peak'}\nfits.write(data, header=hdict)\nhlist = [{'name':'observer', 'value':'ES', 'comment':'who'},\n {'name':'location','value':'CTIO'},\n {'name':'photometric','value':True}]\nfits.write(data, header=hlist)\nhdr=FITSHDR(hlist)\nfits.write(data, header=hdr)\n\n# you can add individual keys to an existing HDU\nfits[1].write_key(name, value, comment=\"my comment\")\n\n# Write multiple header keys to an existing HDU. Here records\n# is the same as sent with header= above\nfits[1].write_keys(records)\n\n# write special COMMENT fields\nfits[1].write_comment(\"observer JS\")\nfits[1].write_comment(\"we had good weather\")\n\n# write special history fields\nfits[1].write_history(\"processed with software X\")\nfits[1].write_history(\"re-processed with software Y\")\n\nfits.close()\n\n# using a context, the file is closed automatically after leaving the block\nwith FITS('path/to/file') as fits:\n data = fits[ext].read()\n\n # you can check if a header exists using \"in\":\n if 'blah' in fits:\n data=fits['blah'].read()\n if 2 in f:\n data=fits[2].read()\n\n# methods to get more information about extension. For extension 1:\nf[1].get_info() # lots of info about the extension\nf[1].has_data() # returns True if data is present in extension\nf[1].get_extname()\nf[1].get_extver()\nf[1].get_extnum() # return zero-offset extension number\nf[1].get_exttype() # 'BINARY_TBL' or 'ASCII_TBL' or 'IMAGE_HDU'\nf[1].get_offsets() # byte offsets (header_start, data_start, data_end)\nf[1].is_compressed() # for images. True if tile-compressed\nf[1].get_colnames() # for tables\nf[1].get_colname(colnum) # for tables find the name from column number\nf[1].get_nrows() # for tables\nf[1].get_rec_dtype() # for tables\nf[1].get_rec_column_descr() # for tables\nf[1].get_vstorage() # for tables, storage mechanism for variable\n # length columns\n\n# public attributes you can feel free to change as needed\nf[1].lower # If True, lower case colnames on output\nf[1].upper # If True, upper case colnames on output\nf[1].case_sensitive # if True, names are matched case sensitive\n```\n\n\n## Installation\n\nThe easiest way is using pip or conda. To get the latest release\n\n pip install fitsio\n\n # update fitsio (and everything else)\n pip install fitsio --upgrade\n\n # if pip refuses to update to a newer version\n pip install fitsio --upgrade --ignore-installed\n\n # if you only want to upgrade fitsio\n pip install fitsio --no-deps --upgrade --ignore-installed\n\n # for conda, use conda-forge\n conda install -c conda-forge fitsio\n\nYou can also get the latest source tarball release from\n\n https://pypi.python.org/pypi/fitsio\n\nor the bleeding edge source from github or use git. To check out\nthe code for the first time\n\n git clone https://github.com/esheldon/fitsio.git\n\nOr at a later time to update to the latest\n\n cd fitsio\n git update\n\nUse tar xvfz to untar the file, enter the fitsio directory and type\n\n python setup.py install\n\noptionally with a prefix\n\n python setup.py install --prefix=/some/path\n\n## Requirements\n\n- python 2 or python 3\n- a C compiler and build tools like `make`, `patch`, etc.\n- numpy (See the note below. Generally, numpy 1.11 or later is better.)\n\n\n### Do not use numpy 1.10.0 or 1.10.1\n\nThere is a serious performance regression in numpy 1.10 that results\nin fitsio running tens to hundreds of times slower. A fix may be\nforthcoming in a later release. Please comment here if this\nhas already impacted your work https://github.com/numpy/numpy/issues/6467\n\n\n## Tests\n\nThe unit tests should all pass for full support.\n\n```bash\npython -c \"import fitsio; fitsio.test.test()\"\n```\n\nSome tests may fail if certain libraries are not available, such\nas bzip2. This failure only implies that bzipped files cannot\nbe read, without affecting other functionality.\n\n## Notes on Usage and Features\n\n### cfitsio bundling\n\nWe bundle cfitsio partly because many deployed versions of cfitsio in the\nwild do not have support for interesting features like tiled image compression.\nBundling a version that meets our needs is a safe alternative.\n\n### array ordering\n\nSince numpy uses C order, FITS uses fortran order, we have to write the TDIM\nand image dimensions in reverse order, but write the data as is. Then we need\nto also reverse the dims as read from the header when creating the numpy dtype,\nbut read as is.\n\n### `distutils` vs `setuptools`\n\nAs of version `1.0.0`, `fitsio` has been transitioned to `setuptools` for packaging\nand installation. There are many reasons to do this (and to not do this). However,\nat a practical level, what this means for you is that you may have trouble uninstalling\nolder versions with `pip` via `pip uninstall fitsio`. If you do, the best thing to do is\nto manually remove the files manually. See this [stackoverflow question](https://stackoverflow.com/questions/402359/how-do-you-uninstall-a-python-package-that-was-installed-using-distutils)\nfor example.\n\n### python 3 strings\n\nAs of version `1.0.0`, fitsio now supports Python 3 strings natively. This support\nmeans that for Python 3, native strings are read from and written correctly to\nFITS files. All byte string columns are treated as ASCII-encoded unicode strings\nas well. For FITS files written with a previous version of fitsio, the data\nin Python 3 will now come back as a string and not a byte string. Note that this\nsupport is not the same as full unicode support. Internally, fitsio only supports\nthe ASCII character set.\n\n## TODO\n\n- HDU groups: does anyone use these? If so open an issue!", "description_content_type": "text/markdown; charset=UTF-8; variant=GFM", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/esheldon/fitsio", "keywords": "", "license": "GPL", "maintainer": "", "maintainer_email": "", "name": "fitsio", "package_url": "https://pypi.org/project/fitsio/", "platform": "", "project_url": "https://pypi.org/project/fitsio/", "project_urls": { "Homepage": "https://github.com/esheldon/fitsio" }, "release_url": "https://pypi.org/project/fitsio/1.0.5/", "requires_dist": null, "requires_python": "", "summary": "A full featured python library to read from and write to FITS files.", "version": "1.0.5" }, "last_serial": 5426840, "releases": { "0.9.0": [ { "comment_text": "", "digests": { "md5": "fdbaee6860d897d1ae3fe7df377fce02", "sha256": "4c06cb0ee70be557d6099f929996c654290262b56ae42358383efd67f4757898" }, "downloads": -1, "filename": "fitsio-v0.9.0.tar.gz", "has_sig": false, "md5_digest": "fdbaee6860d897d1ae3fe7df377fce02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1223636, "upload_time": "2011-11-06T23:11:52", "url": "https://files.pythonhosted.org/packages/6d/c3/96922193f7aca6bbcdc200f45b47557fab0106aa654c23efc4c21d77f523/fitsio-v0.9.0.tar.gz" } ], "0.9.10": [ { "comment_text": "", "digests": { "md5": "ef4b037b6b3d4187cdf079df4a1a156b", "sha256": "97c4d5f1f6c1f824d0f4c79463d707a720b84df356ca9c50d2efd2edf5b27b28" }, "downloads": -1, "filename": "fitsio-0.9.10.tar.gz", "has_sig": false, "md5_digest": "ef4b037b6b3d4187cdf079df4a1a156b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6018955, "upload_time": "2016-08-17T12:30:44", "url": "https://files.pythonhosted.org/packages/95/fe/d52b1f65be5f48291b7c09d73dfa86a89bd7e131396d1b37e885b596279a/fitsio-0.9.10.tar.gz" } ], "0.9.11": [ { "comment_text": "", "digests": { "md5": "b8e395bee7ecce23438645e9d03b777e", "sha256": "a1196385ca7c42c93d9e53002d5ba574a8db452c3b53ef1189e2c150177d4266" }, "downloads": -1, "filename": "fitsio-0.9.11.tar.gz", "has_sig": false, "md5_digest": "b8e395bee7ecce23438645e9d03b777e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6020222, "upload_time": "2017-03-13T15:39:24", "url": "https://files.pythonhosted.org/packages/9c/cb/f52534b71f4d99916723af2994898904015b9a1bf0286a165182d0374bbf/fitsio-0.9.11.tar.gz" } ], "0.9.12": [ { "comment_text": "", "digests": { "md5": "445b0283fdb1e5bd03733d819f7c6455", "sha256": "f13b48ee4c6d7ed53636c0c87e1a0cd138cc49966b2cab6ad7c3d79f312bd800" }, "downloads": -1, "filename": "fitsio-0.9.12.tar.gz", "has_sig": false, "md5_digest": "445b0283fdb1e5bd03733d819f7c6455", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4789264, "upload_time": "2019-01-17T22:47:23", "url": "https://files.pythonhosted.org/packages/06/6b/75e11fc80fa538ce5c0951154d51c5cbe93f3a94281f2184859bad3b9adb/fitsio-0.9.12.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "94e712f6ca55fe055eb64d07369c54c0", "sha256": "a717b657721924897aeb096ed5dc09e8b554be1ab58035ff133934940aba035b" }, "downloads": -1, "filename": "fitsio-v0.9.2.tar.gz", "has_sig": false, "md5_digest": "94e712f6ca55fe055eb64d07369c54c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1226164, "upload_time": "2012-08-10T14:44:52", "url": "https://files.pythonhosted.org/packages/3e/bb/fa052b72208049d2e7e4a16c6096b47179d3cb5fd912f9592545fe0f5e44/fitsio-v0.9.2.tar.gz" } ], "0.9.2rc2": [ { "comment_text": "", "digests": { "md5": "603a084f21138373d4f72d63ff1114e5", "sha256": "4bc7235636d980e617364487a8e4fe7ef1d6f0efaa0fdf769af8b5d371370ba4" }, "downloads": -1, "filename": "fitsio-v0.9.2rc2.tar.gz", "has_sig": false, "md5_digest": "603a084f21138373d4f72d63ff1114e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1226578, "upload_time": "2012-08-10T04:04:39", "url": "https://files.pythonhosted.org/packages/24/d2/7b43596c907b61f33a0ef38649a0fc3fee7f2912b2253c553ca33330dccb/fitsio-v0.9.2rc2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "637f49cfcd873c54d0556b0cbf10f805", "sha256": "a3943d53c1456eb3590b549797d7642e320413526802142d1e583c1f8af0a4ea" }, "downloads": -1, "filename": "fitsio-v0.9.3.tar.gz", "has_sig": false, "md5_digest": "637f49cfcd873c54d0556b0cbf10f805", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6273345, "upload_time": "2013-12-18T20:25:48", "url": "https://files.pythonhosted.org/packages/38/bc/a725450154cb0180426f8f3cfcf100843c27dbbf41b3121f478d3b576504/fitsio-v0.9.3.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "7ece9ab5c6f3a4c9b9846dbee1a68afe", "sha256": "48b93bd7e6b42da1ea1f64834a67ce1dee14948f13d8805d6d8f113f15dc917c" }, "downloads": -1, "filename": "fitsio-v0.9.5.tar.gz", "has_sig": false, "md5_digest": "7ece9ab5c6f3a4c9b9846dbee1a68afe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1231833, "upload_time": "2014-06-02T21:00:33", "url": "https://files.pythonhosted.org/packages/4c/5f/4e3bb8559bfae51b97ccc3952dc94a522b9672d16fae2a4c9a5d971f2d18/fitsio-v0.9.5.tar.gz" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "a79a01e0678e01ab53ee78d6289bdffa", "sha256": "b8b9a872ef9f564d8873b5aae13b9edce9a88f4933dac7f5ded5dc8859ff3580" }, "downloads": -1, "filename": "fitsio-0.9.6.tar.gz", "has_sig": false, "md5_digest": "a79a01e0678e01ab53ee78d6289bdffa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5949506, "upload_time": "2014-12-08T15:14:38", "url": "https://files.pythonhosted.org/packages/a6/9e/899c550827fb76c64ef99194d5e52ecccdbaca6f80c90a62a6db48171c4e/fitsio-0.9.6.tar.gz" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "75fa05f999ae8f55c8290bd78ada49e7", "sha256": "23f9e8c2b19995827bd6981a525db54dd496f3b44d5ac9a4d78068691aa6105b" }, "downloads": -1, "filename": "fitsio-0.9.7.tar.gz", "has_sig": false, "md5_digest": "75fa05f999ae8f55c8290bd78ada49e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5950967, "upload_time": "2015-04-08T15:15:21", "url": "https://files.pythonhosted.org/packages/b5/51/e33eccb5b93754dc9e83832306b1c4e5d9d7f3c0c72079b47861b359d3f7/fitsio-0.9.7.tar.gz" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "14d30a989da047f52a0d3098b98ec4da", "sha256": "7959f36f418d269d11b92dff4edcbe2eab62154f5ded4f75c4c963db8f82adf9" }, "downloads": -1, "filename": "fitsio-0.9.8.tar.gz", "has_sig": false, "md5_digest": "14d30a989da047f52a0d3098b98ec4da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6016981, "upload_time": "2016-04-11T18:30:53", "url": "https://files.pythonhosted.org/packages/3c/16/6b7b6d23b8cc399f984e256e98ec9e47192c0f499f0852bacad9b2d37d68/fitsio-0.9.8.tar.gz" } ], "0.9.9": [ { "comment_text": "new source archive with fixed version", "digests": { "md5": "daa9cc3c1cf13629c6af6276be8354c4", "sha256": "2fcff88b3db78072cc1407329ea94c5756266f8f6df9afa002c33af4880f1464" }, "downloads": -1, "filename": "fitsio-0.9.9fix.tar.gz", "has_sig": false, "md5_digest": "daa9cc3c1cf13629c6af6276be8354c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6017792, "upload_time": "2016-07-20T14:55:35", "url": "https://files.pythonhosted.org/packages/4c/91/f25b79a27ff34200bd184d8a7cf53ad9312a98c2b9ba6c9e50c4b398249b/fitsio-0.9.9fix.tar.gz" } ], "0.9.9.1": [ { "comment_text": "", "digests": { "md5": "46a8e45ee4e9a45e23c181fbd0b3fde5", "sha256": "e766845af5a551631a80f45c44f8757e06f7e0242b6340089c0369a926cf1424" }, "downloads": -1, "filename": "fitsio-0.9.9.1.tar.gz", "has_sig": false, "md5_digest": "46a8e45ee4e9a45e23c181fbd0b3fde5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6017822, "upload_time": "2016-07-20T15:18:38", "url": "https://files.pythonhosted.org/packages/44/a0/c52021bee3d4c856be171da5bce8539f1c619e24f104ccce1869e5fb698d/fitsio-0.9.9.1.tar.gz" } ], "1.0.0rc1": [ { "comment_text": "", "digests": { "md5": "b30c0b1c7a9cec80d64d5d24dd5d406c", "sha256": "af04f84c25477da0ed609be5a005c888a618e9e5b07bdcb4632c4df6c03ebd87" }, "downloads": -1, "filename": "fitsio-1.0.0rc1-py3.6-linux-x86_64.egg", "has_sig": false, "md5_digest": "b30c0b1c7a9cec80d64d5d24dd5d406c", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1724412, "upload_time": "2019-01-17T22:47:25", "url": "https://files.pythonhosted.org/packages/14/a9/0d419e5e7cda537330470369da0c6add65a709eab603590571aee4132930/fitsio-1.0.0rc1-py3.6-linux-x86_64.egg" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "21bb3bd174b123ca0ca737af0affbf9e", "sha256": "6bdecabb122c04eaef57e9d556a4034d6a0e5b4fa585590d3d28e05a6c11de14" }, "downloads": -1, "filename": "fitsio-1.0.1.tar.gz", "has_sig": false, "md5_digest": "21bb3bd174b123ca0ca737af0affbf9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4772157, "upload_time": "2019-04-18T13:51:24", "url": "https://files.pythonhosted.org/packages/83/44/75904f0376d05855eef626ce43e19b112bcf330ab0e5a4cdfcc2ffa6de63/fitsio-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "4775b9a143ece5ee9402eff48707f222", "sha256": "b0ebf1dd61378cb41f4fd18e2bb58bfdd11f0f82b027b5a2baaf81f0e5ed8b7c" }, "downloads": -1, "filename": "fitsio-1.0.2.tar.gz", "has_sig": false, "md5_digest": "4775b9a143ece5ee9402eff48707f222", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4774824, "upload_time": "2019-04-29T13:03:47", "url": "https://files.pythonhosted.org/packages/68/2b/6fe3aa6f6275055111bf041262634b60429a69c59dd9ac4daa984956a9f3/fitsio-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "38c7ebd83e6d5975a2fbd4cc788632c1", "sha256": "0b013bb6461ada3eb286a0abcdf220d51fcd6df50ecc97e41c6ad61fe820cf81" }, "downloads": -1, "filename": "fitsio-1.0.3.tar.gz", "has_sig": false, "md5_digest": "38c7ebd83e6d5975a2fbd4cc788632c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4774949, "upload_time": "2019-04-30T11:26:25", "url": "https://files.pythonhosted.org/packages/19/46/1aaa974ae2fa680ff9131c22dd7f72e0fe7451e2bb0aa0ac16bb0ad21b3d/fitsio-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "13fc32f48ac8d4df7a72dc02abefb23b", "sha256": "09779bc2e66de491cee6ff6ee25e79bbc45efa600a08e4fe325becc001863c26" }, "downloads": -1, "filename": "fitsio-1.0.4.tar.gz", "has_sig": false, "md5_digest": "13fc32f48ac8d4df7a72dc02abefb23b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4778434, "upload_time": "2019-05-31T16:11:43", "url": "https://files.pythonhosted.org/packages/ca/92/90215f6d0aee8e77bcb12a175f53359889daf9dd986e88908e6070ac3b3c/fitsio-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "98ab062955842bc5cdb9373d59d44b4c", "sha256": "db5ac8d8216733f492007f1511dc0f77a8b6c0047aca35eb2148adc4a63a4d5a" }, "downloads": -1, "filename": "fitsio-1.0.5.tar.gz", "has_sig": false, "md5_digest": "98ab062955842bc5cdb9373d59d44b4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4778362, "upload_time": "2019-06-20T17:34:36", "url": "https://files.pythonhosted.org/packages/87/c1/be76515a52004b261febf2c2074f0c2fd730b71b331e2cc69480952e1ed3/fitsio-1.0.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "98ab062955842bc5cdb9373d59d44b4c", "sha256": "db5ac8d8216733f492007f1511dc0f77a8b6c0047aca35eb2148adc4a63a4d5a" }, "downloads": -1, "filename": "fitsio-1.0.5.tar.gz", "has_sig": false, "md5_digest": "98ab062955842bc5cdb9373d59d44b4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4778362, "upload_time": "2019-06-20T17:34:36", "url": "https://files.pythonhosted.org/packages/87/c1/be76515a52004b261febf2c2074f0c2fd730b71b331e2cc69480952e1ed3/fitsio-1.0.5.tar.gz" } ] }