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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

rexafs-0.1.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.1.4.tar.gz.

File metadata

  • Download URL: rexafs-0.1.4.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.1.4.tar.gz
Algorithm Hash digest
SHA256 77252971a637475dc2ce4405788685c94471bcc5beeece0f69cdb79cdb1bce3b
MD5 7c9aff4e542c3395e4b46037dfc933f1
BLAKE2b-256 dd8d62e85298ac82e8c00e858a729df82cee33f0d0509f18b10ffd7acd3f4515

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.4-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.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 550d458238fb4d66696eca28aff62802ba53540cc64514bd3b4acf78cea29525
MD5 4800c775367b5e703a29b035b771f1d1
BLAKE2b-256 e2b58e335f52bccda7772d28fe719a043cffe5d2218106949f291a0cdec2c1f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c59acd151970338b346daf39fe75f15906330aaf351eb04487b0974de922bd6
MD5 3ac43ab8778c0936deec02cd9476f197
BLAKE2b-256 feb050e29133dfe01c08d8085614b8c89d12c3eae9b6cbcdaddf7cdadaf3255c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8c30871bb95251f825762ffd2a89c293f04195ffe96bc319f3d42358ab4324f
MD5 41837a078545698e0848f78804da54e7
BLAKE2b-256 e4ee0dcd8db41e43b1ba85613a23cd57d42450a672c3cb06f496f74f091dcb1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 32109653dbf1614f2e612ff9700b682e8def76b0d5ef9b5dd350761063f71597
MD5 56d4f4f86230f5854dd7b67ed0b00843
BLAKE2b-256 564171d6f4465e0f373e6f0396c6a7f0e19771ac1ea274e10f27e35224163a59

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.4-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.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5285504a99248cbdf9a1b24aafc51722eb0e33c57a321f8ea298990287abafcd
MD5 1580118e31d5c94d1458335b3e4d3676
BLAKE2b-256 4afddb8bed86896b232baeaee8deb6de9cce0daaba556647dbee4e090802d65e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b780597b6e8e5bf37b2e00a76e02114c59cb91a9015f0635f000e8bc15d2551d
MD5 7f30e76793b8a121d4b6207aaa60c92a
BLAKE2b-256 0a41b7ea1d8883c1b4d91988bdbb219c90431735dae893b67fff55cbcaa733df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da7c4e0151d1f875ba0e0e4ea213f8156a66faac9678a6725a78275589c1e205
MD5 4a66191c90c0e86de6926f2bc711c8e2
BLAKE2b-256 f16629a80a850b02585811e4376fb8bdd60cc709b47973847210600dec198456

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30be3497a3a8af94156716f956d73cc6cebe027e1ce66f059b19509d6161e288
MD5 e268951b8f697da085dc62ed6c02c917
BLAKE2b-256 425a77a3b2f6ec0a6c6f67bbe0ce02e3390788685fdf19db7a771938b708be69

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.4-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.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a46289339250177d9147db1198981400a9613c16908de0869024acc0b0017f12
MD5 26a0e56420aff1ee812fece4df8cec16
BLAKE2b-256 c5619be9889ceb140cfdbd0defa31af10aee93d59eea37e1ab0769bc46b14891

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51486f74aab40fca22d58186aa94772cd933ba2b2b2405506aa59a2665b97711
MD5 981ef775a9c4e70b8f7ce2475dfff27f
BLAKE2b-256 853fcd32f83b91543477257ec7d16f7e7598af04b1b0d1c8cc5879a97fe8cacc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6801874ae5fe33dfc7948dc9a153e476617c02fbe26266776755840460b62cae
MD5 5b8677c3c55bb6bafa05d8958a8c5162
BLAKE2b-256 993485d306312c3f004c3d178e825165c985f6dd6dab481d5f7f28d2a31e3c58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9851918135d3ec08ee54886653e99f93bc8f8f33fe8671ea9ffe59abc7890e89
MD5 498cbff430202a215c63474975b391c7
BLAKE2b-256 3eb4d4512c8ba17fd261b815399a76e5a5624b240aefddac1a29b747f852334b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.4-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.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d6ed7af625020d58a52bc4ebe779332622cc545370eb4e55eb361d7313ed90db
MD5 f248701d126429ea161db8e715c55af0
BLAKE2b-256 5a1e83aa9bb2c225340d5e31e52e1c34893b5a79411ff8c8ce892f1efcb92e90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 410b7bd48d308ab219c2f659310fa2b36f9ee8ac17eeb2159fe7ce0ce52c8751
MD5 329637e27cd5a1fc4762ff7b3b6d456a
BLAKE2b-256 8ec30da127cc06003eee6023f568ce2e2a8414487264944a3a5e896e2bcdb69c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b095bd19fdde0e64525abddfe862a7cab9692d4c75598c207ae47a59d57e43df
MD5 2006d1838643b2c04ada30a18ff883a6
BLAKE2b-256 824ed5dac3428920b7792ab2c1c76fabe6303f439a3ad41862b7f3bc852b1493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f450780b12e20420e54d571a29d24a4154df6430738f679f5b6bfc1c0beed3d8
MD5 f489be3b0d16040bdc9449eb3da9e7a9
BLAKE2b-256 9d5aa4c9fcf005bb8d0067404b4792163d96ec5146498361d01429e4f737c9e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.4-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.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 55c545d01c5f438755e9e12330e7143a588adc87c5f874d628454d256c40e882
MD5 677538fc1b8d0c8022614add5a56540a
BLAKE2b-256 47de81afd93489b57460ff0590def97bddb538451c1ae408ce1a7bef4bb04088

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9f1f9b35092a94b4369ade87559e649cb18a1a746803c128bf1aa84d40a1cb6
MD5 10965d4aa46235b7b042e6f85a90bf68
BLAKE2b-256 2e0b6bef4e0c6edfbf1d1dbc45040b31480a39bdddfdca48d7cbbefe9e60d076

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fba41451aee8bf80694ac9e39c7d8b6ae6566cff4ddd7c29e3c9873a5f3178a4
MD5 233b598752897280e0985014000144f9
BLAKE2b-256 818138b530ec512b437c5c9318376316ba0b5a1d93a528ad0cfc6ad758c1d59f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff734827472d80091a6b6e469eb659fbb9f56758f414a2fa737c3032ab37ddee
MD5 f8fdfb08a93b2c930709cb54eadcaff4
BLAKE2b-256 05367fb0dbfa9d0b44ca3c1a0d460e4bbb5580a1bb069f5fc2c41ce4936d4e6a

See more details on using hashes here.

Provenance

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

0.2.4

21 files

0.2.3

21 files

0.2.1

21 files

0.2.0

21 files

This release

0.1.4 This release

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