Skip to main content

zigfitsio

Python wheels PyPI Python versions License: MIT

Read and write FITS files with a NumPy-first, astropy.io.fits-style API — no C compiler, no CFITSIO required.

Python bindings for zigfitsio, a pure-Zig FITS 4.0 I/O library. The native code is a Zig-built shared library loaded via ctypes, in two layers:

  • High-level (zigfitsio) — modeled on astropy.io.fits: open, HDUList, the HDU classes, Column, Header, and getdata/getheader/writeto/verify.
  • Low-level (zigfitsio.lowlevel) — a 1:1 ctypes binding over the C ABI, for power users.

Install

pip install zigfitsio

Prebuilt wheels need no compiler. Building from source requires a Zig 0.16 toolchain (supplied automatically by the ziglang build dependency, or a system zig on PATH).

Quickstart

import numpy as np
import zigfitsio as zf

# Write an image
zf.writeto("image.fits", np.arange(12, dtype="f4").reshape(3, 4), overwrite=True)

# Read it back (NumPy array, shape (NAXIS2, NAXIS1), C-order — like astropy)
with zf.open("image.fits") as hdul:
    data = hdul[0].data
    print(data.shape, hdul[0].header["NAXIS1"])

Tables

cols = [
    zf.Column("INDEX", "J", np.array([10, 20, 30], dtype="i4")),
    zf.Column("FLUX",  "E", np.array([1.5, 2.5, 3.5], dtype="f4"), unit="Jy"),
    zf.Column("NAME",  "8A", np.array(["alpha", "beta", "gamma"])),
]
zf.HDUList([zf.PrimaryHDU(), zf.BinTableHDU.from_columns(cols, name="EVENTS")]).writeto(
    "table.fits", overwrite=True
)

Compressed images

ramp = np.arange(256, dtype="i4").reshape(16, 16)
zf.HDUList([zf.PrimaryHDU(), zf.CompImageHDU(ramp, compression="RICE_1")]).writeto(
    "comp.fits", overwrite=True
)

Headers (dict-like)

with zf.open("image.fits", mode="update") as hdul:
    h = hdul[0].header
    h["OBSERVER"] = ("Hubble", "the observer")  # value + comment
    print(h["OBSERVER"], "/", h.comment_of("OBSERVER"))
    print("BITPIX" in h, list(h.keys()))

WCS (celestial)

with zf.open("wcs.fits") as hdul:
    lon, lat = hdul[0].pix2world(40.0, 30.0)   # 1-based pixel (FITS CRPIX convention)
    px, py = hdul[0].world2pix(lon, lat)

Validation

for finding in zf.verify("image.fits"):   # fitsverify-style structural checks
    print(finding)

Low-level (ctypes)

import ctypes as c
import zigfitsio.lowlevel as ll

h = c.c_void_p()
ll.check(ll.lib.zf_create_memory(None, c.byref(h)))
ll.check(ll.lib.zf_create_img(h, -32, 2, (c.c_long * 2)(4, 3)))
ll.lib.zf_close(h)

Conventions

  • Image and table data is exchanged as native-endian NumPy arrays; non-native (byte-swapped) input is coerced automatically before writing. Image shape is the reversed FITS axis order ((NAXIS2, NAXIS1)), C-contiguous — identical memory layout to astropy.io.fits.
  • BSCALE/BZERO and TSCAL/TZERO scaling and the unsigned-integer convention are applied automatically on read (images and table columns) and honored on write; the output dtype is widened to float when real scaling is present, or to u2/u4/u8 for the unsigned convention.
  • Errors are raised as typed FitsError subclasses (KeywordNotFound is also a KeyError).

Known limitations

  • Not a CFITSIO drop-in — the ABI is purpose-built zf_* symbols, not fits_*.
  • Integer BLANK/TNULLn values are not auto-masked (no numpy.ma); float nulls surface as NaN.
  • In-place update of compressed images, VLA or scaled columns, or a changed row count raises — use writeto() to a new file instead.
  • Tables with duplicate effective column names can be inspected as metadata or copied verbatim, but high-level data access/reconstruction raises FitsTableError (status 219); use low-level indexed column reads when duplicates must be addressed.
  • writeto() of a scanned quantized-float compressed image re-quantizes at the default level (the FITS header does not record the level).

