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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: rexafs-0.1.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.1.1.tar.gz
Algorithm Hash digest
SHA256 5c4b2e81240078f2a8c730e2710f097a04835ad0bfa3b9b7ae706290ae0e1e77
MD5 c941be0f64bee98b29c8d551e3d095d3
BLAKE2b-256 422f07322a3d9781a4e68151be76c2af673384c600eab4d27d435516d23c66b3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.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.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aae54f5b2f56cbeb02e9e338db1d538c15215a854f47c2ad09904fa6b7a23fb8
MD5 490ff39476b9642a42f24c3ece7c01d5
BLAKE2b-256 96bf408c8deb9da67b7022c3151753317a71b741fcde10da18db7480061e407b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 804ef45981abe247e1ef82a136c03c591ad6c0450fe37ba9453afa7ec183aacb
MD5 a3e3dad67a79f971143bedba285ac156
BLAKE2b-256 9c38cfd8c4858d3c09df5495e4f843bc956d5a8e8424a08d82b59fb306493c7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0852d47ff93129c13c5c7305b6bd9fcc513ee3d2ace0f10541ce93259bdcfc9
MD5 35acb9901a7ddc307a7d005d317b03c0
BLAKE2b-256 5eba1fa39578ecab4e8cb955d9f868972716a395600498b5f41c732eec8d6a7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 428f4097a8af2d35d98df68eed78f5726bba562b67eac4c4d2d86bf1f2afd661
MD5 52517bf98c10c93c9653d8061ad8c800
BLAKE2b-256 721703364da44b12410bdcb17cc31382822f389b48cb41bc6543687e164781ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.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.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 31e196565e891fc74b3959f210409f007c18d83c0638cfbffc63ac7c270bddf1
MD5 c08df1074258ba12c6dbb080e4f57610
BLAKE2b-256 7c39e745f616251fb3517110431c198ae56c0e5fff33555d7997e7574c7e1f49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9a7d8f792d8dd28700a263b8b2b58861a508a2c8515e09dc10fe934eaa01670
MD5 8964d8468629097c560947e07bf5b4c8
BLAKE2b-256 f81566686e7f41598b19376721fc503bd11d5a34142ffe6a2d5739dc79994c1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cd8fa300ff63607113dd00149c296dd334479ab36b629db95eafce994ab457f
MD5 20f0b268930a12753772a09dad8663e2
BLAKE2b-256 14f3d1d3f282743d9c2cf4687bc1948a4129db486849189064c42a8e63600b03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7695f0d23e07f3e8f56d4b495a24d02eccc1c895f0d884b971aacf0ebffc48b7
MD5 41725d799e5b0db5539f981cb4818c05
BLAKE2b-256 cdad43b91e5b8549ef1e8b729937ce53e32ef21632e2b99f5ff6766f763ec150

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.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.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d78e87f162c0f1067e95f5199fd05fae1c190bdb47a02914d9dea72455ff14cb
MD5 36b2c216a57bd724a8599ccfb61056c6
BLAKE2b-256 697333ccefbe3918a131142b6e1b9cf85dfcad74f7374d03fa0f12c801b1c533

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c8c338a93046d0c6945af22ac9d7df70f069a24ddd49ee4d8c55b0dd8db4bc2
MD5 5a3a6c785e29fd44705ab72a672938e3
BLAKE2b-256 05ef3b2078aa9ae193d89c35385fe21022ff0a401b0098283706479ccb89f663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c060b77cf12bebc979d8d4019e1a3a13a9c50a81b8636ea623e958533fe8c31
MD5 53b5c8f0d3dfa481df3137c7e7c14898
BLAKE2b-256 e04534126b130e9ab3ed51016e7c29e88f23d20f61e36964a146ece4902668e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 25da5d1ce47a06fb60a278c493667cb135b90dc8202440eb3f02696351b007cd
MD5 1b081ba7d4bd43dabbd4e7d8caf9b5c0
BLAKE2b-256 efb303ffcc1cb08d4081a9f8ac5e8fc4eb3650818cb4ace5b5c2fec0b5faea50

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.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.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6f9a917a06aa925232e930751128c2e8248d22e62c1f0346dc6156ec4b829565
MD5 68387863674168de6b4d756d88167937
BLAKE2b-256 5f93597f4c80b977514728dc854dcc5d96e40016c4cab9bfafb77161c488c6cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 268960c388e472129f006adb0789b79458cb833f521ed435c5c67b3feaa8e41f
MD5 9a5496a086ecd8a40a468da9e4d167a2
BLAKE2b-256 5bcec55be70961600fbc7985ab88d90042479b542fe9b6f7bb3300ab5f6a0965

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe959e8a37d2b94f8f866b652b0f6c0724177de8137f64b0fc8d0c1f977d108c
MD5 142509bdb1f6a69fc55a935b1c921479
BLAKE2b-256 15689b995cd61b3549622176e83742e0c8bafc0d94b6a23cb24cc099cbcd4e97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43a3cc2207f52c9ae2319acd2bb7779dd6862a6ef959d2922eb5572ab2e7482f
MD5 7d3fd40d847542bbb400afe2bc83aa17
BLAKE2b-256 d9fb7baa2e45e609341d7067971ce186396777f59ed7c969aac39b4470e98d30

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.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.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0c8ff576c0a45991b0b11eafc1263aa0742515dc0dbde89e33fc90f44a1a040b
MD5 d00a961ffb44075170fa54281562d760
BLAKE2b-256 206fbe6bfcbdfbc92d66b5dc137772f00a036e251be79faf69b43c21fec318e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d19776fd4cb0e50dc6bddd970ecde23b5b93363d47b0361ef71e91c54dbfe5ed
MD5 f1b3f499b425b83630df0d837d47b2c6
BLAKE2b-256 c9079108648ee8d02f77b8a31864e8ecbe2e1200d0bf9750ef0666e370ffe3cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b465eb30c1a6f9d18f670793ae50dfb9344457702d5ceacc15b518ef665294f
MD5 8891a55c413925a27fc5d992cc485937
BLAKE2b-256 1ef4fd955b4906b5b2142145c10f20bcbca02b22a35d981c4b769c3129b3c1b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e46722f3c1ab5f4acdfb98a650453bc364cadaf707446bbe42248f9f1e05b047
MD5 ac25c4dbf3b3bc99011f3a77eb790b6b
BLAKE2b-256 92b32cfdd65a0e8ddb5d68048a04f2baf39e4d8e61b944f88243e5daae59f8d5

See more details on using hashes here.

Provenance

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

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

This release

0.1.1 This release

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