Skip to main content

rexafs for Python

Rust-powered X-ray absorption analysis with the same spectrum methods as Rust. The private native extension is rexafs._core.

import numpy as np
from rexafs import Spectrum, AUTOBK, BackgroundMethod

data = np.loadtxt("spectrum.dat")  # energy (eV), absorption mu
spectrum = Spectrum.from_arrays(data[:, 0], data[:, 1]).fft()
print(spectrum.e0(), spectrum.chi(), spectrum.chir_mag())

background = AUTOBK()
background.rbkg = 1.2
spectrum.set_background_method(BackgroundMethod.AUTOBK(background)).fft()

normalize(), calc_background(), fft() and ifft() execute the selected stage and return the same spectrum. Missing prerequisite stages run with their configured parameters or defaults. set_e0(value) overrides the edge energy. Use PrePostEdge/NormalizationMethod to configure normalization and XrayFFTF with set_fft to configure the forward transform. Parameter names match Rust; window and solver fields accept Rust variant names as strings.

Input lists, NumPy arrays and strided views are converted to float64 and checked for finite values, equal lengths and strictly increasing energy. Result getters return owned NumPy arrays, or None before their stage runs. Inputs and returned arrays do not share mutable storage with the spectrum. Input/normalization errors raise ValueError; other stage failures raise RuntimeError. Stages release the GIL while Rust computes.

from rexafs import io
spectra = [io.read_qas_transmission(path).fft() for path in ["scan01.dat", "scan02.dat"]]

The old process, ProcessedSpectrum, and free batch/pipeline wrappers have been removed. See the shared API guide for configuration, invalidation, algorithm selection and migration details. MBack and ILPBkg are still unimplemented placeholders; selecting them raises an error.

Build

Build from the repository root with CPython 3.10–3.14:

uv venv --python 3.14
uv pip install maturin numpy
uv run --no-project maturin develop --release

Fitting, structures, plotting and direct ReFEFF calculation remain Rust/desktop APIs. Licensed under MIT OR Apache-2.0.

New AUTOBK objects use a single linear solve with clamp_lambda = 0.001. Set clamp_lambda to 0 to disable the endpoint penalty. The low-end weight is clamp_lo = 0, the high-end weight is clamp_hi = 1, and nclamp = 3. The FixedPenalty model does not add a separate ridge penalty on coefficients. See the full definition.

XrayFFTF.grid defaults to "Input". Set it to "Larch" to resample on the extended FFT window grid used by XrayLarch. Spectrum.kwin_k() and .kwin() return the matching window axis and values. See compatibility and migration.

Download files

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

Source Distribution

rexafs-0.2.4.tar.gz (3.4 MB view details)

Uploaded Source

Built Distributions

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

rexafs-0.2.4-cp314-cp314-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.14Windows x86-64

rexafs-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rexafs-0.2.4-cp314-cp314-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rexafs-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rexafs-0.2.4-cp313-cp313-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86-64

rexafs-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rexafs-0.2.4-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rexafs-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rexafs-0.2.4-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

rexafs-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rexafs-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rexafs-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rexafs-0.2.4-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86-64

rexafs-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rexafs-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rexafs-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rexafs-0.2.4-cp310-cp310-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10Windows x86-64

rexafs-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rexafs-0.2.4-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rexafs-0.2.4-cp310-cp310-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file rexafs-0.2.4.tar.gz.

File metadata

  • Download URL: rexafs-0.2.4.tar.gz
  • Upload date:
  • Size: 3.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rexafs-0.2.4.tar.gz
