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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

rexafs-0.1.2-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.2.tar.gz.

File metadata

  • Download URL: rexafs-0.1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 2dc2079ecc463ab3a20f8c569b12bb6ae163ea4875d8d0b73f2d9ade75bc400f
MD5 fc2bf901a29ea22ff640a640a429c364
BLAKE2b-256 d39ee7490ed38b75a11b841a51e124d317de5e1b34f5f37f17f9513a4de12184

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.2-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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7958f3d471694463d1ea57f4d4625ba4a030e3017ac5e5a63d1529fe6f303183
MD5 937aca94cf58c04099c0f54b77b1cf27
BLAKE2b-256 8f463526130d81f83edf4196b18690990553a7782c02d5310da2bdddf349ab35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba2fdbb02ccfe4313bb2b32b660d815aac369bd6e250a48f79618111a19365ad
MD5 4325e61483627100247f93b591b789cc
BLAKE2b-256 821caab4f7797ef62ef61011cc66aac4b13ab0bd9ba7bbba7ced30652f8eb427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2940dba9b2aa4025e7f83023043a2b3e996f36625deeea3e5cf22879bad85e6c
MD5 d28aa332b61e8072d2deb33552d3c8ca
BLAKE2b-256 f6d2964d615d6f37b489a9d45b21df10e046c6b40965257cf9959c793287d71d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94908930194487e8f6a403d46ac814ffe95c664ad8745f15069cf7a20877bef4
MD5 a9d90e78dd6da92981c937f79ed1c55f
BLAKE2b-256 90cffa8e19f1bee5ac4b67c8725e5a7fbc1e99b694ea11ae90002d40eb65629e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 af3bf901d542e5458baa58bc294773ebb619216563319b2fa02eedccd0381c5c
MD5 7145615f85d062f9efe0a2bd43ae5a13
BLAKE2b-256 18e58f37bda9e39248eb9cb9f9cdb2ad558f8d9949223f64d3566cfb7524210d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99d00afe5e5b393bf9540358809ca20960298caceb86cca072f932e960471ae2
MD5 711a7732a40c2767ed65dcf833dfe2c7
BLAKE2b-256 1dd66e2233444d1985600163573bdb66ef4f6cc153635cfa5315f9913f1cdc69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99b068e8cbe941d941ba15781e58b27a6a42783b4c5e7ade3d44fe5a5924fbb9
MD5 4203708f7ea43f40ece7bd2c1a0248ef
BLAKE2b-256 9cf8a588ec9d5d4adc226ad004957a496bf418956987050c7eabc79db4e17e24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0b3d5c814353913db9f0d053c8926eade39221364343ccf01b271582fb7e2fe
MD5 11f9fa6bdbf677387645aafd9a3103d2
BLAKE2b-256 96c2dfb22dfbe4771c8a818abe5fa2152b4d4bf8c61625f87638f686a9cf4d06

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b251b1045df8303d0e2b86272f33240a35d9e51ccf3499c438a54c4dbb42de53
MD5 5b17ba96bd4a392b61e1fac99f7c5363
BLAKE2b-256 ef793777cb26f84d837edab556061b8c33ab7521d75e2df8dc5e9caf12e4fd1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d5ba160aa1561d013d9de5b8c72bc811a53415cd329aa6c6438ce3e11caf183
MD5 863592462d1c25f24d8b177fe88dfda2
BLAKE2b-256 7a91e63e8100dbd9f11ed13ec3a4a408df60571107b9c5109edb815f86742104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc1dccfcde5d3fce67131acb1baba956d3ca45e1594e5f40919884e2cf48a372
MD5 9082a6a2f81705b3f046380d03a7af72
BLAKE2b-256 8f72e701ff230e81ebc83c40f15aee9e2e83c4538e6ad82d8825c37c4ca222d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c8dc13a41f4d5d768d955b3fb5037686f801cf37835502bc5e0161c2153bc92b
MD5 6142898df388baa3dcb9839257db1a42
BLAKE2b-256 3242f56ba48ffa5dff7bdc8630348e32c31dca4094f886e3aaf51474415dc002

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 45ad8537263fccbcc11509ac5c866e76a1c69f3a16e55f3aa3d8157f9f7b103f
MD5 4ac4ecd717f17c18881644144cccc1b2
BLAKE2b-256 16ec85c63c9dd85cfd5b2801b342009908355db345784ea97cbc5a1c21a003bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c4d7fa52555f7283d4d47bed46a77ab95b68d987098964f270cff7055dd7af8
MD5 f5580c7de93baca9356acb5a901fd83d
BLAKE2b-256 a43959ba8b489cbfbd662428e908c514aabf360a5864ab99c4ecbd4d4d58eb8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cffe18278238c128d1f3bd713893642c58ef5c0b52ba0db5ccc27bdfe3b43fc
MD5 529023ed1341aa2878f60b245133cf20
BLAKE2b-256 419e2a1587c73046c37122f09266379a6f765414f9a30e62ea4d77262061c46d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68667687dc2dac1212beb49233ea0ec37d252703219280d840891e2da4df9e1f
MD5 1dcdb39c65f9de6ec15f08b3da7b57d5
BLAKE2b-256 c0bff887b62e3073ab34908d641b29b87a102def07bea083ec4319e07c440117

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rexafs-0.1.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 40e541e8b24ec91cf05345e4f1c1eae5ddcececf1b6182c9c1e39dcba02f078f
MD5 3520f4919cf307c097a0029a563e6b6e
BLAKE2b-256 ed4014c968843c7c3a5a2a18a9cbd63d4fdb8f6a6c12e89e0c3757c3a0dfc566

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2115e71480171ddcf32da0d540dee46f964628f99f9f9f0eb02fab36f6ff8f1
MD5 6fd773e339e90b96afec8f0630235ee7
BLAKE2b-256 44af69b8a301fbfff40adfbca0767c95e2b221826d32ca50adfbf5f67448d0c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4836702b0db9ecc1a5105075fe99e6d85bf8ba4fa99caf3e8beae63911c833f1
MD5 163eef71a2b663d6420deb5d209f8b09
BLAKE2b-256 01bb6b0b9cd05772aeea0c1304a91620b305d50b06ce5780ae7d18e5a4b9d2a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rexafs-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a99b0106fad29cc303cbc87f4212d96266eb7e4e5efc4745ddba02192a280433
MD5 76c491525d9adcf38e214c2ab1080241
BLAKE2b-256 16741e67fdd26e4e1dddd20316ef22dd5c2c9d0909a743f8ca0b04ae7a10f207

See more details on using hashes here.

Provenance

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

This release

0.1.2 This release

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