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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: rexafs-0.1.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.1.3.tar.gz
Algorithm Hash digest
SHA256 6d85f02b7d8e1ca8571e14e865fccbc18c38a01e7f4c88cda999b606e2ccb438
MD5 5e859be298631c9cb87d486685eeed64
BLAKE2b-256 7a39279ace1d479d2a23f13ad01f444c9832145ae2c71e362ccf2dd00e2223c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.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.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cf8ef36232fab2939a89150cbaa82693be8bd94cba6bba4e60d244a9f8ed9c76
MD5 3ac8ac67c7a42ce4b5141d1206852ed6
BLAKE2b-256 bba993d3d29865ec2a8a602d9a98c67bca781bae44358829887f3b8951f97a9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48fe64b5aed40740a662063b42735e703cc7d16b7f29f3409b601187c34f8340
MD5 e22da33e3eefab5208380986d01929eb
BLAKE2b-256 9925d0bd54338b7d0407c8c2494cd0cfd5b5ea56b0dbdb6df7c1b3d552c805dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 835c647aa5c1ee5348dead8661c827be563f55feafdd19f9641b3a7ca8d50748
MD5 fe0aa4eba18eb46db1fde68f93868a18
BLAKE2b-256 c782940aaaefc68a7f9e39f7dc7a795b67eed712c1436a07ca8a4d1c8cc505b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f48847aaa3785c93ec2b726d8066b4bf05e2e7726bf2beea891803be52407b66
MD5 b02122d27b8d378e1145c03799491743
BLAKE2b-256 76ccdb5c36b2a45189d234dacad0c66b4eee8f8ac77d30d69178e2f59800b24d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.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.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 988332c9802c0440854bf32b92f5e9d60b211d0f65225e598f46656ca8e0a3f1
MD5 729c01a420d06252886f37c6f9ae592c
BLAKE2b-256 231251214c3afb55d4467f17ed9aeb7018ea791667e57e26b52da40f37302572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f34a59bc67efb1db9d28d5d195751db703f8fb15d69ed5dcaf6c87fbfaec3b42
MD5 368033fa89bbc3f38b2ae82cf448d1ba
BLAKE2b-256 510f836d174e98777d6fd30c8b157a6e069d99bcdf0f8f21877d1744ddc89ba8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 052c2c714bcfdd8f4f00fbf3226633ab99e94cadace75faaa359ae37ef8275b0
MD5 257231bb60363b88ad23a4efb5806127
BLAKE2b-256 9c0f599e19f2b30cd30af1470fd4c146f2a07a901857f3f305300a70a6beb5db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a80e8a194a1df97fbe1c74d38229ca24b06fa94c17c324e23f4a625aa7e3185
MD5 efd954f836cb04f7d0dc02b9b3b33ab4
BLAKE2b-256 436f84b00d2416fe1ff541a26efd5f397dfd83ab637295d80cbbc5bb2eccf6bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.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.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d79bfd501e659f0ec247586cb836831a59975416aca93a1a241b9025986ec7ac
MD5 1861d4b57eb1d1cd10221beb61270c3d
BLAKE2b-256 18f8eb2c3819e99e13dd0f37ce227f6610be69e7cbc921fb65c1fe37f0ab0d49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff8d5ada43202debb6fae64ba106d2e66f088c4c047ccde6d6248c4b84a13386
MD5 462d6e0c0e0317b67b0fd3c89e3caf67
BLAKE2b-256 d3e61775c14558e63248b7eb18feb918da9305c436b619f916b1d38e36a41231

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11dc32051ccdd83b61b1274f9d2198a62533f0df5d0e80b61c880dbe00dc29cf
MD5 b29d0cae4d63252ab7b0883ae6328216
BLAKE2b-256 12c8de44e511072b22842606fb6a0d7b6d18d47510e96e4461d32e91b33f3fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a85f9269fcde72646ad2ff190d8f2a9815af36e97ae09da5acb89deaeaaea12
MD5 b6186346e6ef3d40337e7a8e5e87eaad
BLAKE2b-256 24777d32df06202e284b64e91ef12be53c7242ea5beac75fd1834d43f6b7fe14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.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.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 86a4ff865c743f732800641d3f19bc516bb75188f77bbdd97d53f38a4c21303c
MD5 90c5943ce78180694d25ec6dc5c250f9
BLAKE2b-256 dd4bc0d486dd1d536812849ae065fe0cd911fb418da5e0566d4c94d1b8fe64f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e41d1bfafe059a413844f35a050941b154ea0d7028b6c8f528e390b13482ac1
MD5 54ea75c0d0a6aba2b104e5a793aa270c
BLAKE2b-256 1baff7620c022430c8b42b9ad8434838801312e759db4b4e6b2a3eed3ec67fd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fb857dac9ebaa0d4c8f5e3cc120a374acfd8641c89384bd66bc68ded930424f
MD5 8fc009434573b7aa56296b8e268b55c9
BLAKE2b-256 d5898e60b6f0b70611b90bc148c8fba40ae6813341f6900f0b239e83d656dfeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e197d4f1596d74f92d94a018190ed825e585c0df61c2c9296734669ea942151
MD5 4cc912230bb45380da363a2dbf1b6099
BLAKE2b-256 4eada9345f8dcb9d7580db573ffdbae1ebd0169733882607abdfcdd0e1176c1e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.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.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 58142d662cba8f27c835c493702ac9b556ccd9ec517bc5a1830bde29c1783b38
MD5 e4d74771039134242e7f8ed25f90be52
BLAKE2b-256 083e9b0b375b4c9b6fedea663f5aa7cd409a8ffcc1d94d3ca0ffdd6beecf5283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f8d51a3c0bee72970b05f5bae640e36265b078af5a27a910df672e2daba21c5
MD5 8cdc4b2e4868264395d69a26fd80efdc
BLAKE2b-256 14c50e51f8998093362f958eb07c96cf71d0d29073bce46679f4c4b1dfe8ce39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20d3407a350a3b3ab638c84ad526f7501dd3fcef0fdf0460bc2f6f998538136f
MD5 68656e555275a6f6c6c676df530645f2
BLAKE2b-256 828999699e9c6131bc57203c4f04be0d0a905d3bd09d7120de351beb56731e9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da4fcee6efb6b9ba7b79bc607d4ab97964a452b05342f309d3adb0bdec03d650
MD5 e29e604a86f82887a819022c9c6e252e
BLAKE2b-256 5fd5a8d2423607e01733295af361ac298a66fac810f0f3010ba5236e6da329cb

See more details on using hashes here.

Provenance

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

0.2.3

21 files

0.2.1

21 files

0.2.0

21 files

0.1.4

21 files

This release

0.1.3 This release

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