Skip to main content

Python bindings to xrif, the extreme reordered image format

Project description

fiXr

Open xrif archives from Python directly using the xrif library.

Example

from fixr import xrif2numpy
import logging
logging.basicConfig(level='DEBUG')
fh = open('example_data/camwfs_20240315225750994842000.xrif', 'rb')
data = xrif2numpy(fh)

which will print something like

DEBUG:fixr:xrif compression details:
  difference method:  previous
  reorder method:     bytepack
  compression method: LZ4
    LZ4 acceleration: 1
  dimensions:         120 x 120 x 1 x 512
  raw size:           14745600 bytes
  encoded size:       7446095 bytes
  ratio:              0.505

The file ends with the timing information for the frames, stored as a separate xrif section:

timings = xrif2numpy(fh)

Each row contains the frame index, acquisition timestamp (as integer seconds and integer nanoseconds), and write timestamp (again as two integers).

>>> timings.shape
(787, 1, 1, 5)
>>> timings.dtype
dtype('uint64')

Sometimes you don't want to decompress all the data just to read the (uncompressed) timings, so this helper function skips (using fixr.skip()) over the first XRIF header + data chunk.

>>> timings = fixr.read_streamwriter_timings(fh)
>>> timings[0], timings[-1]
(array([[[  24211485, 1710543470,  994842000, 1710543470,  994896666]]],
      dtype=uint64), array([[[  24211996, 1710543471,  278731000, 1710543471,  278787539]]],
      dtype=uint64))

If you need both, this convenience function returns a (data, timings) tuple (assuming fh is a seekable file containing at least two XRIF headers).

>>> data, timings = fixr.read_streamwriter_archive(fh)
>>> data.shape, timings.shape
((512, 1, 120, 120), (512, 1, 1, 5))

For an example that uses the C xrif lib more directly, see minimal_ex.py.

Changelog

0.2.3

  • Add skip() function to seek to the end of an XRIF archive
  • Add read_streamwriter_timings() and read_streamwriter_archive() helpers for XWCL streamwriters which attach timing info as a trailer following compressed data.
  • Expand docstrings, add tests for new functionality

0.2.2 (never pushed to PyPI)

  • Add a monkey-patch to the _xrif.xrif_read_header argtypes to make ARM work

0.2.1

  • Fix macOS-ism (using .dylib instead of .so to load library)
  • Declare NumPy >= 2.0 dependency
  • Update various bits of CI machinery

