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

Registry publication is pending. 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.

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.3.tar.gz (3.1 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.3-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

rexafs-0.2.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

rexafs-0.2.3-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

rexafs-0.2.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

rexafs-0.2.3-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

rexafs-0.2.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

rexafs-0.2.3-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

rexafs-0.2.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

rexafs-0.2.3-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

rexafs-0.2.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rexafs-0.2.3-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.3.tar.gz.

File metadata

  • Download URL: rexafs-0.2.3.tar.gz
  • Upload date:
  • Size: 3.1 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.3.tar.gz
Algorithm Hash digest
SHA256 cb56675c6da3bc2a86e72e93af26cc997b5821b2786a27516398e8f9161ceb84
MD5 a52a0e2c1dcebc2a74ee470b653c0b22
BLAKE2b-256 724789c6bbed71a4959848c3714e3272f80ae5217f774405536e8dfb5f0850e9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 812f1e152b0ca479885ef2b1409c11cb4a6acac56872946fd94f22918e80ecd5
MD5 6fbf2e8944dca11714d73c1ca62bc069
BLAKE2b-256 ddf98d3aa9c9f48ab1e4e3662921a7069d3e445f08e9e4e7859b2fef0603270b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.3-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.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0785baa2356bf33f46189e1675af70e9faf6fc9e4502b67dc058f8e02837085
MD5 1da5daf542ab12048c0bd94144b90a09
BLAKE2b-256 3df05fb844ad040cc1c8ef2d8f4563a1059e7b002c7cc96506d9cc948adcb122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21d3b7231ca127d746638b99e1c63c4aa2184c6a440f8d856f3ed3c8b7e30c2c
MD5 22b7e18cf73bcd382e2beab6aec36928
BLAKE2b-256 28650082d34fd12a8f3871e15fe3db09f2a740e75161617c21cad3a219948849

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.3-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.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d70d1dafeef3884656b2c9bf517bcf894839d5420497aa6dec931db82153f8e
MD5 1b491d47585eae053d2186f75c7c947f
BLAKE2b-256 bfadd178f479a62304bbccd1036a73136fb6647cd76eba0c57d44fff0d0f9f6e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc42e755d93d10b406d4914694c7b4eb2f87e9ed4dde1798012223de76b3ac46
MD5 a7cf8966f4a06e3df8fd19dff55ea8e9
BLAKE2b-256 89c14f3704e2afdd22eae6c4555354fca1bbb5353deb144418cc977171abf4ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.3-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.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e6c88915612fcb392cc70edd5b8ce36f6172eb8459f64928033bf487c1ef21f
MD5 b10f8702bc2612ed293422a541effe65
BLAKE2b-256 d4911bb90f40c279192262ca46e4bd5e563c4d7d42ce1d8ea837eb4deb45dc4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5798ea7a9b18f86ef2dc872d14e25f7ce4ee3108df94f2defae81b462f5e494
MD5 db8138a04f992b3ed03e1e605c597072
BLAKE2b-256 9a5a0b69e2830adba4652b415f333f7e0f3238391d3396056c08e568c28e6a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.3-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.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac34800f3f11258db76579e0630b15c3d862af3836b38c3c91037b1eeb71e020
MD5 95f6cc9f465dbd692dbbcc4a0b7884a3
BLAKE2b-256 feb45c7275d50dad43d6c84bdc1b44a18b8d1f6c0e2ccb6c1fe717b99be83b01

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3851d14704d3a742644ce22fb317c3c1c27de3e9005f4ec578b3a121a4179599
MD5 17973c11ac57ec39d53d63a4f4eb897d
BLAKE2b-256 d120e1e1745f4a971fefa75562e1a5803fca7167567e86731dd6d4a05b582ce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.3-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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 934394f16ce8807f7810b244baefb1b36f9f9b25d6d8eceb3007369f3901814c
MD5 aec42711e775b0c09278a71041014c18
BLAKE2b-256 5a87273d18f38f567d0a16ed9675fe26ec195d3ec25390ee3a99e8d7eb428773

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d14dbd80b8133c518e9d9c487408c2121ba346d8b8239d4396846dd115937e71
MD5 149ebcb31fddd2d6d3f6ce1f7f807462
BLAKE2b-256 4908d07c6f768554426443407df1eaa058f4c9659ea77c9697730ef0ce1ee944

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.3-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.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 192165348844315747f893a93d777a1e3ead7eb6657364259f8f6eb7d1d9142f
MD5 7ee1f360f09f1ab9806a23980f78e474
BLAKE2b-256 5a1081c9e8a0575ff21f2fb3193c3fd5819b01a057dd155d593d947e69d7e7c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 92ff53bb6f08bb13ce06e2d0694d66306ced58b3f5ac684cd9e9ca67d92ad5f7
MD5 9a7763137eda9a5eb8473f0bfa8cc186
BLAKE2b-256 c0eb4581ad18f6e0e642e46d3aae1ab235cd7731797c1525b44fd18b0bd100fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.3-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.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbd3e96d46fb77acf842aa43cd5ec34b2d7b29249bd8bf1fe524f023f78c5a2f
MD5 e7fb1f40e2fcbafbdb65d55a1a063fbd
BLAKE2b-256 feb65e7c0991a24e0306384ce485d46a723a57b79dd66d6e29d030b5615ef135

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad7d3748163a2fd78d55105ed32587440f55e72259bfa67a68be044c1222aba7
MD5 cc4007fabb7f8a7d3f84c65136613915
BLAKE2b-256 dac8548adc42a030d70902a80413145c797fa156d04d64e1b9de43707db70e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.3-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.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03f04087d8fd945a06426c94bee0f043c9016428668577ef27b0cd6deb3e7ab9
MD5 2b8bff4ec172898a37f47f0316ff665b
BLAKE2b-256 f243c8c24d3c7da28d2df8ac00107aa41caa1dfdee888cd843141ecac7e1ea79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.8 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f18c8e51c0c29098d9cab08f816fb32ee0b4c2c36df5be8a27546efc68251cfc
MD5 a50fbc5c997ce25ebcd4b3a9d2b4dfef
BLAKE2b-256 fc8b9fcb837db4f4763bfe437c603a26c21c67fd964c81cbc9c2bf62cc617025

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.3-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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53f177360782f57faeaf796f0ad220a25e9dc8d13015e605779fa9ed610bbc16
MD5 49b07757bccd5cf486a36ad2a48c5d7a
BLAKE2b-256 107bb68fae53788d86a08b319e2258168c72d7b0e3d801f6b2586770db1eaa2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28fadac87a2e2251e85b083914bbe9d21f6fd73b64fbefd152513f6ab7151f62
MD5 708c1f035a83734c2d38207a771094a2
BLAKE2b-256 fce0dd4ef0e5bfdb8ce3b85f9acaaf6f26ac08b12f951876145344cc46eb69d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.3-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.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rexafs-0.2.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7737b8bfdbed34cb48469df88bfa32456999097505f8cd1a0523379f19da3720
MD5 9bb1e4faef0c7d8593ab65867c10fab6
BLAKE2b-256 c17b8128c54a3742d1a7fd1f5e15902ad22b2f5ee7c4846a169ecd39d9bc1048

See more details on using hashes here.

Provenance

The following attestation bundles were made for rexafs-0.2.3-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

0.2.4

21 files

This release

0.2.3 This release

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