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.3.tar.gz (584.9 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.3-cp314-cp314t-win_amd64.whl (666.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

zigfitsio-0.1.3-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.3-cp314-cp314t-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zigfitsio-0.1.3-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.3-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.3-cp314-cp314t-macosx_11_0_x86_64.whl (505.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

zigfitsio-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl (460.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zigfitsio-0.1.3-cp314-cp314-win_amd64.whl (666.0 kB view details)

Uploaded CPython 3.14Windows x86-64

zigfitsio-0.1.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zigfitsio-0.1.3-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.3-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.3-cp314-cp314-macosx_11_0_x86_64.whl (505.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

zigfitsio-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (460.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zigfitsio-0.1.3-cp313-cp313-win_amd64.whl (653.9 kB view details)

Uploaded CPython 3.13Windows x86-64

zigfitsio-0.1.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zigfitsio-0.1.3-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.3-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.3-cp313-cp313-macosx_11_0_x86_64.whl (505.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

zigfitsio-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (460.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zigfitsio-0.1.3-cp312-cp312-win_amd64.whl (653.9 kB view details)

Uploaded CPython 3.12Windows x86-64

zigfitsio-0.1.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zigfitsio-0.1.3-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.3-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.3-cp312-cp312-macosx_11_0_x86_64.whl (505.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

zigfitsio-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (460.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zigfitsio-0.1.3-cp311-cp311-win_amd64.whl (653.9 kB view details)

Uploaded CPython 3.11Windows x86-64

zigfitsio-0.1.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zigfitsio-0.1.3-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.3-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.3-cp311-cp311-macosx_11_0_x86_64.whl (505.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

zigfitsio-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (460.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zigfitsio-0.1.3-cp310-cp310-win_amd64.whl (653.9 kB view details)

Uploaded CPython 3.10Windows x86-64

zigfitsio-0.1.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zigfitsio-0.1.3-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.3-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.3-cp310-cp310-macosx_11_0_x86_64.whl (505.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

zigfitsio-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (460.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: zigfitsio-0.1.3.tar.gz
  • Upload date:
  • Size: 584.9 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.3.tar.gz
Algorithm Hash digest
SHA256 4a6b60d1b5e1d06081db1dc963af6fcd12d3c70d346212431b83ef63f7ca88ba
MD5 f364a26748516c7f1e5d520cfefc7172
BLAKE2b-256 c226ae40608dcca616be40bce9986e70f656a09620a1bdc71a403269f7ef95da

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 666.0 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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a7bbe79b0b7f156edc9ebe8fc669cb71c528be88471e0b52418c85cbe6d780fa
MD5 551101d82dbb2942cd1f22516c201b00
BLAKE2b-256 f71250322b89d79634a7e1d44c4ee04bd8b122932053e6d8364dba0464317629

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0a8373a5d5064e980cf886b6b765e907d9c4a8938e5d051cec2fc7688e55625
MD5 600d9ec7cab585aa87c0a43d9f2fce8d
BLAKE2b-256 2ffbde3f2545dc43a9b38945774280d6adddd5297f755ea2b3b9e52f478ed075

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0993ba4ae9e588364608e18c323d0a649fac0b6979ed095e96b9cce61ffcf840
MD5 8ea7831b24aae1feb8172b7f613a35d1
BLAKE2b-256 57adc27c1db0112819e14df4c1801a600d017266da7d67e2355aaffa6925f66a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 638cc7bb1d410dd97be029d6903b915804c5eb42f51542099f574a76e87db89c
MD5 fc3c60155086109f209b3bb290608a7b
BLAKE2b-256 b5e7c290d63c0611de1d0aab2073cdb2763634bb07c9786ebf3b2823eeb16daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.3-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.3-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.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f46b6204844ff586feb38a5c7a21b2ec84fdd8984063ba57b075a1c59c510ca6
MD5 67e66ce9a468f0db48edf82d1826b665
BLAKE2b-256 7bf95660fc8bc966174cefae3411511758f13fdaa816e847ac2c2c62b6134325

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b10dbb214cdbe975d7d897ea9da397a8e50b2e7aa8fe0320c5da299795e7b13f
MD5 b2b5305887b9c5debf58896ba1f0693d
BLAKE2b-256 8356c1aa5573b17a81c469be21aee42cfc320aae5cc466902e58921c23abaf5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27f4d18fe468dca14c509c03f471d036ce06306bed764fbe3971c2565203a3e0
MD5 6aadee90533c04ecf8b7eeb9023c7c60
BLAKE2b-256 a2914c46bf1187249ad4d6bd5d8f4e80b945e606c5cddb9f5b0ce31b5dc2b1a5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 666.0 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4c113987d770ca64fcd4a9e98660e6109f17d949fabaa6e9a0298618c6c91055
MD5 c7bde462c429e8062120236f57a0e1dd
BLAKE2b-256 b53bc23704046beda749177e82f401104128e74a3b85621fb0ef9399f51424e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fed8555411bb8ac47a35afb78c5c3f273217f6c53e4dcee9e99841a92efac5a
MD5 e13f5f919ea5d08530e8db937d748f2a
BLAKE2b-256 9d98aa4893b8e63cf3dc1f543ffbad5cb5dc2613f2d842565a64156a42eebe57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea51d8e2038f916752d2836232bb55ce290013abc8dc587c94b30d5256fdf8cd
MD5 dcab499dc134d9a49fe2dad05e09ae72
BLAKE2b-256 ff73d418e65b21e9dc795d061ab25e9684bde58958746c890f4b96c4343a6981

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e2bd1a0e18298444bae0679acb04ca229f641b717793dbff5c9fea1d842a128
MD5 265a26ac65a237dd215c55ffbf25a7c3
BLAKE2b-256 24790c078760964d1eaa0f3332e01cd64bf7954ff2edac92e66d0431126fd436

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.3-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.3-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.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d39ba35693ee4fb5208b580624d0098ab55d291e017da3269b24eaa8bfcd31fc
MD5 cd28961decbaef6726aa32817c37aa38
BLAKE2b-256 a111992eb9dae6fb5cd1975bd93141eafa79888683c20dd69d8228b836ed8c1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 59859d4d64a0c08e4203eb9e8825e47aeb330f35b2f7f124f6bb59e858fa67e6
MD5 83b457d2e2979b599a11887f9285f16e
BLAKE2b-256 f573fc1b817a96aa609bc99b413882f0aa76e90f508569c99270e584d711ecdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fbc8ac8d1dd922a61a6fd2723e9708a703bf3b321bde812a5c83f8ee3892103
MD5 fe5d0d449f4644a94a96f4d913a00419
BLAKE2b-256 007f71560d11f8f0043357843c923a7c92b25c9ed3766b200dea1b3d9c232889

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 653.9 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0e7b11567ff6bfd1c5f517978a1f0f1dde9a8f692447aa510f4281d5c65cfffb
MD5 30a7c84e51007b03e97305fec0f2e6aa
BLAKE2b-256 1866570ba157c9f406cafd6474686b04ffdbab716a82bf494fc16b37a103fd3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 387d4bc6837d227cb475584b2febff98da9aa622b5cfed3d47610a12c229ca51
MD5 c4c30968e3a7abea858bba4f1193468a
BLAKE2b-256 f3a70643318b8bdf803b45115f127704309fcb90dd62d7f7e601f0ac2ee5925e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03782903138a056b490b603c5283613f303f851343729bace73f73be08b8f2b5
MD5 eb1bf788a516c7efd5b14d655546f9fb
BLAKE2b-256 6a5824280c08524f999bb14045dded01028bb598db403b701a9359d45003b2f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad27c172d2db337eba8a3081fe9bbff7c5de341c3e953d2e8111f1f1d5c06831
MD5 7fd4c36163eb91c82d26f64b5b797ec8
BLAKE2b-256 42025a6da6972af64b47eb9b1fb2b8ac772d51a8f83ce942835e51f86779bc32

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.3-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.3-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.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3c4babe4ad03766df5dcfdd5547fc900eaa5a50bbebae5a0987b22b8e29166e1
MD5 e6896ad01558c7e840f6d4cf0a9eb120
BLAKE2b-256 87da99a12209023e2a2ca74d7c63b989644ded9f3cd54009abf6612b59f6c37d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 bb985b89ca133393ccc9b36b79c729665373915f80dd407ada837a4276df3fa2
MD5 bb60b8d1574fb8467625bcc29f4b1f0f
BLAKE2b-256 af8cfe2b5fe17ba715d806b0017a7d028076d2ab85fdd93fae9774f6c8e2b012

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9323fa0a6ed571a374b0a63fba89a28d92fd0b66127aafdd0924c81dc9d64e26
MD5 5b29493ca1632a037cfc2208f6afc47d
BLAKE2b-256 3d8c6d8365773d067cb0113957b1917c0458ad9ab509924cf341f589dcbf7b35

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 653.9 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a6e150615f0e1170aaafe67012f62989645f22ad6eb9c6892df6e2bb8c6c598a
MD5 6f6e9d7b84387160935a5d87354ed21e
BLAKE2b-256 3d0c1e97a005bffb92969aec1f366ed5d1aa35360c6044f5d006bc332b691b26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c70325ca78ef5c7161c84d0c091f56749088ee386aaef92fffcc0717196a30b5
MD5 06b18fdd4e1cc1c441e8ab4cf3c4e030
BLAKE2b-256 c9a65d0e44a5fc7a0f5da5b97ae3d973999689c01bf8c86f2eb245b9c2e8e373

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d97b73bdadc0a7136f77556367b67a6bd10b68708fc7c43154b25e6a977a274
MD5 184f32b79d47739758a797a8b45842b9
BLAKE2b-256 7a38055a1400178aa88e0cb34dbf4386b195cea1560377d0af5758f1ed213c44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c084499f3682346d2031a35f68c6beccdb8fa1e8d6f19fa64b3ab50a1afb999
MD5 4a6447230073121ae2d9a1ddfc9bcf93
BLAKE2b-256 a768986c73f696ce79a1716bafcb5a43a89984d8b5beb5b130114a7f5aa76398

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.3-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.3-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.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2b272a7d514a537a51e1b478cbedc3f188df19b329a6a7b3748b4bb85b16862e
MD5 29650c22bd9577c81d3a13134a259be0
BLAKE2b-256 b236d4278a848ddd432ed2cc51a6db4f8a28c2151b96beb117736746a37be5e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 75813a3251ac2bcc0d299df1c4568815f8ef54d6d3805387ad1b7d77d31a097e
MD5 6f767f9908897c1642bf81789f492cff
BLAKE2b-256 87759170cc450007cf037734b2b2de1de5a44c09ab9a298e562656c6f23ee856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c94fca52e612b439b12dc48df0b2c1892ce0ec224e09f6fe704da9c58db0aa7
MD5 ccd394844d81ec67a8ba0ee83c4ddc06
BLAKE2b-256 58c8e5afa98957291c663b019a34e241c4adc1d97452eb30b2c50ef3093cedf9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 653.9 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8bddd1ebea29ccc1a3d778a067857bf074db2ae13146b56a72608d4e8ff1bc8b
MD5 8d11c49419c3e2cb2892af4ea521da23
BLAKE2b-256 cb86d4545409bcf3fc47e75bb8ff8929e5ad92dfe67e0bf90aed80de49e3193b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 948dd453b6cde035eef0b13a6aa82a4351cc089346a4813c765f6cda176f84b7
MD5 f7eebc4ee461b2738d4db6ded1dca156
BLAKE2b-256 fa712b4d62b8822a2eb54224a0879313381c982025f0e42da9149821a35311d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98af2acec7da461d20709e226329889d2c1949da9d86ccd2f84409c1fd9b37b0
MD5 4e93c64fd002ab7c14335c0b1f18d00f
BLAKE2b-256 fe8133b48495ed3cbea5e4ef208e015bea9e7479ea083c8a3b5646c24e334094

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb5bfe2ec23906811983cbc374eb4b7b0d605e44a2a0718f40c9a200c298ba34
MD5 c6dbbbffba7e5b44c1aaf12153bd16c5
BLAKE2b-256 dac86434d5f8dac68d3b889d86b7d40f2dcd7e563ef28dbe5de5d108896ef7f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.3-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.3-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.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0d421f7888b62a7bfa429bb70c3adad963cee7bc4a4e7de96481a234444296b5
MD5 7cd208ba044955b77c5dbb470c6e37d2
BLAKE2b-256 bda02fad4ae03023166226714097110c0045011053b5db9da647a6a86dcdf43f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c7a1067f23335f1c1a1515831b4b71c72eec8a70864c0308a208904f1e557156
MD5 8312bcee08d1c634c8626a9c8af4353f
BLAKE2b-256 5d222627cd8a5d92428facccea4ef58e99d0abddf6397c114434ca11915eb705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca0c8a037c452926e4779ad8ef8c795e7f71afa67e458b903ce62f05e71df8e1
MD5 29765189a6fd78c1b3b1ea39ca6c653c
BLAKE2b-256 f32a4279f4d84f70d11ff60686d7c1769610ac8227f27ffea67dfcd8590b5b50

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zigfitsio-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 653.9 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ede01049e39fc94b10d4d57690d777aa9c6226c436b9cc5df07f9075cead0d05
MD5 0f6b17c1dff6df01ea0dc116250789f9
BLAKE2b-256 9bffd590319caf181f91c61c6880eaee6e794fbaa1facf1e092af0eb03203671

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95d8feaffce9b1f0776686ddd83b9243f17c8232631eb18e125c329fad3f7a36
MD5 4ba1caf967f22cf213694e24b8c7401f
BLAKE2b-256 eafce15fe0632911f6b371db632f64366ad0b7902556e87a4ba1adc30a4f5eb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a55effb4b888b41dbe8287e2d66e025c9abd93df430b150e8438498e5ae7295
MD5 ec36b09ddb059072fad22fba95127b81
BLAKE2b-256 1de546360ad09351e3ae66d3d8f9fa62ef43b68fa4b02d4c44e9ced1db0f3387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec0b6c2d7e78e5e1a9cba70a4537423533f4f9c69da689bf210dd77eea8bc67c
MD5 e40aa401254b6039d455e4b7650cba93
BLAKE2b-256 fa4d8362302664b7addc899370e7bc8550f07ab8d4ac9ca3dd69dcd32016b545

See more details on using hashes here.

Provenance

The following attestation bundles were made for zigfitsio-0.1.3-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.3-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.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5765b962e15d1748b7506dfc1a2cfd293e90e3e59c3f565b8a3acf6ee2ec1409
MD5 5f71fa5738f69313c0f650981abae6ce
BLAKE2b-256 ce690a6bfef24b7c4696b1b14818930306b23fd685a4a9f09876d42b22c178c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0f21bb14b5474c08c2b4dcf30b8c0efacb2ff5ab6cda89104377823e3eeafb5a
MD5 d212b2a3c5363afe8735271c83758303
BLAKE2b-256 a0776ec0d03e23b7ebf2adf0c1931edbb785a29e2b356212b072d7322161f11f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zigfitsio-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 194652c60d96fbefa469a6f10efae581a87d07d530fe7d9c0205f3ab278f8e6e
MD5 83ea11cccdbe0cca1402089f55e164b0
BLAKE2b-256 34354026d21780f0849bc55514c90f41b6b8f8e35056f8d7a699c6b3f3e24d41

See more details on using hashes here.

Provenance

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

This release

0.1.3 This release

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