0.2.0

  • Add missing typecodes (#1, #2)

0.1.0

  • Initial release

Project details


Download files

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

Source Distribution

fixr-0.2.3.tar.gz (5.7 kB view details)

Uploaded Source

Built Distributions

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

fixr-0.2.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (528.9 kB view details)

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

fixr-0.2.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (520.3 kB view details)

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

fixr-0.2.3-cp314-cp314t-macosx_11_0_arm64.whl (376.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

fixr-0.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (528.9 kB view details)

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

fixr-0.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (520.3 kB view details)

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

fixr-0.2.3-cp314-cp314-macosx_11_0_arm64.whl (376.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fixr-0.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (528.9 kB view details)

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

fixr-0.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (520.3 kB view details)

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

fixr-0.2.3-cp313-cp313-macosx_11_0_arm64.whl (376.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fixr-0.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (528.9 kB view details)

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

fixr-0.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (520.3 kB view details)

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

fixr-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (376.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fixr-0.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (528.9 kB view details)

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

fixr-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (520.3 kB view details)

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

fixr-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (376.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fixr-0.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (528.9 kB view details)

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

fixr-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (520.3 kB view details)

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

fixr-0.2.3-cp310-cp310-macosx_11_0_arm64.whl (376.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fixr-0.2.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (528.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fixr-0.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (520.3 kB view details)

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

fixr-0.2.3-cp39-cp39-macosx_11_0_arm64.whl (376.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file fixr-0.2.3.tar.gz.

File metadata

  • Download URL: fixr-0.2.3.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fixr-0.2.3.tar.gz
Algorithm Hash digest
SHA256 9916cf219349ac8c151ab36c5572f70c2d2f856bca1f95f834ff6254acb25e4f
MD5 6b61651faeaec1d1473c17dae357954a
BLAKE2b-256 0d540ced98984016c7aa8f4bc0d091e6a207e0a01407d2cfddcd4ac240ad4d7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3.tar.gz:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cce694b23148f6c8cf1241d9389b529b23494df38462a99e31ab20eeaca508df
MD5 0338521d7d0407704f8ec9573bf7313d
BLAKE2b-256 6d86091ed1abeca7d4e40e3dd17f1314d68f9748accc1f5162690ac1c444c2c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2fa1909fb2ded5c506313f247ff50bac2c2e89dbf1d49b7353c5126703646005
MD5 f1712aaf83c8e676400d2df5026e3657
BLAKE2b-256 0f948d292bbee0537a3b6bb61fdc1e71e93de72f0c99422f4e83021a3b9df5bc

See more details on using hashes here.

Provenance

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

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 585e46070ca48dde5040c515bcc1ed67544f5b647b02283edc97315184f0f117
MD5 64b6b1c4f211122b7b69a101e2726036
BLAKE2b-256 f78bc7292231d2b3bf3439c7163b3ae6321596b1be97cee53af9b326b96e34a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a22bf6e2334428a2306bcdd0448b46ffc2c5557b16dfeafc9fa8d8fe1961892d
MD5 5d984691f5b59807fc9f1a410333793a
BLAKE2b-256 49a38cb82f6b1e3492b823184afbd3283b87f8e27718dd675cc085c06ac05f76

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87637fd0eabc02deb822e1b4db23227ea638e159bb59f983f9e0c52d35eaa6b0
MD5 4c60d47dea6fc5730880df8268456f5b
BLAKE2b-256 e19e6c194e406f0b300de8a94375c8cfa4c687f630371f1175bc2f0b84ecdd46

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fixr-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 376.8 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fixr-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fe7dfa788c86cfa11d6a901946e4b9dace83d9d6c9526f619e209498fec0538
MD5 78d3a217a2d56ffbd44dfc35f876560a
BLAKE2b-256 45884eb54650614f34c59e69e46e2a9c59ca746dccafab3d833fe882c7b75576

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a24243b307af48c474647b785d8d826ae67961da63ff3e308780e13a03a8d79f
MD5 cd9e564bb39f856a16d407ef18aa4856
BLAKE2b-256 6713f937f2351e8b2408cd0d23070d41324eeeff834bb448b9758a074419b972

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fdc1693db2dd4b77fb440cfd652145d3f6a6a4d07d78ec585fc283de3fb9979c
MD5 bdbe889900b0b0c9503c842a453812ce
BLAKE2b-256 11ecb4c5d095cff9a4c223fa0e79773ad615cb5e803fd37e772161985f753b5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fixr-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 376.8 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fixr-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0515806b61aa2b71a49ea0cd4aa92bff1d7bf5f00b8d8b4fa5bb082d3e65fb91
MD5 ab82190ec82c0c4148d85af63ce03a79
BLAKE2b-256 961bac5a3e3707eac050f3cf919fdb56eb062c8004dcb438556d912205d9d8e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aaafd89cc412effee1d9bf598bca9163ef06289ec094cc8d077bcd944f4899f8
MD5 9171cf577d91eedd6226c571e5b3690e
BLAKE2b-256 8079488cf03ada60e0d104283fb0052b677c3a1b54868456781b6242f2d3359a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0059d4d077d4dfc7872a3aec0b7585ba47813aca3affef9db0d45bb124ea490
MD5 3ca59d669022228420faec979dbb6e6c
BLAKE2b-256 298c1c6db901af6f34b5fae8d9b394b9d10377cd65633716f933ed58345e4d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fixr-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 376.8 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fixr-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaa77e1ad41448d4cd0b24e8bc709745abdc0bad0fc451c87eb305059aaea8d3
MD5 9760688a647a0f14e317c2deaae79aa0
BLAKE2b-256 1848869dc3624eeaab7275b5f033ff454179e34dee7d4dbade39f11d2d192a77

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c47d010f6c94d47cbbc618be7701365ec31c0b026058d96567e8b88de5a8c0b8
MD5 c378f4aa79b9a09695eb9e3c51ba5d70
BLAKE2b-256 cc6fcb3f51486f011e2a131b5ccd67dcfe7b0f26fad2c36d7b00c4282416d165

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8b24fabb76be1c3f88a53038714da3d56af2a98c6e67334cd3d894cfc53b7fa
MD5 b3f900c49f17cab54b98883d3562f3ac
BLAKE2b-256 e0e4e73071ab996298c788933a500cdc5ba7838a5647f1e1fd29b89bfe99e8ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fixr-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 376.8 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fixr-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd7b6928b2e8c8a4003eb5db57cb801156671e6c6f68a703a193a2dcda19611c
MD5 08e833fa9eee9404a8e6cd966b9af3dc
BLAKE2b-256 aa4c8dbb7bd8fc4c3874deb2bab1f99c0e89d4ed49dbaf0062c7c40fdb383427

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0631a474afb0d4489f45badba4584f465c36140bb8c82db2d19f2d602a0937d
MD5 2d14ff639753757a54692c3c56c21075
BLAKE2b-256 1e9edb71556ec471a37a2cb1dee16df09b7a3d4a3923e34d21c384e0f7dcc454

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 42409742c416da5f883b752b34fd781f7ce9358c25d71397f022b91c883a57f8
MD5 59072962ca6ca8d2a86f7cb609e2e33c
BLAKE2b-256 ab597301625d5cf73b1ba184f3ba538f11f96a2f0acd5d1001f0546e095a4b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fixr-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 376.8 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fixr-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d4afa1e7f4e8ae0617285e1839cb853e7d75ce13a79e21459535031c0f41bcb
MD5 3c8026dc04ffec15b05fc2de852cc266
BLAKE2b-256 9372f0aef6fae1735169b6d7912c66bbdc101ca3c782482c2f756efa8d271c8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9014236400133a509497ec7b36c86c24e2c6437b57c2485b3ef4705fb8c0d2ff
MD5 eeda546dfded5026ee790b0eb091d69c
BLAKE2b-256 bb7b8252c56c626063adc3afe69a78c99758f7b4e85065389d3480fbb09cedfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fixr-0.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 afe37140c4fedf1752afdbc80b7f2609230c9c616f2ab7b21acd76c8012f6ad2
MD5 186ad0cc8f068cc8d78e115a426bc5fd
BLAKE2b-256 a9cfd180898c6d648519dd3425a0d5e4a66ae86b65d3a65fa4e5d558fb06ebbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

File details

Details for the file fixr-0.2.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fixr-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 376.8 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fixr-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 392dbeed0d4345ebcf5d1f9f7f3b2297c730c4253eac42693c7e0541cd1480ff
MD5 b57ac9da566e11d60faf96d1a19f962b
BLAKE2b-256 60f87c5dcf012fd7acae9a2face1764979200edb4d71be0909a52c8494812fba

See more details on using hashes here.

Provenance

The following attestation bundles were made for fixr-0.2.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on joseph-long/fixr

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page