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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

rexafs-0.2.0-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.0.tar.gz.

File metadata

  • Download URL: rexafs-0.2.0.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.0.tar.gz
Algorithm Hash digest
SHA256 a4b4cc119a70b3db4efd02bedecd3f00c7e8d08b7bf7e270802a1b8fd1101a28
MD5 4c8e26160a08419f5748fdcb0a97947a
BLAKE2b-256 a127de272663570bceb3822875eb68a3c4d6833e73b1e532e43a1d619061946f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 95804c992b562f5a9e05a793de38612d680693c31826f9a7dfcfcb0368110586
MD5 97b42eccb70bd462bdda20ed9e563a32
BLAKE2b-256 b958d1ecd3b550abc01951d3bb403cd5e4f311cae00cc48fa7f487840a0fcfad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c9184a8255dc6112f4d1192d74cc82c9788ab134ebcf6b5d6ac259cc33f794f
MD5 2bb7f094335f7b10b03c97b845c73349
BLAKE2b-256 6119f512d17fa5ebd777f224525c124a84fbbb3ef8e773ca7a36af99dfbbba17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ebf432b36774903c8b646fbffee1ef9b9e61ad6d5a476358f393656837cf6e8
MD5 907853b0074a9a3ec8ed94e0d0772208
BLAKE2b-256 ccc4235b249c7503a75f874e33753d99ef2064ef2feda1534a44ab74ce7a5eb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ccec76650eaa609904a93c66478460842ef4359ec3b38de50aadb29063f92e83
MD5 ab7bf55ce4931332e420c69347e94ba0
BLAKE2b-256 5092e39807cd605f4431325ab7b7fff6efc429fa5e005670b24c33e65bb294e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6454cd6c2ba2d5ee460350d2eb06d85cc95bb51b20c1493685c833875e9c436c
MD5 48b6c44cd016160644285090577f33b3
BLAKE2b-256 40267df28744d6fab6e1f2a63bc377fbbeee9dc781c4ee11dae136887c3cb74b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7977bcc13bf0fc01b5212db4a0d98e8f9bae06f8d6bcdc3697965496666076f4
MD5 6c771f07b574b7cb7fa873420a0eaf63
BLAKE2b-256 1d310ea58a6b77fac02b0bea02a1f7a5b8eb42c2ee970df0bd1f8bbdbb98cdd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e06c50eb856077d4fbfd9645ce1c980152a4f5a2fe600dbe327c95e621cc5401
MD5 52544bf5c873b1a9f6819389cda923e6
BLAKE2b-256 d60597c900d372621cc050ce6ae06f80c28617fe139dfae7974716b47437cd6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0ff70b6da93efaa416a89d7162d17ddcd4574c5a5b5861b580cf4dd8299af00
MD5 156fda91ecb1c59da654284c9b66a610
BLAKE2b-256 e292a075711fca0fa514940fd50a2dd4a78c10ab9d28d3769f46e866c37d813f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 492b0730ba422284c3f64d3d20f3c3f560b3b5b038ceca5825c584b7909c1037
MD5 a4500933c1989b9c3713206dfa7ccf2f
BLAKE2b-256 151ae1ddc00b97f68e6ebdaa06c78a84843464c1b7aeb0e5087bf43009d146b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15c93fb4e8cb1b6d0b895f1b5238595b6eb9908a5fa76907f66f46e18662cb74
MD5 357bee0c06dfa0e79ddc00e0301dd685
BLAKE2b-256 ca4e63e81bfb43a95e42092a79eabab23e9470858121a87efc488e980e59f11e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14b81029aa903e3230a5e2f576f5c60a06f4f82c6ad463a4058c4d63d05b99e7
MD5 caf8c69efd831681786772f71210f142
BLAKE2b-256 2d3d17b6ea23009236677b796b4b5ad84ebd8bd3dbde6cc4d66a4cb2d858acd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 86597619e4530dd6b7bb557890ac0cf917c9e10de79a32c2eb840a70fcd28064
MD5 92140bc3e10c7708e88559453120f47d
BLAKE2b-256 66f2748c8a53015e4b9ca1085294452dfecf44434c586a2a66f543fafd4d4fa1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1395d6459c8c4af2523a3ecb423b69f48c8f234cdeeb675206069e02a510821b
MD5 dc61907aac8f9ee4779097234eecaa87
BLAKE2b-256 19eaec3adaf60f114ff51e8268d00e63cdb0af3494bce6d43dedb6ce8db54e30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9ed8c9b5d30a9c6dee8b333aa658e518a959e8435db924472c4f0222c75e595
MD5 26ecb0a4a961363f29430507aba7e69e
BLAKE2b-256 08a2dc6757c49faf6c499f2d6cb39a285ae73485b38832efcb1bad6cb0bec586

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60d4333678c08ef806840030558123973865be8b96eaa71fb8298dab9a0806f5
MD5 03be0e5b046c36aca932cc88db29c2de
BLAKE2b-256 6b1029c1f6b5039ca3cfb8afe5510b30f44db48c4a6646bd038db840214a6c9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b426f25d8b284cb84c32f730b5ea4cefed8f55f4a9b5fd5cfffc4a23bf02b933
MD5 af31761478e64df04e81f24e4695d016
BLAKE2b-256 112773213eabf077c1f283cc3c97680e036c5c5f52711c8abd312c675b21550b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.2.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 285ded0cf6d6d32f231eda7a378bfb295c52823c275747a50b7cc33f91fdc7a8
MD5 a6aa920dfac618dd6f3af4e923cca991
BLAKE2b-256 e443f8524076c03a142fda1d8e2f9346aa0a19168ed36de236e28bc5b204445d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28fc5470288db37f331cb68cb3572e1ca07b80bf3e32a37a8a01ea062b46579c
MD5 61e7d5473872a3ac5d50ad4ebacd8877
BLAKE2b-256 9a9e00b719e6b08541501ad7cf6825794fbcc9a0b859b15507b0c4aeb0fcb87c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e886e4f3b58db9be67c64f1527ca251f59ac9114035270b16cfaf2dc81f3ae23
MD5 213a80c11f76d62efa4f4c101ffe1603
BLAKE2b-256 31450feaeb50516f941d3941971ce85c6ac9e05aa35f6c38cd35819664ad5be0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b0c18823e149b181f35e5b8b7e3aa28f5c6c0eff0978f3c5a92627bdce063dd9
MD5 3908e2d8f7ffcc28ee65c494e9ed952e
BLAKE2b-256 cc0482cde052d115cbb055ac681b6331021604badc9106c00ffe027c937d6349

See more details on using hashes here.

Provenance

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

This release

0.2.0 This release

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