Skip to main content

zigfitsio (Python)

Python bindings for zigfitsio — a pure-Zig implementation of FITS 4.0 I/O with feature parity goals against CFITSIO, and no C dependencies.

Two layers are provided:

  • High-level, NumPy-first API modeled on astropy.io.fitsopen, HDUList, the HDU classes, Column, Header, and the getdata/getheader/writeto/verify conveniences.
  • Low-level 1:1 ctypes binding under zigfitsio.lowlevel (the C ABI from bindings/c/zigfitsio.h) for power users.

The native code is a Zig-built shared library loaded via ctypes; there is no C compiler requirement at install time when using a prebuilt wheel.

Install

pip install zigfitsio          # prebuilt wheel (recommended)

Building from source requires a Zig toolchain (supplied automatically by the ziglang build dependency, or a system zig 0.16 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
    hdr = hdul[0].header
    print(data.shape, hdr["NAXIS1"])

# Build a binary table
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
)

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

# Structural validation (fitsverify-style)
for f in zf.verify("image.fits"):
    print(f)

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)

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

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)

When running tests against an uninstalled checkout, point the loader at the dev build:

ZIGFITSIO_LIBRARY=$PWD/zig-out/lib/libzigfitsio_capi.dylib \
PYTHONPATH=bindings/python/src pytest bindings/python/tests -q

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.2.tar.gz (545.1 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.2-cp314-cp314t-win_amd64.whl (633.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

zigfitsio-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zigfitsio-0.1.2-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.2-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.2-cp314-cp314t-macosx_11_0_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

zigfitsio-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl (446.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zigfitsio-0.1.2-cp314-cp314-win_amd64.whl (633.3 kB view details)

Uploaded CPython 3.14Windows x86-64

zigfitsio-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zigfitsio-0.1.2-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.2-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.2-cp314-cp314-macosx_11_0_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

zigfitsio-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (446.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zigfitsio-0.1.2-cp313-cp313-win_amd64.whl (621.7 kB view details)

Uploaded CPython 3.13Windows x86-64

zigfitsio-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zigfitsio-0.1.2-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.2-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.2-cp313-cp313-macosx_11_0_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

zigfitsio-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (446.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zigfitsio-0.1.2-cp312-cp312-win_amd64.whl (621.7 kB view details)

Uploaded CPython 3.12Windows x86-64

zigfitsio-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zigfitsio-0.1.2-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.2-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.2-cp312-cp312-macosx_11_0_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

zigfitsio-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (446.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zigfitsio-0.1.2-cp311-cp311-win_amd64.whl (621.7 kB view details)

Uploaded CPython 3.11Windows x86-64

zigfitsio-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zigfitsio-0.1.2-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.2-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.2-cp311-cp311-macosx_11_0_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

zigfitsio-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (446.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zigfitsio-0.1.2-cp310-cp310-win_amd64.whl (621.7 kB view details)

Uploaded CPython 3.10Windows x86-64

zigfitsio-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zigfitsio-0.1.2-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.2-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.2-cp310-cp310-macosx_11_0_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

zigfitsio-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (446.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: zigfitsio-0.1.2.tar.gz
  • Upload date:
  • Size: 545.1 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.2.tar.gz
Algorithm Hash digest
SHA256 5ade0f31bd16de5b56d9a7860a63265809567c9f778c7156e8e0861126261633
MD5 aaaf34215f33d2f2a7fe048427201b68
BLAKE2b-256 5c4031b312daa9b0cbb7608e34cd7f58c7b68ce051b3e1b01869e60ed5301c5d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 633.3 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 41d249c23be1e9f6cd8bcc26c6d482810e7e815289e87f46eedf0c94b3dd4b26
MD5 6c1ef485aef67b53c36551d4e7303110
BLAKE2b-256 369b52242493c4255f00b7e3e6a5f15e1227ae6c6d0c8b0f5ccddb60a2e5a25d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 337e249215d2aebea92d3d9627891f033e8c62d59f267edb9cb13771abfbc7e4
MD5 623df078033f00a382ffa0bbe4da5e58
BLAKE2b-256 e47c183ebee00b35dadc7ba7109f0d5018742888812470fed796a71f0dd55f30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6986e90f651a294b2ca13e3cd738601af129240ee894af8c8c52aa9976c7ca4
MD5 d64280cbc7ef41f6696e4e76720a9090
BLAKE2b-256 f4f0a8b605da998ccb981ce4f2e0efcd4a1e22c8aa0ab925a811b68bb51c84e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0bbc53915de5dfd57553a95cdb1eb3cafc4b2f7b150a1153b5b4e42798c5268c
MD5 c8861afd35acdce842c9fbec5ec3de0c
BLAKE2b-256 7cea4be727ea9d1c1714aacb2505fdf99255d637891a242e84536ff5c45f50a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.2-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.2-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.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 77f7a60e6b9c30fb1143e321257752900a993a7e5c9955497dd55bfd8a085987
MD5 61af6a052219bfc3c6db1f87677d5c06
BLAKE2b-256 a07c05f3715ccaf4610e6bfa5026d52a700e606312e5f28991ccbb7b2a79e106

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 48496c6de5c7809366fed97d662b50ea0af2c164dcfd107b118dd67a75168d50
MD5 572392df48b7fc07770426cccc0e25fa
BLAKE2b-256 c19fb38004a86af50ae41e93f2746c53021dd4ad9a13cf30b04e32e3179cee38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b73be0180824c7c26eebbf7b4fe4e3222640e49c8e3d6974b0322b54a869368f
MD5 a9510d71e10ee9c0dccaf55f7972c3f9
BLAKE2b-256 37ed43b616254bea9ab273f7db19348b30e0ff822bf318b3f42286cfa33844ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 633.3 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 287607864feeaba246a3d73fbdd5f8cf2e574a7289822fb06f42d43180f299c7
MD5 c2bbe00a12e9fd3b3a88a8a09c62af4e
BLAKE2b-256 9682f8fdfaefd9334ab9ab97bc65431141cdee84fa07e605f41381e214107443

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fdea9d80846ae9cb78b5d880041a0b70da3c8842ab7dc2b030fcec3a49261dd
MD5 dbf2d1c1af9b26d71313e9f10a8d06a4
BLAKE2b-256 1630d5d329f98f2cca0907d525d1f45dbdc4aae7aaddef3a03201d41f3e62cc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7dd11a9e73c56bcdcddbb7e9e4ce6e785e7933e7a0d27d17c7dc81904e7ecafc
MD5 b5e36ef502f71cb44af7a8ef58c14761
BLAKE2b-256 8ab247fdde89ce9d9aac88f137c68758ed04a27781e8731916615da936b36a0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e298ab19803255031edb6783c84ca24d538db0b4dd58d9f221d0feee308da05d
MD5 e4aa6dc5c2e0fc5af82b3779120314a2
BLAKE2b-256 29d175a7878ea23be2bb10dbe6ccef7062b717fbd3b6d12269d8878e248591a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.2-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.2-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.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 828ef1ce70ce3e85709ee688b902067f071419c9428bff07d9bda263fa01f832
MD5 23e46d30a96dd7c5e7af89dc4f4caad6
BLAKE2b-256 b47bad92070398511b95166100d0be957762946b97e5fdf1125de1b50e3c384f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e7e9876603cd0a5e49df4066fc00710738af7e19b776a8dc4caf0c7514578aba
MD5 f21976fa558845ee877c947e88c8dafe
BLAKE2b-256 74db94b37dd7f3eaa2743055a9ce8697bd5f2c96fff0330da84058c8c368fad4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4152a47997043184d9f347a0471602ead7ecd7c63e482047f433b16290ce372
MD5 ed8aef30099472217ccd38880a26e5ef
BLAKE2b-256 33cc154899c39cbe7ee6c6e750169a19134512c87e3db3ef3eaf82327cc5a95b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 621.7 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 898975be17a9ed06bd892064c2851b205827989e1b37c14a2c956ddd8d1a9d89
MD5 d37982f494cb43a5e1fc99d53b35460e
BLAKE2b-256 61487472c1dcae2cb844c0f539126e751bc42911867c217369250f81494611a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 963cb85ed8926e63f67c93ab3908d36f41c3d6dbc0c709b060612237d89d96cb
MD5 e2ab4e364a2dd208ae5ff6d33f617d65
BLAKE2b-256 83ee688cac764166d20a0886d21c284cefd6bafb5c4070c6b7eb0274e611ca4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f155252f73e852397a24cdee44b1515f7d2ee34f60eeb3503dee6c39e801617c
MD5 5e32ecda4cd27d61afabe120024e3719
BLAKE2b-256 80cb7cf6e149ff033b83235d7be9ae58abbbc8dff9d114813e30c2bfdb825c69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87b71d48ad00aa6f70b80b9d7ed2b28448afc43e8e481574f7f305992f385a1e
MD5 fbeb05533738e7757f9eafb3dfdd665f
BLAKE2b-256 ad23ee70b2504f8ba70f1250d6bc04b5b5845209ed5b170d186f1d05acb0a19c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.2-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.2-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.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4a94a80fbca42da317c4981a0b83228fb814eb88057d5704b1ce6776e76acd07
MD5 260d432a904b4318e418ff922e53b8e6
BLAKE2b-256 147f560cbaa4860ef9301040fe1a461c4c78f0e34d8a693685a75ebea9477e28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0844a1055d4d382c4e0672f0c34bcc40cdadcddb15ca4d1028568daefb95d603
MD5 f998ad933f12cfb3975fa08457d224c1
BLAKE2b-256 0284cd9755d01485a2aff3a565986b962ba6c40b59a2105d80e64a41767a0deb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b3e6d8be9ba80964a06fa24d18453d0e05f9730e28c170ea1f9b77828941315
MD5 5ef8d62954b2e6c88339043473948006
BLAKE2b-256 886f3b52a2bbbfd940393d785810438c6ece7e47c9f30ba7a5ad377af93902fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 621.7 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75b3b6b7bab659f1a62928e1967fc5cceafd9076923e5ad6fc6bd631cb5568e1
MD5 a4886a1f8db7bc3af4c1e539cd590e4f
BLAKE2b-256 0d9a890c02d311f075fcfe157e191b6a03e1504345897d5a1f8ea1b97fc06bac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3f171a81d8fd5ec14b56c9ec81a9ceaadc964b9becc4423d4f282162af965aa
MD5 f86940954ae2c98fa516cc0145470cd7
BLAKE2b-256 c2bcb58c06992196c3c1c1db85dfc99c9e33336b665cc95fb87a3be3790a8f8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3751248506b22e6c4675c9d7b23a876ce8780d9c89c053f37e1e86a5f3cf1513
MD5 d91f191ab7f0b9ce5b0f7b66e0242b3f
BLAKE2b-256 fe4961feb046742ee03398707d890f2dcf8ab42111b5051558e4d0c53fc42df1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70c6a73a60877592e4de4a66673364e9d44efa1ac9dbcb082058c4a4d1271878
MD5 3edeae2cee1466f9daf45f5a4f36c33d
BLAKE2b-256 668c4a763a785e962e49a66f1aeba10eed8b4db31ff6b769f27eea70eeff7776

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.2-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.2-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.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 953403fb776eb0fea31c7796ff28e04a8d647ba4ceaa7ca32608a20b123b04d6
MD5 024a4af9e72e5ba1f12a3cff999b5992
BLAKE2b-256 8e1b6b267678c23ef658cd9e0f74f8eb97fada20e4fdb0b82a949b9bacc5bbe8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c365a4359165c4c13916a16378c24059681fb9a1331bd3bbedd11f04bd18b883
MD5 5a7aa3faad68fee47320985f81b5ce38
BLAKE2b-256 b5115ec1b85f61b63ba27f52ee5c2d71d19d670c15415a0881b22d07d49dff5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c3e5dd34ce7e7aa8846cc739d73a52aa247878fd4a498a76498f2b4828212be
MD5 7e9a69534c4cd61993d7bd4ddb9c68cb
BLAKE2b-256 fee74f95c0c7389ac84ce1cf96c1b91c8af321393024b1f3d31d5959482dd5ca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 621.7 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cbaca353f0cd48b5d8b3da06d4a5c2de1ebaed215a2d17ee5e11de26f7fa02ed
MD5 632792d1dd3ae2edfcacbaef81535f8d
BLAKE2b-256 ec22af7ce35ca75cabb03dacb0b240bcdb8bca40adcdba95729d02c16804bb20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3debdea0f55d6ecdc21248e5e7abd8ad4203a57123bb456b52c31c53d72aadc2
MD5 e8d72b597ecdcc03103dd85f0733d0a4
BLAKE2b-256 81d269aa23a9782044f1500ec25a3358568b42946827434cf69583d6d60902ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59b7a5aa22ebb0bd2406285a795d3960282a4930c352ec4c8c9f572470db5827
MD5 d21c5e27caad42b2f62707390a10dda0
BLAKE2b-256 c275b02ca53e86f3d17955702c3e268212e241dcc9114b07945a0effb2000328

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4193efc7df040a5f4c9ea8de28de7e871f23dcf0ce89f444034455b906ab2425
MD5 3a3d21a4229b07824bbf8ca8019f0434
BLAKE2b-256 bfbba01a4a8baff9c88f529b43c7f90d181ff41d8231342ed3644a9f5184301d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.2-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.2-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.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6e61cfd2e457597bab2213a6d871e180db0e039e7a254ed282d1629bcfc3cb2f
MD5 f4ff8b81b8e7d2e02b497c867ea94b90
BLAKE2b-256 c815a6b15d1e150c7f04ee5d8f0b8e51276aae2c864dd89bc027d7f4a302a7d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 12d96ccb2dfba7b642978b4c4f7232973ac32ecda450a756bbfa40541b6dc3c8
MD5 a539934cd89559567723745d70d6ff8d
BLAKE2b-256 9b5e7410137e3924f4d135a3613a61268f682fea18f13ae4a24ebaba74851d66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96f5e2ff805964e901c415b37d3fc202a48354bd0b80c59f39cea96400e828c8
MD5 5118310c9bf8f90a79ea4f84bb900857
BLAKE2b-256 c5d569409239cab3e35f1ae287e74ade273f7c613cea1209e30d0b1b3ef5945a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 621.7 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 04c66360f0d24c400ead21f6162b38db5e08f6f42bb402cd834d95994273b6af
MD5 eadb5e21d5c5e217ce23dbf7cb3cd49e
BLAKE2b-256 a2411cfcd468bc311d7366a1360462e148c7e7d32cee8dfb786ef9c24192fdd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3699bf53bf0347d092b9689fd2dac1fa32bc78c03836113486c7ffb5819140fc
MD5 951925b41b187ae0e805e73b8dc22dcb
BLAKE2b-256 d0e199f84b2549869a97f1210d0384d7509aaa316a9005210ee450cd8df71161

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59c2cf9415705484887c67df3663b46a1aad2c52276c4660423bd95d44212e59
MD5 dac9c00709ecf18065fe0c78a08ada1a
BLAKE2b-256 6b3ffca97755d3e34eccb49279b1c65c08fc240c5d42d2e3d94b071dcfff1f57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9a4e7f187b9a28c1e93c2ce6b1524c6d2b4b89878e7d9d3566a98986ccfdc27
MD5 f16de47393260e402b9e2de3de452095
BLAKE2b-256 154f29559ec327b07cf132bf10d6f3fdb5668871fd3a825074b9f216a16c4f66

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.2-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.2-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.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d6c961157544a0d42dc926890ca4c26cdde51fcf10c8e6a5571446ed372cbf44
MD5 2b5ac9dcff819304a6c6c5f901fcd271
BLAKE2b-256 1b05cf589c43bc2233a93aff18246b796ddad882ed30af43abce8ff5e8ee5795

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0788f27ae82400230f8b08bf81d8aa6667f9e5c35776dd39c814d7d5191b376b
MD5 e76cb5b296b73a291994305eba6788dc
BLAKE2b-256 c975794efd1f9ebabc7fa11f11c6003fad93f0a5033a2e061c158b811059cfef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ed5cb02c6f3f8ad7e51e07f36628e8e3f4ba35cd6d2d090c154f6c8109e2520
MD5 8dceacf3e81155ede5928aab8ac1774b
BLAKE2b-256 cbd202c1d0a2b1f82c7d37acbd094ac49e418a15aff32060457e4bc202bb3e1e

See more details on using hashes here.

Provenance

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

0.1.4

43 files

0.1.3

43 files

This release

0.1.2 This release

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