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.1.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.1-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

rexafs-0.2.1-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.1.tar.gz.

File metadata

  • Download URL: rexafs-0.2.1.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.1.tar.gz
Algorithm Hash digest
SHA256 3c607b320e3b45635cba975641e3d95e639798ffd0560feb3ba4ac17231b3806
MD5 ddc61c8432877d1644861771a7ac2b7c
BLAKE2b-256 26152fc89ae22acba6b1ef08e370160df88a0dd805b0379ea7ba73d17da39253

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 249a0ace9d5dac95bd06051db2ce3544cae17bbdd8c862df77a8de5925244085
MD5 cea929661bec8d0b5627a213d790f6e4
BLAKE2b-256 6a4db102bb265fb7394ae24b25d65a672da133a3a82d41371800a80666f83725

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b96e742aa5e2301ed02d19975efb2506ebd4dc300f3127bf7276bd807a7e432f
MD5 ee56962f5b21581939ace9422d6fa120
BLAKE2b-256 994fdb85c0e02fc1e5bd9273bdcae7ef9ea366cbdff3ff8fdde35f6587b1997c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea48701dc09c4fab07ee5f504b395d875cd20809602832803058f938c1acf8c7
MD5 c92c91fcf80ee34a6b38f2ea02634d7c
BLAKE2b-256 b2571d03c1a5404309b3e8ce8fb928fc08404008073d0509bf58aa41104b7886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8d3f6823eb9a0c22b15df6d1243c2e7a702a6d2d4e0b75bfe6dc74aed8f9b614
MD5 2b3f2c3b2e19890889696902c850cde0
BLAKE2b-256 9d2e10132456d205c8823d69a64f5f02ed47d21e1bde5e6b56230a1f2aa8e45d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 437765e12a69c6379b405bfd0eb5b65084604a9e676aebbfd625c56dad9e084c
MD5 00162495fc3de354bf54ec8b8e759ae6
BLAKE2b-256 685bb9d8d4e879f9a215adeac68907480e36bde36225226a767bba59c77823e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7204be24037994dc30978b3644eae8f46eb43fabc4181829bd855aaf3301950
MD5 1a4666ddeb9809990b26386bc1bfb61e
BLAKE2b-256 69d7f357e2ec61065574ece30e008bd591978330a5c16589198629723664da86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62d95b8f32b959212a013f3346f3df4fecc77da65de6ff4fe3cd9b20cec44a1d
MD5 f99c1be6fc19a4d166c4cc766cab0b04
BLAKE2b-256 aad5c3d8d6938f4657d975523c38a09e7aac5a8759692d8075b77a632278b555

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9032af0ae8c0879f43618803eb76dd407a7fa0e2fe9f3661fb4ff3eb95cd0f38
MD5 7229afcc2ea3f682869b3c6f6fefe488
BLAKE2b-256 f8024df3d23b0403e48fd91fb476c086b5886f3f8a6c0c2113912b80a45829b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a68e12958c0ddb1da43a0c7b6f4cebdac2fb9b75d4cc91ebabb0d57750b8a4eb
MD5 380fb440a13e20745624f121affe0d0b
BLAKE2b-256 6c4cabf1cb2e27bdbb63a2d389b36767d95b149852377ae7daa3771e46dcb941

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb73f6a17467f2c31d7d7faf97f6493ab2823bae96cd835e16a29f142ed2f8a3
MD5 d8c9825277ac549feb00591bf62d6659
BLAKE2b-256 bac59935f46b3ef1d3e47bb514f797cd0ce1c8fa475094035a075f470c6edb98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 852b285c13407f1c0f01fcc5d19e502c2bf0bdf7f1555de10ceb8666aca06090
MD5 8065f1f4d231d9105ab698d534cbf006
BLAKE2b-256 34b900a96a80cb07ed1e5aa7dc8796b3da433896accc87696343df411e3f6892

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e6b02b35db30b54de127048d237e0538a0e43f2dfa1ccc6355962130e5d933e
MD5 7d554612523a2a8687e1c1424b2b6701
BLAKE2b-256 b492e5f52c1282be2bb79a49d6f25e774fd96c2050623f9eeb9cd36816d43f8b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f4c1636c1a7c414f0f31812a202a15a35221f5e2bc48f68e005e606a7e939017
MD5 213f47210fba5ad0bfab9f5ada1e78c2
BLAKE2b-256 a89cb57aa69593b48de26e2ce3bb5dd1268812821f39acafb13adc9721717b32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a2786bca65987e5b96c40beeca027c09644d06a80380e9cc4b14ef7f2de2174
MD5 cb8ad70ee1dbc77267f6a44b2b45e901
BLAKE2b-256 0a956d3fed2c905863e94bdec54c50b3f8bd8558f19b82cafa02a6e7abc6c42f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e7fe568e6722f36ee142cc551728a4afcb5841c04a7aaf9e53d86bf3b1abb94
MD5 9d555ea2db4d2356fe30a0fb9954a97f
BLAKE2b-256 d18e96e8e9476509a2c1ccf441c4b1c11b9a811c0b3c6028f12d57371b80693e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ad2e4b2c77b30f5973cdca37873817edb8b99e6c5e99959c75f2c182ee7c050
MD5 ffe4c6f6dce87de38e9cc967686e80f5
BLAKE2b-256 62fd986be1a4cf250bafd8497d0ab871d196f0bb7972fbd494549db8169c0e23

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7cb1333c82479546ebbc5333669ad5e337b591212bb93a3d2f1f5e1dfab455a9
MD5 8d51894ba1ccefe90a7f9590d18d8594
BLAKE2b-256 c5814a2cae6c33eaf79de404de8df1e991bff3760fb377a52bc34807f064b691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d45def6b8daf166a6f037b1ae1f1ed9bdb5bfdb659474c281990b5cd1526469
MD5 e08b97627eb80d29ab3aacddb052c03a
BLAKE2b-256 01d8fe29cd73a91b4333ddcaf4ad1810a3c9442a86bf90ef714b4daa2f980190

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 633d5b6f3426eaab8bebac1e4f8da151558c0d75b36a1bc6a417448b9ccb9827
MD5 e3bf846a2ab625a4820b3f6c4262ab17
BLAKE2b-256 2914de2b28ddda6c7a84bdabb73c009964198e6e7663e0b46f976e85fddedd34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a9ea4364f589b3e23e040ab8a7c11890c6e52e802c95905a2850739b037972f
MD5 a011b8502875a36c63a5ac9ac28cd510
BLAKE2b-256 2e77123463cac87ff8b5c292ea8ffe3b6e2f1cd592abf59f26e9441075606399

See more details on using hashes here.

Provenance

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

0.2.3

21 files

This release

0.2.1 This release

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