The full list lives in CAVEATS.md.

Development

zig build capi                    # build the shared library into zig-out/lib
pip install -e .[test]            # editable install (builds the lib via the hook)
pytest bindings/python/tests -q   # run the suite (incl. astropy cross-checks)

License

MIT — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zigfitsio-0.1.5.tar.gz (697.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

zigfitsio-0.1.5-cp314-cp314t-win_amd64.whl (726.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

zigfitsio-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

zigfitsio-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zigfitsio-0.1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zigfitsio-0.1.5-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

zigfitsio-0.1.5-cp314-cp314t-macosx_11_0_x86_64.whl (553.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

zigfitsio-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl (501.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zigfitsio-0.1.5-cp314-cp314-win_amd64.whl (726.9 kB view details)

Uploaded CPython 3.14Windows x86-64

zigfitsio-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

zigfitsio-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zigfitsio-0.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zigfitsio-0.1.5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

zigfitsio-0.1.5-cp314-cp314-macosx_11_0_x86_64.whl (553.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

zigfitsio-0.1.5-cp314-cp314-macosx_11_0_arm64.whl (501.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zigfitsio-0.1.5-cp313-cp313-win_amd64.whl (713.1 kB view details)

Uploaded CPython 3.13Windows x86-64

zigfitsio-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zigfitsio-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zigfitsio-0.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zigfitsio-0.1.5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

zigfitsio-0.1.5-cp313-cp313-macosx_11_0_x86_64.whl (553.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

zigfitsio-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (501.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zigfitsio-0.1.5-cp312-cp312-win_amd64.whl (713.1 kB view details)

Uploaded CPython 3.12Windows x86-64

zigfitsio-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zigfitsio-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zigfitsio-0.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zigfitsio-0.1.5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

zigfitsio-0.1.5-cp312-cp312-macosx_11_0_x86_64.whl (553.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

zigfitsio-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (501.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zigfitsio-0.1.5-cp311-cp311-win_amd64.whl (713.1 kB view details)

Uploaded CPython 3.11Windows x86-64

zigfitsio-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zigfitsio-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zigfitsio-0.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zigfitsio-0.1.5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

zigfitsio-0.1.5-cp311-cp311-macosx_11_0_x86_64.whl (553.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

zigfitsio-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (501.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zigfitsio-0.1.5-cp310-cp310-win_amd64.whl (713.1 kB view details)

Uploaded CPython 3.10Windows x86-64

zigfitsio-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zigfitsio-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zigfitsio-0.1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

zigfitsio-0.1.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

zigfitsio-0.1.5-cp310-cp310-macosx_11_0_x86_64.whl (553.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

zigfitsio-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (501.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file zigfitsio-0.1.5.tar.gz.

File metadata

  • Download URL: zigfitsio-0.1.5.tar.gz
  • Upload date:
  • Size: 697.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zigfitsio-0.1.5.tar.gz
Algorithm Hash digest
SHA256 e8ab64037a55555b0f43b30cf0c6e42e5b47291181939c56879f71d7e7ea063c
MD5 700b3a0cfc14537cc7531362502ea731
BLAKE2b-256 65c8dd97b5aa2e58898ef1401cafef2f70362ce20639a28a83434c4021a718a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5.tar.gz:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: zigfitsio-0.1.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 726.9 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a98ca5220c098557a5a5c9032d3ca3bfe887bdbd5608c711ad9a45ffe719461b
MD5 cd38c63f4c3d7f120b59d332c8600fd5
BLAKE2b-256 48711b9572c3443e495abed40ac5d75661fb4262b0a4ce3a0e47baedcad95620

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314t-win_amd64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97649e0783bc77c0dc3563bf9f725a1fea0035437069e11c051dafd453e9ba0f
MD5 b1f566a3faf8c8d551b429285d914a9c
BLAKE2b-256 9b2d72820a07ed2f1ea2ad0792587106f51aa4e03fb206ad36a0955c28d5c286

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 556e38cd365277f39d3c4a56d2c2bcc5c47ee7110b2805f528f7cdff959e8885
MD5 169d6381d47c1f3dd9da41193e4aa115
BLAKE2b-256 3b698511073eb5e5ee5e07ac8c512696a2b8000e5a182b0bc21b432f8932849a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21b259becd1e01d2566975d9621696c46867269739d189be3319e1e894f222f0
MD5 e1a5d4798e7a60ab7539008492f23375
BLAKE2b-256 bca2a80c6b6f8a338cf2ce0ad021727819c083dbde4eb36127d4013d727042ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 eb37b96ffd20151cdb762d19504c726ecc18a0bacc985ab087046e33e1dcf75c
MD5 43f7ce2f718a023822d28a1499cb8afc
BLAKE2b-256 80183dc326bdcbd368b668e687f90975395bc320c3c641b853e9fa144f3fd5b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1792bcccfc6b44df45bdab877448c36893fb8e90daebac9d2618d275407e429b
MD5 23c8361a3d1f1c23069bd532d5e95bd9
BLAKE2b-256 e7a195292592b029615e8a00942baedc66a16b1e96b7d8268c0727cc7893ee57

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314t-macosx_11_0_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e0a3508f2d1b9661a603773b1781359e5a2748c254b6b15c8863a75651f72fd
MD5 fe6aed2005f9ccfb9d7aa5570465a99b
BLAKE2b-256 1c4acb2c30ce610a71c8138e2828165fcacc9583dd9405146b966f8e73890038

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: zigfitsio-0.1.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 726.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7664a47d90b9b321d49d9230d972ce10a45133739e0ead075a4598319bd4a292
MD5 a32fd30afc75102c24b99b23ec02d16b
BLAKE2b-256 ebf8d8c556b6cb72dddf91227b482b5b491b0451905497f44189729c9f4826e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314-win_amd64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f08019bd5752b23d9c8d515add2f2fbc2e132425555154316b579b4e26b1611
MD5 ca5c23c5442dbf247f7df2816afd49b8
BLAKE2b-256 a01df56b6f910bed2710329394477669042deaaa61a9589f1726aa2260bafcfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f92ec2eab11d5e01b9f7ff4da04889cc147032ceba0a0b64faa8d33952b6b145
MD5 4e57778c660268a62894234c9717557c
BLAKE2b-256 61248ccf8c6b954468e38c7fbba5bf57e06cf71cc7b9efd8f6f164bd3067296e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 253822b13c80f6c44b88f8e960b9125b21ea57678fe12e4e4a1687ff9a1dd78f
MD5 1ee0be38a966ed33ff57b8cd48963185
BLAKE2b-256 1dd1f7b367bf600a65a4b2837bb55daf730b6c66149b026c1e35fb01cbaa531b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e7268dd50fd1029dce8de04f2b814add1928e3fea791444b4be1780458049dd4
MD5 be177292688fe4facd7e272e2395e781
BLAKE2b-256 585335a6de3aadf474fff13a8fd00b68f4a5fc6074cd25712f62b3b93431a23f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b616fcc45ffc9c17b8233a38bca180201e754cc2d7d479b2a4f893042701317b
MD5 c23e66ca1c74044d0bb5cefeadfce6a2
BLAKE2b-256 14934d11ff7994b41b673755f4eec9c4973ad78f4f526bcc3209da24b1a1dc74

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314-macosx_11_0_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22ff8f157b7c3746471e818956ab30367fd5b08f4896aadc175fe239af5c05dc
MD5 5deaf5f035cd891d01c52befda6f3dac
BLAKE2b-256 ee1791c144c69f71fff5ac492c71de3fce6b174c6bc8ba79f5ddc4592c15ddeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zigfitsio-0.1.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 713.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zigfitsio-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e6ce2b6ca354c007eddc88b71c7eb88c64364b8d55641293a1aa2ef81f6a1179
MD5 ae912cb9fc454ae159fa4106b905b2a4
BLAKE2b-256 77ed67b203af62b9d491fcdffc6e62211a65bc1c5211211a5b3f8e82a3bbb77b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp313-cp313-win_amd64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f314a2444db5e7180b864a7266a659b5712ee389af6102d3b731247761f7a1d
MD5 7a03f9b5266223e0514d5ae2a4f727f6
BLAKE2b-256 5e8a990298c51b2ab82f3b1218302935ef92055e69a1ed17f919c61b318d00dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0bdae4a1755e9ba972e059782d0c100515e1f18885a2a4b41b56c8bdb9c0e601
MD5 5bb04e7c1f97760887825acd3c32cd9d
BLAKE2b-256 7df29106a8ffc3b0d94a286a0aa50765f6e60a4be4826c69eec8bea0a60a4704

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5178a01f7e50e9d250487b7722a9b70a1b2ff0d85db9c35a2f402e5660e70723
MD5 a20050ade810899cfbae0a78655c47bc
BLAKE2b-256 080c926f7472e0895522c33f50ebda013c2db1307b33f1ab9006da9592766c03

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d91d759494a0808920f4c8fadde07a92d669a93ca97469770c8ddff085bb58c9
MD5 2ea84af62d6038b6220fc57e57d337b3
BLAKE2b-256 105fb7614553945ed1d761fd54698b52faab43a30009388ba2920da2073f5c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 757e9fe67a2c7347f187864ea1d66efb79dd2906560eea08b3927d2ab45c397b
MD5 48811ea21e51690abfb6d6cab1952e04
BLAKE2b-256 ed44c144b823808a67b97635b32c9d6c4096bb4aaa5b0ded085586ddcdd225c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68d317e04dce8be7c2e6a12784f33a4567ff0f10d1efe3dfe8a28c88d8a60179
MD5 376f780a0a7520e958a116292877baa9
BLAKE2b-256 c05248c6fc9859be19c0202ecdd5bfe496bc6d4ba16e0c8b0b5b4e80b17f3233

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zigfitsio-0.1.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 713.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zigfitsio-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d4cab51bec3da51bce0f1bf251d95f60e3678de8005f853048a70ecc95d93117
MD5 c4b74bac62f40756c0ac1c48a2ccc513
BLAKE2b-256 bf047a17e6517b99da7c4b9fcf5bfedcc6406075ed8a192a952a2139d6ae4335

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp312-cp312-win_amd64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 866b85edd3af2b6ddbff8c7729b2735b2799e2170b224f1884d440c7afd60e90
MD5 ad2bc612a28116021166cd1e06e1f55d
BLAKE2b-256 385ebc3e46cffcb85fa5897214ddbaec435b7990d40fb10cb8a7ed033a99f845

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4fc49f66a89712810120fe5738b09229ec47bf0036cbd7fb129f6ac2d2bc648
MD5 0bc3874ff8658c991dcab060e414f4eb
BLAKE2b-256 4e41d84454ae149a4913245181ce006380c9a2a2a6d773a8618859c4bf4402f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b42602337e680eb9c37a10e43a727bf567bb3e57148840655a222ee081374b63
MD5 22e6d80263318b1ef78ecb25f638676a
BLAKE2b-256 d9aaa892f1447ccf65057011b525ef2595f8b895adb074dbe1a82e1c88f5ed4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ed55838c1f6dce7aeae3c567bdf75a03c13e8aaccba5b6d87b3bf9103e97e30a
MD5 76ddce926f034e7204fbf2e13607ebc7
BLAKE2b-256 3e6b82806dac9920da1aa0251facd42d1188a0b67ea8f931e8b391eee296322d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c4d78dffe622468436f40c5145989d1941918192f5fc933e4d790ede519c2bb9
MD5 aa3edcf5165deab9dcbf819dfb221bb3
BLAKE2b-256 999f6fd7d3c1392aa43115bf8909a14acd50c852581803dd094bc4a220588d43

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6820d75b23f206c21139767cff2232e2772e859bff037b98ede029393b482548
MD5 29e103e0591508a3283fe935542e6f19
BLAKE2b-256 c70e90adbee7e2874b32c2ba14c4dd9b8c4201fad2a99469de43980585b5457c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zigfitsio-0.1.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 713.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zigfitsio-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2591ab39e64a1268e22f1c298e1e16b31f45a52dd9ee925c7e6ae8fff7cecce6
MD5 5a7d2c4fec850cb6bedc7201ca44da5f
BLAKE2b-256 f9c5dcb5ed277482229c240ded6706402044ecbf7d1bba4c8e70cfdbc33b0ab3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp311-cp311-win_amd64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f25fdd8059e44203fcbd3e95eadee7f6c48431e09c51360dfda95395e0762bd4
MD5 9e8c8ead51fb1528f490428f90fccef9
BLAKE2b-256 c6299f0b8ef908f9f2392ac9356f00962350ec80c3d4d3b05eef504a6f5aca26

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59283269018a2a4edc91b542dffaf79356ac00e5d8b3da6ce133d51e8be5177a
MD5 01c4803cba96b231bd7eb1dd8baaaa7e
BLAKE2b-256 597023cc0948ffbf5f88e16fa99efe97d387da063c6cff48bcb936dd0b479280

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90b1a130db9fc8d8dea30136c5f01bb22002d5399c7b6cc4edf597deef7f7f23
MD5 cf6ef5ace3112a0308c5791843d799bb
BLAKE2b-256 a58740e85eafc94c167e1350e38fd1cfe1ee2082f8b5d9a584d74f5f6f03608d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 28795017360b8dc8a9d087cff42cc61adbdba26bf9e57a7d37327d7dc35b9d9d
MD5 b1af0998d61090d826b7ff80bca5a308
BLAKE2b-256 4a4aaec26109d65c56f5e35e4bbc67373f8c209dd0a4f3d4af2c5a8c77b32684

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6c7d6e4cf3f51890fe5313848bd54b134fe0d9678629f8894951980530e4e42a
MD5 ae7664c6b88603df88ec58e526fc214e
BLAKE2b-256 c5ef89a8663a9e1b35d91a01d0c22d4b3910a245f341853750298dd2868e812b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1ee209243510f9966aef124d6a45df359c5e0c2feb9740b687280aba7cf575d
MD5 a4ea69a7ae0f773aa02bf2cc3e4e91be
BLAKE2b-256 4cea80fb99c7f26a0e1df06be1816a13cd4b8e48b564a4d528de6a30c42255b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zigfitsio-0.1.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 713.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for zigfitsio-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4a0754f106b02b795a151114c121d7c8f5c1f9c19229f50b0b38f1ecd8b85eae
MD5 0fd14ae7a491eb91bb99dccc861a0f9f
BLAKE2b-256 b3a1f520b228735b359a924e11a89a52b77acb9e9b8c20bb70087c013437a836

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp310-cp310-win_amd64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62f0846b723e94ff41df5e315d91e9bada65662f8d634d5bbf26c47638355fe9
MD5 8088122a4148bc5d7c5aeb0e9bc3bef1
BLAKE2b-256 6bba9c5979e67b9ae862c955dd00551b55b5a745cb769c704fa0f9364e62f85a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8284fd74d8fc6839ae33c0203a0ff6a889f975158de11d0371f8813a97ca79b1
MD5 061692ca97b83adf116d42216c623f4d
BLAKE2b-256 eae6a44501bcf36e36f6af58bad75b2af86a082fef6106601c926d97fdf5c2f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b66a0a724d9ebf1d4f97846835179dd5573843af91c796a9386d25e52e18f77e
MD5 17748e152b3a09c40e76d137d01b0c1c
BLAKE2b-256 291494ce27a76fb048ba7435d0bab1c30e7d5e4ceb9e86eaa8e330e31634f9f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b2b97e72136e0beb16b6d75c3a5070918027399df901d552b5829cf8195d0675
MD5 959b2e9cfcfc3dd1d61cdd3bf3ed6814
BLAKE2b-256 a62c4e2fdb988106657cdc40d6d1c3923cbcf83ca5a97ba1a0e4224bf9e89b07

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 df51cb1c4251c2fcace316eec3a5b67c0bb24dafdacf0e5ae52ad91c9979d2a3
MD5 ba542552703173c871b730e51271fe18
BLAKE2b-256 67caeb210389a4cca8a312b81aaf50a94c2d8ae9eae77e5dc7c029ca50f14395

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file zigfitsio-0.1.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd3af5bf8a774467d35589fdde3866c6a75ba07c3de192a7e4269110e077a605
MD5 0b00f4cdadac78debadd9378e18150c8
BLAKE2b-256 2e46201ab78a3364ffa0ace8494401164785a97c4a55387461aa43f96be49588

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-wheels.yml on anhydrous99/zigfitsio

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.1.6

43 files

This release

0.1.5 This release

43 files

0.1.4

43 files

0.1.3

43 files

0.1.2

43 files

0.1.1

36 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page