Algorithm Hash digest
SHA256 46f1ffc26ea0a7668c7699be87a49b98086c1d71d815b377d1bfa51a6ad05cc0
MD5 60cbac75421607580062b64e4aa8c60e
BLAKE2b-256 dc3d5e859126d33ee91c319d48db769903d92faa2f90e1e5e39b5853f0a3a607

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4.tar.gz:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rexafs-0.2.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rexafs-0.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3fee32d45cffb220bf1ef936b3faa4dd66e6a6a9c4dcba95bc1495d3b68ac644
MD5 c28ce670f2d01ce8038d5080e812c2e0
BLAKE2b-256 74779e725ca0ef4fc69f8002ce6999ca09aee41eab1ac56c4edb218dcdcffa05

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63321b5e24743337b23b59395d191c14ecdfcc2f551e1e4cd7e316ca3978e60f
MD5 30c512ab6711d5f09f8bd2242d10f7f2
BLAKE2b-256 c405f9843c7518636363e19de446b3a9e7d8d856f578bf57710b9f55b24415c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 531052ab2ba3b3f2562a51ec644da20f357276e31e24fb03dabd559571904b66
MD5 473439c63b6d5c41540252c1dfb744c5
BLAKE2b-256 e12238121a131328b3de2bb5721548f5750b46512f1aa1f29418828fb6facb4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e3313ab1944c2d81361902e0ef9476939c11607bcd5634f153cb7b85e62b61ae
MD5 c4835f3b75423f79aaf9b04764ea26d2
BLAKE2b-256 05375e9e8a3b8fd88b0dc564e20b577a65aa28f7c085ea415c959ef4e16052c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rexafs-0.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rexafs-0.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a483dfee21ebae10b1ec9db14a1f9a22f10b14dbd6e9c55cbf06089cb55377e
MD5 d5a6961a32fa84369f419fb2b0f19f29
BLAKE2b-256 5aaee0f1524e720944cbe1343aec24674a299d68f3bd0cfe0bfe26b0df95cfb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86ef61767b77e4206e5f47283804636732e22c1c9f6615642071f3b963fefe4d
MD5 ba46bddd5d74422294156b0da530362b
BLAKE2b-256 751ff5671bd65ffd6d820a3e5bec166be978649b684b24ef74360e3f3bd46c80

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52a34492bd68fbb567091dff19041bb9ae5fdef162d14989d4f7240e804d68dc
MD5 8bb63c60a7c915602df9ba2861006276
BLAKE2b-256 9093b5d3795bc73a0803dc8828dbbd5a38c61f02fc53360d0e1b8b5ec78e07d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd4aeb5120ebc62f25fafa87ff6cca67240e4b68ebd81f7c157b8e3edbbb6434
MD5 39bba0bc09f964cf64201d1a666ed6fb
BLAKE2b-256 f148b79003c2ce6edfea926c6e3dcfdaed036b8feac2bd0a6ea17c1dfbae3abf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rexafs-0.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rexafs-0.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dc34c54bddec7fe5bad141dd06e7df82ca0c8fecc3be0a109137a831416574d1
MD5 806e35eabf4a0dadf3db8e161dbbc323
BLAKE2b-256 8a7e99017e9ea2f6ccdefbd06780375b9c04905ad713bff1af3d53b72ffed1bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 588f4e786f9bf4b4c8271bc37748867325fb4eb0fb9e3f586fe95359377a1bb5
MD5 ce97fb13cc32d90ddbc28da920bec58b
BLAKE2b-256 c52fc181528ddcb77e44e86a9ffbdd089ae63dc3516aa492567c2442e7af3675

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5587ec86fb9ba89970f62d63f96b1a2a54ba2ef9434ecf671d90d71bb9662a57
MD5 ba672d049c417b137863d2a67063cbb6
BLAKE2b-256 c09be1c7e467ffeee02b6bdf29212a791280d7c3a1a1c62cf598217ae9a8b28b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21615dcfdef7da9d4c223231139a722d1fe17b1d439c3373cb1bf1ea70a68cb1
MD5 7178141afb4a8fc52da7ae8387ba6f10
BLAKE2b-256 79512431d83b080926a78d61d10dd58d5ba8f1085f2b83d9dd4a419f33b05757

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rexafs-0.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rexafs-0.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2cb9dab82d61c07b5687f68525179276ee09b02240b98e197f80af180e5b9a20
MD5 102531ef134342b10592b764eb5cf79f
BLAKE2b-256 73a8111dee252b16851a74b2f99ff735be4817c1d512f638a89f342f0142a78a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f4dd655de7d557c099e601d0fc6615d5a3c8d0d671bdc2fffa70bf6282cca94
MD5 d976593de7515d8d5b47e670c0c388e0
BLAKE2b-256 b762f7df7dfe76d00e239d1050ee476ebfc6441bd1f2b746950c5dbbc1707bd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73a82a9972d530df69572d834b16fb3f2fd3f60248c4edb3cf7c2a17b3cf33bf
MD5 e7465733dc5009ea1b249f509c46beb0
BLAKE2b-256 9dadde5b4273452b9647bf9f641a616317e31fc4818a7cbd2ef38f755924be70

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 373659ff20cf75230b50c4babdd912931162acf0532ad6c52d1514dc59c2c3ca
MD5 3e5ce12e9b10c54a50d157958c0da1c7
BLAKE2b-256 f56d3f0dc4466d7508d22e79ee5aa11aab9c547febdde4b99f60929fa5f199bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rexafs-0.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rexafs-0.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 09623595b2ca8ddb6fcb857c2c7b85bd9f1b2f73172e8d5096fdc0abc809f8ca
MD5 7b85c83d2a544cdfaf7be33b8e04fb07
BLAKE2b-256 057db02a70210dd418d6dea7f506675014cb8e9c14a95dec5eedcc0b61e09e03

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1eb1c29dc37c230e1d3423b5d5155031e993dd2ed4edd78027b1a8d1e181fe49
MD5 0e8ee22ba84f92beb8d2864853db08ea
BLAKE2b-256 e4365fad8eacd06b82175602139cbf5bddf1da21a2bf8ae3a152cc386e775e13

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21a2e005296d2ae8fb36a8e118747212e85e10f326f82d09e53db09db6b1a858
MD5 94f7ecc2005b5105ffa567c2e2ef245d
BLAKE2b-256 085c9f0f02eb525b25d4c0c0d1dc65298292c5a5b06361422cf8190c65b4c8f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

File details

Details for the file rexafs-0.2.4-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9efcdafaa8fa23ae4a26f9d7a43a2e01ea3460b86e2d05a82daf6e66ace6a643
MD5 724d05fc0ff7bef698a74adfd13d1050
BLAKE2b-256 301afd4132a8de6018cbe0d629072a37a10cac2cdf69a4b8b7e39b33ac20ee81

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.4-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish.yml on Ameyanagi/rexafs

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

5 files

0.2.6

5 files

0.2.5

21 files

This release

0.2.4 This release

21 files

0.2.3

21 files

0.2.1

21 files

0.2.0

21 files

0.1.4

21 files

0.1.3

21 files

0.1.2

21 files

0.1.1

21 files

0.1.0

21 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