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.
  • 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.4.tar.gz (624.7 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.4-cp314-cp314t-win_amd64.whl (665.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

zigfitsio-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

zigfitsio-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zigfitsio-0.1.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

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

zigfitsio-0.1.4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.3 MB view details)

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

zigfitsio-0.1.4-cp314-cp314t-macosx_11_0_x86_64.whl (509.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

zigfitsio-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zigfitsio-0.1.4-cp314-cp314-win_amd64.whl (665.8 kB view details)

Uploaded CPython 3.14Windows x86-64

zigfitsio-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

zigfitsio-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zigfitsio-0.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

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

zigfitsio-0.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.3 MB view details)

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

zigfitsio-0.1.4-cp314-cp314-macosx_11_0_x86_64.whl (509.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

zigfitsio-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zigfitsio-0.1.4-cp313-cp313-win_amd64.whl (653.2 kB view details)

Uploaded CPython 3.13Windows x86-64

zigfitsio-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zigfitsio-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zigfitsio-0.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

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

zigfitsio-0.1.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.3 MB view details)

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

zigfitsio-0.1.4-cp313-cp313-macosx_11_0_x86_64.whl (509.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

zigfitsio-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zigfitsio-0.1.4-cp312-cp312-win_amd64.whl (653.2 kB view details)

Uploaded CPython 3.12Windows x86-64

zigfitsio-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zigfitsio-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zigfitsio-0.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

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

zigfitsio-0.1.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.3 MB view details)

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

zigfitsio-0.1.4-cp312-cp312-macosx_11_0_x86_64.whl (509.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

zigfitsio-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zigfitsio-0.1.4-cp311-cp311-win_amd64.whl (653.2 kB view details)

Uploaded CPython 3.11Windows x86-64

zigfitsio-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zigfitsio-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zigfitsio-0.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

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

zigfitsio-0.1.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.3 MB view details)

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

zigfitsio-0.1.4-cp311-cp311-macosx_11_0_x86_64.whl (509.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

zigfitsio-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zigfitsio-0.1.4-cp310-cp310-win_amd64.whl (653.2 kB view details)

Uploaded CPython 3.10Windows x86-64

zigfitsio-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zigfitsio-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zigfitsio-0.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

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

zigfitsio-0.1.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (2.3 MB view details)

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

zigfitsio-0.1.4-cp310-cp310-macosx_11_0_x86_64.whl (509.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

zigfitsio-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (463.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: zigfitsio-0.1.4.tar.gz
  • Upload date:
  • Size: 624.7 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.4.tar.gz
Algorithm Hash digest
SHA256 5d75f1f3bf7c9f6968311d8dd6bd8c94580eb24de7e01891848671e27c2bcec1
MD5 a813de86801c2f52c4a00e09d50c1154
BLAKE2b-256 c5337802da1e8ea0af2b8fe2026b9e2e7481556970a286d9754d8c8d15833c16

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 665.8 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.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 98f17fc7c444eb29e827c69c65acc561a4c7a5fb1472b9f0aed24ab20b65ad2d
MD5 0d3c74a2a6807d015448964e679f890e
BLAKE2b-256 6abfc0a35dcfef73214fadb489d496c01774821216538e4b5095d3acaae67ee0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ecef4d4f92ffb19eddad1d912e95f50e7cedbd394df76647f0a88c48c1c3e21
MD5 cb0972d9a43a699bf1345e1be074872a
BLAKE2b-256 52f14c2f08814e065b7127b1f1083dbeed4c6a4238d06668b07e9c1c583733bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8396218fb118a78379b6ce132328dc6b7626d1f9c473dd5c0d01a81b6ea23bab
MD5 3c41a600d53cc6f9051c00c38abef3fb
BLAKE2b-256 219751c9a636040fca66d97aac286a31fabb9d4ed039d50c6c0fcd914e7f3313

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2cb8d1ad37a651d729b4e1ae5e950ace847813253251f0d8baed78abe6fef914
MD5 4278b3e42d5804378608616ef83f57a5
BLAKE2b-256 6dac6961b5f2cc07027f7be49b00275b2fe8125b27ae1c54488d69b60c8339de

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.4-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.4-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.4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 976a2cccefe1e8e09945cfe64f4349e59c765449cf20387105bfadead611e75c
MD5 7338b23bdbaf27a7f01e2ea53f9b2220
BLAKE2b-256 362fe70c3b221c86175a82ad6dfbce7f2f86d605aec6866dbd9c8e33d513af91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b91acc43f86ad1273e1cf0ad2a28f2e448e0fce59d43e07361e635f4dbacfb10
MD5 3d7af40f629504209dbb48f7b8f2550e
BLAKE2b-256 0af8f91d395e553465f0dd9978cbc3e5fea07d6834aea326207c4a34cce3f76a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c633c16c8f67f10e0f5d1da1cff689a6988a9ebd4915541b02e08d6ed571b37
MD5 f014de96a2f9e0aea0405484de9c4cd2
BLAKE2b-256 bc23cccf98038453b8aa053c29440486fb911e67cee02f0df19934101a5f9fc4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 665.8 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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7050bafbcc3a436e4118654b15384ba07bbbfca3e41baa8c9539cd2d6d8ecc87
MD5 2948e34c44060d12c705976915fa840a
BLAKE2b-256 66c43ad9249598bade28be5d5074c5d6aa3e755c145c48e6eb11859a4129e0b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0a185dfb96f5546f316eddc9eb056039fcc126c36072c0aa724c3866da8cf1a
MD5 f93fb786e226f8582f1cc70be1786e11
BLAKE2b-256 24c8d911de0a66e2fc5d5ea354ca10a318c2b4d4dac317e42865079694982ccd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84b9e46b2e7a640981f1df8175d7d75e7ba7d8cf900cfa427f7006bd88a53b01
MD5 64bea00ef065cee836e22d961410b134
BLAKE2b-256 7e3ec69943230efa465f54fa528fe4337b0704a53d8cc3d21a4082cb8226bff9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 279bba5ce0d4941abe42996030f896efee5dd251c419cc7a6c4471019a1ff927
MD5 41ceb7aa2b26fdb14704d598c0c0c824
BLAKE2b-256 746b4ee249927ddf95a106bb9f82f2bfd5e8d2dc2d36f2e9419e5f5b88a314aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.4-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.4-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.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 59c40974783f937e4a4fb879d1c09ee10b9c7050057e222eac14513cab022e0c
MD5 440df9c16f94aa5c2670cf5a19c7aa48
BLAKE2b-256 a35da558b9b8818dceb749a05fd314e7121b53ddc39c03ffc0bea9317d918c6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9279950ab3cb021ab560a3351a2de6a9c64d1db4851e7efbb6d10d451e612f9f
MD5 13f103dae8d81eb6b748d1cd0c1da6e5
BLAKE2b-256 fa3cfa236e1f4bcc586b90245c77234621ef5717cd8105c776755fd437cecb62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0f73b79c4578cb07089ffa984f3a1a8be0a937a0bbe9ddfa56f085d08eaf590
MD5 95134dbf1ccd5c2c7cbfd4c805645d17
BLAKE2b-256 16f843cd44d748b27024206aa679da31c1e2f3d89bb7992a29ac2f71bc7b1c46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 653.2 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c66b37bc6d8333bcbafe900f0a25ab3ca53e81e94779da1bb02c935f257a06d4
MD5 525706ad0ce6b5934875bb8fb7c9b548
BLAKE2b-256 ede1c176d8dfbc785cf5b46d1ad306b498b277c7d3f7e5acc59ad59c58545d7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f9f750d99cba407838a40df75cfe59668362ed7aef721523c49c14f41e363b6
MD5 f7c5d9faa53f019a793c6bb3c2e01c62
BLAKE2b-256 3b5ab38550dce06ae3de0d0c5052769c4bd3c4de29a4ede974ae479f1ffd6682

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7690d53e2ef10e1e852d463242e42a66a9b20f0cbd209d054d8cbf39516236bc
MD5 d6e3c594da808d5519a6e0fbed725e37
BLAKE2b-256 bd2abdbf20c28142745da75c0017246415d1e4c5dd6b5bb85be0614ab7f0279e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 daf6e118f07bf7da2c3b9ed876e494dc4d1ac1d943bb0b7782b1c07f78de2fae
MD5 dc8716da6f2879b6074e96e68816696d
BLAKE2b-256 f9a86db0bc173dc33358c65ff895e60db5f10dffe254c58fab7225b48e9411ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.4-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.4-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.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fa32c3e177e25b617e5e4c471e7c1fce0755705de35a25de8fdf3e83ad1c5919
MD5 9ea0b572742918d3c2babbba8aaa14a4
BLAKE2b-256 a1a19eb9acbc1f3f3c7224f148e0576f3ae29b75ec962059df474b426e579353

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 650dc476b475c2b45f9fd56c47935d7429a7b04ec34fe3426ac19a81a7fcf940
MD5 41c268604160d066a6c49a4f63e3a770
BLAKE2b-256 bd0a9df2e8f5e1e787de5dc5a7ff871d03e78848364ace7252e67a29229a56ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71aa5f411b3650df7158893ff590b85a918f8ca39aa481cbf0b8719c9fc4f2d3
MD5 a50d26edfd299d6457dc208980b925e9
BLAKE2b-256 a10a4ab99cbd56c2b02c9aa6a53dd180f1c480ee74175945fe56c9abf5ac68ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 653.2 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e0254a49f3b86470770ebf0e79a3fc76f97234087add24ee899ffa129ea501bb
MD5 a8a4ce8ce45f9d5b8a329346c1a7fe6b
BLAKE2b-256 29f73d17aedf188d6fa6ef2bd6b4f08054186321cfa0e7920b49650b5bbbadd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eeca8af97659f5368f487937134480e9dc3f01a8ea882d2c7615e9dc61e50c16
MD5 c77e133bdb2b93da9d7bcfe0976b8cd2
BLAKE2b-256 fe9d177ebbbbb4ed3e061e319473896ab3d873e629c6aef58ee6f3a06486a23b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd305741104725fafdd3c8f81c26c2d905bc730e85c59185893cb5a1206825b9
MD5 de33e24f8755993b0265f1de7e6d1105
BLAKE2b-256 b283bc90693c1eae5f5f947da61a11fb95f0e401ee696a4318afb9fa1b2d9ae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 725a62fca28f9d26d364c4662f920bc925ae7f9e884fda1cae633e2a97cb0704
MD5 e402fbc36044d50501230047ae98be9b
BLAKE2b-256 f551767343b24c618271c12b3354de06b5ece2513ce8f863c5bc5622a77cc7a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.4-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.4-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.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3093eb07a533a62e2bb3b8b39f45b78286f7fa2043afc4c29c2be348a0349e08
MD5 a863f43ee411c0ca966ef35f8c134c80
BLAKE2b-256 6c0927e3c48f801b1e82f7a1a1a212eec2ca06c9b3dd4757350b32c52789021c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f971ebc8bda6a17cde645a448ba41057927e979992f9019097636d99d5662342
MD5 f2d6784e56deef87e2b4c7f1164b4f54
BLAKE2b-256 717aaa00bbf4ae0c561e48274f01e44b0c418b4479261f70e0acdc675400ee3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cf040711b50ed05e49cd2ed65c868717f9d18fd1ad796c3b68959a28a1f953f
MD5 99d1793334b84ec342dfcc39c6c9bc4c
BLAKE2b-256 fa9c42cb3ff01b867c1d981c8ccf7268215eb9be905f23e43acf8505c8ae82dd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 653.2 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dbf0dd8dfdc021220428920881c1c17f71244c89b228de2d617f68595ca584dd
MD5 f1ef6652aaa16213462915a20e43931c
BLAKE2b-256 8fb1cbceb82730639a170f28ea1f5cd1ae5357942b87bb1407ebb1eca0d8d1b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24f9feef1c988605eda7024b4acfee314cdd5d4700181b801da02dccd63772db
MD5 357ae9af5639314def70423f0654a6b5
BLAKE2b-256 b4ad0aa61f9dd8f83a200b57fa7654de166be7b59a1856cff5f85964498c1be6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8deb856e2cf06988cb5e4fd9c608ce85f4e5c9c08fb65621ef5977211eae7ff2
MD5 7b9ee4ff3127bfb8796cc2d249cae18c
BLAKE2b-256 3271723f3bcf0ba35512c9ebad7de407febacdf7de5ba85585cce5a7f51e1b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d36a3e6ea557a316a0c29132f3ed21cc8b816068242b01e945cfa32678cb4f12
MD5 c2b7874a47bf11c3adaf1c928dec5541
BLAKE2b-256 19f3f8b222f7f7db821dfae4c1bdb337a6beabc26d0f1802670495dd8539ed0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.4-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.4-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.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 101cc07aa2a3f3dab6de010adda22eacde22281e0ec9a1bdef14db2706893984
MD5 2a87a15428fe73086070de97b4954279
BLAKE2b-256 249ca4ff270323dbbe442ea574ee8bcd123a63e7ed380cb3a673fb6c916ea7ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 00f45aba7475e231c1e7865550497a96636d7dd7b7d7489257f994173409507d
MD5 923916f1b81ced542f9255c73b6cade2
BLAKE2b-256 5efaa48865f64ee8d8f9fd0cd3e26ea0ef0f62eb5028eab44b832f1bc4e2c3bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a24227068bfb1245c2a0d04eb31b568f79630ccbd3837df837ed8331730eb7c3
MD5 1d4abac0fab93401c4b6e6cf85306851
BLAKE2b-256 7430054e3f89b65dfa6cde9e71cb7a877f17993fb9a3252fe7f11c1ddb06f57e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 653.2 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 78da5c6fd7d493a83d523136b787479be028320e1c6de5428ebc601654c3b0a4
MD5 0c0c959218382a232484271f286ae6a1
BLAKE2b-256 b537414dc0de9417124d315163e46034b6e46b96832a621dd7053b171065cb32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a6e7f6d7368bf60cdc0a1342746794795525cf688a5bab0b85e8dfbd68d42be
MD5 6ffb4b02c6b0b4c17eaf26fc8fe1aa2f
BLAKE2b-256 f58be6b7c1f4730b679eead678d095733439ae664c321c3e52eae0f8caaeefaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f979b5424880c7a76519e93dbfa497ee4088f9d7f98d28e54fbe64a7eed48ae
MD5 aacff9fb70603f23cbfc7f321812b7d9
BLAKE2b-256 37ffd1251f72709ddc81fb42c453ca2da03410f1e11a081f7f784e66f89ad99b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04312e3f4e825b2d947da7714591a1004f46de60cd9f961f0dd6618db85cff28
MD5 49ee251feaec4fbcf0a960886174581f
BLAKE2b-256 128d5e6417901585f438cd85d20889301f053a642b975a13551d0d07fccf45c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.4-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.4-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.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 78daa48504dee22367a1be103b6cf98cbe1367545b0fa2063c95825885101fc4
MD5 9b6c1b0bc16468e29681117b726c6b46
BLAKE2b-256 f58f8ab70100fb42a47070144044ed86c9c6592dd09e3604830cb5a6afd7b7a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d3b6d05159cb16a3ec836e01f131c6f7681f21fffcda21e9dab738f84eaa2b17
MD5 b6c0c6eb520d793912e0ed8d47f328ae
BLAKE2b-256 1c63f0ea0c6cf78aa6577f53a515cc3ec6786aa71de60554876f9f59c47f7735

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd067138ec44b7a28d49982dd83d7920db85dc9ff4c5272d790ce1f82a06b17e
MD5 2afd29a9a5e25013afa582c5dead1191
BLAKE2b-256 b8c4753c7f1f1cb9efff05df182c54a726e4aae1e69825efdb5b6c648306a368

See more details on using hashes here.

Provenance

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

0.1.5

43 files

This release

0.1.4 This release

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