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()))

Setters remain eager by default. Use Header.edit() to validate related changes together and commit them with one Zig call/header write:

with zf.open("image.fits", mode="update") as hdul:
    with hdul[0].header.edit() as h:
        h["OBSERVER"] = ("Hubble", "who")
        h["ESO DET CHIP ID"] = 42  # HIERARCH is serialized by the Zig core
        h.add_history("calibrated")

Callback, validation, and revision-conflict failures leave the file unchanged. Device failures use best-effort rollback and are not a crash-safe/on-disk journaling transaction.

WCS (celestial)

Pixel pairs are one-based and ordered (longitude-axis pixel, latitude-axis pixel); the celestial axes need not be FITS Axes 1 and 2.

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.6.tar.gz (780.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.6-cp314-cp314t-win_amd64.whl (794.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

zigfitsio-0.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

zigfitsio-0.1.6-cp314-cp314t-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zigfitsio-0.1.6-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

zigfitsio-0.1.6-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.7 MB view details)

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

zigfitsio-0.1.6-cp314-cp314t-macosx_11_0_x86_64.whl (621.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

zigfitsio-0.1.6-cp314-cp314t-macosx_11_0_arm64.whl (564.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zigfitsio-0.1.6-cp314-cp314-win_amd64.whl (794.1 kB view details)

Uploaded CPython 3.14Windows x86-64

zigfitsio-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

zigfitsio-0.1.6-cp314-cp314-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zigfitsio-0.1.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

zigfitsio-0.1.6-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.7 MB view details)

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

zigfitsio-0.1.6-cp314-cp314-macosx_11_0_x86_64.whl (621.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

zigfitsio-0.1.6-cp314-cp314-macosx_11_0_arm64.whl (564.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zigfitsio-0.1.6-cp313-cp313-win_amd64.whl (778.4 kB view details)

Uploaded CPython 3.13Windows x86-64

zigfitsio-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zigfitsio-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zigfitsio-0.1.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

zigfitsio-0.1.6-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.7 MB view details)

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

zigfitsio-0.1.6-cp313-cp313-macosx_11_0_x86_64.whl (621.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

zigfitsio-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (564.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zigfitsio-0.1.6-cp312-cp312-win_amd64.whl (778.4 kB view details)

Uploaded CPython 3.12Windows x86-64

zigfitsio-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zigfitsio-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zigfitsio-0.1.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

zigfitsio-0.1.6-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.7 MB view details)

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

zigfitsio-0.1.6-cp312-cp312-macosx_11_0_x86_64.whl (621.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

zigfitsio-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (564.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zigfitsio-0.1.6-cp311-cp311-win_amd64.whl (778.4 kB view details)

Uploaded CPython 3.11Windows x86-64

zigfitsio-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zigfitsio-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zigfitsio-0.1.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

zigfitsio-0.1.6-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.7 MB view details)

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

zigfitsio-0.1.6-cp311-cp311-macosx_11_0_x86_64.whl (621.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

zigfitsio-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (564.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zigfitsio-0.1.6-cp310-cp310-win_amd64.whl (778.4 kB view details)

Uploaded CPython 3.10Windows x86-64

zigfitsio-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zigfitsio-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zigfitsio-0.1.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

zigfitsio-0.1.6-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.7 MB view details)

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

zigfitsio-0.1.6-cp310-cp310-macosx_11_0_x86_64.whl (621.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

zigfitsio-0.1.6-cp310-cp310-macosx_11_0_arm64.whl (564.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: zigfitsio-0.1.6.tar.gz
  • Upload date:
  • Size: 780.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.6.tar.gz
Algorithm Hash digest
SHA256 858f2795ecc6bcea7ade487d639632b468821d6e2683457b5fb1ac82363ecbdb
MD5 d363955e4c8c8c2290fdd49bf7e79d0a
BLAKE2b-256 ba504769e91ae55da7ad080ce64ff854b33b4bb85c61f46f849bee13f994fedc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6.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.6-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: zigfitsio-0.1.6-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 794.1 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.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 99a59ebe59716fab1b305ee42009d43880fc771c37f1c5db3ffb6700506d4fa0
MD5 19c0488f769e0ef0a3e79dc66f060df3
BLAKE2b-256 ce77a427807bc8a3e18f597487d68e3feeb74de2f52e77028a9ed94b6e01e24a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14d97caaab1c086ef1926a0a6873333bdf5762fdd7c9a39576826a5cddbebf73
MD5 54b8d4e4429438c26fa71b3cf83abaf5
BLAKE2b-256 bc6bfe8dd507a43c8540c2fa1f608204bcd1de7d1b6febd96f945f364a5eb8ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 361b1b30de6ea54f229198bc418dbb9d77049bea23fdeb31ea3156bc64126691
MD5 c03ce7e8b02ec5620561261949ab5b31
BLAKE2b-256 22d2ab0ce6e13665bfd7ade43680f9520cb688af183f8a605c39e8ebbdceedd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4a0a4e3c84c95b993cb83c2aa290f848cb3862f5da2cc66e8d012ba880c0a56
MD5 e85bc94e69e9b1200078414b06fe6a49
BLAKE2b-256 3a849bfe57ebed5815009246544b0b77901bdda184bad65d8a3351155600e664

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-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.6-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 68dab5ee4d6ec23415249af26bf5c67a02fb9d051eb207bced59f3f736ac7303
MD5 3a646fbf07bd1f74b9b9ae4e5de0c670
BLAKE2b-256 5dcd6a4d9720aeef20a8da5f07f96e59a1a6753c6110b50513984da332a693d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 75a5844b7801ad59cdd50ed7ad816f5566b646a916cb7a281eb3f822865b8b05
MD5 ce776822141f092c50df5cad98dfdc1a
BLAKE2b-256 2c60e19204b020d01c6975379cb1a3a98bf667c6be6f6651424e87e85c247950

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b67a73afc90de7369dd3193890951b0348229d4312c6d5e22c447c8784f4e58
MD5 de82a4faf33966356b29144b7c30596a
BLAKE2b-256 c97bbfa2bf06d1d04a1c4e1a5fb570f2b3d05ee0fbc4ff432ae267b5485b39f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: zigfitsio-0.1.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 794.1 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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e7d4bcaec6f2ba9fc0edd54a25f9f622fa0aad963d50a8c2d9fa8660bfdc6c9f
MD5 4ad2af1d2eeb90a16ac665d9d6ac376c
BLAKE2b-256 d3b76bc1c944c264beade77c46c6ad55569122a79cba6344899ec20265880898

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 268f6667a575a1b911e3c32d2b034caf9f2a99bbdc69188b19ba9f7656ecf1a8
MD5 9f2aca87542a8841cff0d79466bc76a9
BLAKE2b-256 7ce13eebeef9a7b7465e51bf365e01302b200053b0154a7f453b38d3c51f376f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f16a02854822f2656297c3ebd23174b3c50ad534661aad8b3bc87985f0fe2131
MD5 bc34e918ae36181301ae5409d82fd9ce
BLAKE2b-256 f2f8d650a55f2366e152d4adb202caa863d1c51c6693a0c9335f61d22f24b439

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 688d28cb3ac9d046aed4f63d8a12edc85090f7d8a87aaa442227b761c9b1d8a7
MD5 51a510d364a6fff8665d6069c91d2ea0
BLAKE2b-256 7ac8c8899c35910b732f0f8c3de464a24ccdcbff109855d37c9a379c664646de

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-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.6-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fb77c2dbae431df5f89890226d49fbdf1870fcf5518ebd3ee90fa6d2936c37a3
MD5 bb2cd9dcd39eae944d6d888a129dba19
BLAKE2b-256 b05c791eda72319821c00b8b8f8321158c76c3ae45abf1bcc3da873582bea375

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9cb301822bb802a8b892511405e2bc7b836c901b2f9c0e0460a7562097921198
MD5 eec6e9fabaa7db840bc87ea81cb94456
BLAKE2b-256 c1c094886b1738453a7ac9943747082bcf4b51179a5d6bf5b08595b13e9c18e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 398d3ebe2250b1b7813fbc3edf29ec7f4541d92f3fd62d9e6c333d3f968c9e2e
MD5 a22e6d1b8ae25ccc63a06bf020281c2f
BLAKE2b-256 2fa2520c990bcdb3965dda8490dcdd06703083340e9d0928933c3dbfa70fc7f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zigfitsio-0.1.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 778.4 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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7725454eaea38bd57a8ada72e7e2e3791491f3b47d5d6f443681a131c15a36bb
MD5 d8d07a0b19d8f81b3c438a6f30c2e330
BLAKE2b-256 12f3775fdcea221f7f859c6742aa408d5d7b053c66b5f7cf33243599f09a4674

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd8c8e37846e3b572ba314cc07f3eaaeef2db21dfad3194bd24f3224b76c9de1
MD5 414bca46bef8f829418765e191ddb878
BLAKE2b-256 0d3a4c78bacde3014c719fc6e859dadfc669d106837cac96a7c553e69fa93b0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 386a7fea6c391e412da3c0d15b642093215c2ed7aa5c3ed7ffd1e7f236e6dd14
MD5 3b2cedab574a24850da21c505f28333d
BLAKE2b-256 3b1f5cb8a26854eb6f618249cd684196216a1138f5c02c8d82aff56857490812

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90a7decd6c928f260da6916032aea63566edb0365ba5cabedfb5804fde7f9ac3
MD5 e4d2a9b1e67e169ae24f481ac0bdd7be
BLAKE2b-256 026012c35a8a8a2a712d7afd9046b5f934271f94589e2c088f4d1931b5965b8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-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.6-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 476ca5249b8c56f69412badac6621d24b9c354e44ebc668850727734a5e75733
MD5 66116a093bde134bc01ad9f89f50e276
BLAKE2b-256 1860c9ff36c0035585632c3097b6537e655aab377cd0d619695f45d66cbe048e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3c9347b987da761c9cda04c6b451d6d65b44d8fde732dc82fc003cbf086ad44c
MD5 01f0533a7d90242aae930396fad2d1f8
BLAKE2b-256 35fd1595c1507469a26b3303dd86c4ffed2c0ab26055bada5f34750c6f55ff87

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb53177725bf4f7fe5fabd33b86af145d4bb13db903d5207b98c62bb7a5679f0
MD5 9b9106716e98b18befb5765d9d25caeb
BLAKE2b-256 8bac46902ec94d4e9cfb67bb660d3424733a8182efc88d5036b35c77de7d7ded

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zigfitsio-0.1.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 778.4 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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d49f563783d940a14bc92c63b930b555c5d14621422e7e2eae9b560bb76eb239
MD5 1d1c40e5a7cc3bbe305193751e625003
BLAKE2b-256 5df3c9d00383712bcc5e7be30c89bb730557680b6dfbec51f1bfd11b782674bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 500dd33cd9dc03e8f8505a49b2bca80f492eb469b5aff9f1292cae4bdcedc4b2
MD5 ada07bbe5cfe6e462b74c0d23bf0066b
BLAKE2b-256 4b9378a77f623a86e1ecaf38f5c1dac5bdaddfc200a08f66f86d06506bf4d497

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d64e425792c5e6c2ad39b3ce9ff9e3e1d5a8bd1395cadea3d2195f89e2832d78
MD5 62d20eb97f98597029fdecb01e226fa2
BLAKE2b-256 7b53a6226b8bef864578417523ec6d9e13ccaa7ede9b3443d36d3f5597a2225b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d29ba018b61a13930261c3200a2a9063c9e163538783ccc551628af11f308357
MD5 edd2b9ec2ed455ff109e42d179fa1d74
BLAKE2b-256 530bc9f384bc9ed760fc715e2c9d8852b7296a89625952c237c7e9a4024a85b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-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.6-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2be636e4e99da7559de0b14ad0dc064a7b1c75c34d753a42b38435b5422d3758
MD5 ebcef9a173bb5f862505307c51eff821
BLAKE2b-256 9be3d964b7e51ad10fd93d56b5178dd773a657c74c9afdf60e6a78234e5139be

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8345daf5b2d2de4dcce67b6c282e7bfb09ae4227fdb6c6ad0165f6e88a29c5a6
MD5 3a28793c57b5305f3f687f191050cda6
BLAKE2b-256 40d3bca3822857a5da62fd6bdc929a300d0a9bac0f584ff98dde06de922cb316

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba8d98191ee8d0c9639ea35170659365cf6b55b72f4b143521cca9f883bfceda
MD5 91f441f769bcb067d0de8ddcefc6546b
BLAKE2b-256 e1c69436f958000aafd8e1b2044656929f71faffb946342f2334c32a51a8b90e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zigfitsio-0.1.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 778.4 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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ccec4f69ed2b7f4e74d2323eed7020c708d9d429755816cae05c29921cf04ab4
MD5 f3cc9e45d46f1154e340e333e88fb74c
BLAKE2b-256 d8faa75ab506de4c6724ab78261b347c69dc4346222a0083674e2fb76571ee38

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99278344efa7d25304e328b290dc82c3342bc53b711ad977d7a12bd378b7d370
MD5 981f7a71885afe74150ef364f9bd4d7f
BLAKE2b-256 79319a770bf8f0ca6400f8d6103f87f97558dc5d6953249668cc6a7efe39b021

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c942aef6e89639833802621da2e23b4e11a8bdad2635447d251fb09731baee19
MD5 f8617fc31f578e6fe49a8db317ab1960
BLAKE2b-256 ace3f5ff67da86af257e4681314304b0ded90c2f0bfe54421461ecfbc196e965

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca9be36f187831ed19fe2b87e867fcf2bdfa08519eb77e10e5c63943a97027e4
MD5 a2cb8d6a40487809a61fd01e1b2e96e6
BLAKE2b-256 b892d981de116e150c2617f2860516a2dd3923add3d7b9c986149a5bbfd107eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-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.6-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1578a80fe53529191c17acf839ba21e26187ec19218ab2dbca5964b16bb99c4b
MD5 eb4bdf989c9f8bab3e06b677666ccc35
BLAKE2b-256 2677f13406fd9c57bd25ca56945e193d3ffaa87ea45bd145c7019f68f16c0326

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c09c6f7671142c3a2a7dbd524574531fc435fec865f0e01d0c2afbf2898e75f8
MD5 f1ad9790d0f17a0b14f5a79e5e5c18f1
BLAKE2b-256 aaf83a8f32ae64c113541f2cd2e6a761f1a2e0d23490221679d33313b91e95dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8cad9274faff515a4a2c46b8989ab4886b93b5b305ed9636a601658aed29948
MD5 cdd283d90c9cd35046d0e47121fbb846
BLAKE2b-256 f773f7ddde2724d6333a61e7c37bbacb0a792920d6f651cf59b81500a2e5b767

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zigfitsio-0.1.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 778.4 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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 de7a99392205de19cf0cda49fa5509a38a001ea7be7589f19486c1eb25848122
MD5 12533769c0d06493b825954b89139f90
BLAKE2b-256 45b5f80ca2811ce600f9257097ba4a15e0cd537402f117c211ea22c3cd512195

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81b6e034048e4fd58027d8e86ba052882a12cde2147ca33910add2a840c1c948
MD5 7a7e48c2ff0e0628d476a9de6e1f1d4f
BLAKE2b-256 9dcb7fff9f748f8fadd8f43ddc439c23a12bbc2a1705012edfdac2a7cae89da5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 952dc37fc9356033a8b012fbd229f2994f91ef5871e767c44d2b3e754c773fee
MD5 0de61f8bca470a12e7ea3e9d4edcc619
BLAKE2b-256 665d7550b2d3a24e0c163fa626bdf76fcd449cb8f770c5f418f8647ecee71dc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa6224be852eca8a79a866aa5c490b572f16aa2c7f54eeb4bf12016969970f54
MD5 2f9b439c1b5abe0f85b818ea79880550
BLAKE2b-256 0434bf1792de1a71d3f6f180ff4c27d73c1fc367f48e1aaea24e269e8d2e4f05

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-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.6-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ad6f116954a2acf6e8806edd7e17e59bc88b9137d1d21a4374a715cdce2fb78a
MD5 e4182c4f8fd9701f882343b006b1ea5a
BLAKE2b-256 a315788b6e359064e24cc708bbba8cef1cb984af86828bb804324117e2e4d982

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 44e44836ec9c7da39710927bdd827e615666167e31beed2d59ce0293c0b70386
MD5 5478577ed68c43e397af8f685c8a812e
BLAKE2b-256 639841f59df3c1a5e86b276fb4c493470de2951154d266ef355ec99ced85cc10

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zigfitsio-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47daa7fcade339e75b8178e42c9891710664256c2fccd9ab759bc0d905102943
MD5 be4347e42181b90f9818e3704f618602
BLAKE2b-256 dff2d8498af618c839fbf913594225ecf5d5ebb2ee279f3c1aef76aa977edac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.6-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

This release

0.1.6 This release

43 files

0.1.5

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