Skip to main content

elixcee

Run and test a practical subset of Excel VBA without Microsoft Excel. The core is Rust, with a Python API (PyO3), a standalone CLI, and an experimental @elixcee/xlsx JavaScript/WASM package.

Current release: 0.28.0.

elixcee is intended for data-processing macros. It is not a replacement for the Excel desktop application: UI features such as charts, dialogs, and screen updates are skipped, modeled, or reported according to the operation.

Install

pip install elixcee

Pre-built CLI binaries are published on the GitHub Releases page.

For a source build:

python3 -m venv .venv
source .venv/bin/activate
pip install maturin
maturin develop

CLI

elixcee <file.bas>... <MacroName> [--file input.xlsx] [--sheet Sheet1]
                         [--output result.xlsx] [--json]
elixcee check <file.bas>... [--entry MacroName] [--json]
elixcee snapshot <workbook.xlsx|ods> [--json]
elixcee test-workbook fixture.toml [--json] [--seed N] [--case N]
elixcee diagnose <file.bas>... <MacroName> --file input.xlsx [--json]
elixcee diagnose-workbook fixture.toml [--json] [--seed N] [--case N] [--cases N]

The run command accepts one or more standard VBA modules (.bas, .vbs, or .txt). Use Module.Sub for a qualified entry point in a multi-module run. --json emits one stable JSON object on stdout; see docs/agent-contract.md for the contract.

Python quick start

import elixcee

vm = elixcee.Vm()
vm.set_cell(1, 1, 10)          # coordinates are 1-based, like Excel
vm.run("""
Sub DoubleIt()
    Cells(1, 2).Value = Cells(1, 1).Value * 2
End Sub
""", "DoubleIt")
print(vm.get_cell(1, 2))       # 20

vm = elixcee.load_workbook("input.xlsx")
vm.run(vba_code, "ProcessData")
vm.save_workbook("output.xlsx")

The Python API also provides formula evaluation, ranges, sorting, merges, hidden rows/columns, sheet management, styles, tables, data validation, AutoFilter, defined-name inspection, pandas export, and .xlsx/.xlsm/.ods workbook I/O. See elixcee.pyi for signatures and behavior.

For large XLSX/XLSM files, open_stream(path, sheet=None) yields rows without materializing the whole workbook. Set include_row_numbers=True to receive (row_number, values) tuples, or max_rows=N/max_row_bytes=N/max_columns=N to bound a read. create_stream(path) provides an append-only XLSX row writer. Set max_rows=N, max_columns=N, and/or max_pending_bytes=N to bound pending output.

Vm(on_msgbox="skip") is the default. Use on_msgbox="error" to make a MsgBox call raise an error.

Supported VBA and formulas

The interpreter supports common data-processing constructs including Sub/Function, variables and arrays, If, For, For Each, Do, Select Case, With, On Error, user-defined types, named ranges, multiple sheets, and Excel-style Range/Cells operations. Formula support includes arithmetic, comparisons, criteria functions, lookup functions, date/time, text, statistical, financial, logical, and dynamic-array functions.

The maintained coverage list is FUNCTIONS.md. Unsupported or intentional no-op behavior is documented there and in the diagnostic contract.

Workbook compatibility

The Rust reader/writer preserves supported cell data, formulas, styles, merges, hidden rows/columns, and many unknown OOXML parts. Macro projects in .xlsm files are preserved during supported round trips. Features not modeled by the writer can still be lost or disconnected; tables, drawings, comments, hyperlinks, and other OOXML objects should be treated as compatibility gaps unless covered by tests for the version in use.

The project runs Rust tests, property tests, compatibility fixtures, and differential tests for the JavaScript package in CI. Compatibility with Excel's VBA execution semantics is not claimed for every macro, and post-save macro execution has not been fully validated against desktop Excel.

Development

cargo test --workspace
cargo fmt --check
cargo clippy --all-targets --all-features -- -D warnings

The short-term plan is in ROADMAP.md. Public design and policy documents are in docs/.

License: MIT. See THIRD_PARTY_NOTICES.md.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

elixcee-0.33.0.tar.gz (2.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

elixcee-0.33.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

elixcee-0.33.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elixcee-0.33.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

elixcee-0.33.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

elixcee-0.33.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

elixcee-0.33.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

elixcee-0.33.0-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

elixcee-0.33.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

elixcee-0.33.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

elixcee-0.33.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

elixcee-0.33.0-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

elixcee-0.33.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

elixcee-0.33.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

elixcee-0.33.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

elixcee-0.33.0-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

elixcee-0.33.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

elixcee-0.33.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

elixcee-0.33.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

elixcee-0.33.0-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

elixcee-0.33.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

elixcee-0.33.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

elixcee-0.33.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

elixcee-0.33.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

elixcee-0.33.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

elixcee-0.33.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

elixcee-0.33.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

elixcee-0.33.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

Details for the file elixcee-0.33.0.tar.gz.

File metadata

  • Download URL: elixcee-0.33.0.tar.gz
  • Upload date:
  • Size: 2.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for elixcee-0.33.0.tar.gz
Algorithm Hash digest
SHA256 5fe07746a2faff6f89fbd396b8e4a1c5bb95a8bc49235fd35017ae44527e4f58
MD5 097c68b7170f549b81cd1fa5daff1685
BLAKE2b-256 59664f1fb6553d15f5def72b9d704f1852184ed110058b5b3d00b3a1b62d475a

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0.tar.gz:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 890c8e39a3f083064440477758863e428994f7bf7b5802ad04701f21d473014c
MD5 13d7e7a21b33e427188ec8542e1e61f3
BLAKE2b-256 b2ee317367b3fbcc364304c1c7cf762d939220072f43951ded8f7439edf1dc3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ec573f5ffd860de6812d1ebe6d7e569970b5d0c3d19fca3d0ecefec2e18fb60
MD5 4b32ee010f2c40228641169358e1359b
BLAKE2b-256 c5663b215816df11ea72543321149287e965b9fe00d1d14d5d2c1a07e191c9ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a213b02882c837f25bc343c1322f1215aaf5ef7da727a3a5b7687baa482f48d0
MD5 4a64b0f41101965c4bd4b1d4a0626b95
BLAKE2b-256 ae811a527c1a9e994277ef1593453ecac1ee4abe3493b97c6cab16b492cfa2ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f33100bfc3d34b7cdaf6995ad753c786ab0c98eec7f01ae8af4bce3605cefe47
MD5 f8b80f408badeb0131fa8fa50df6481a
BLAKE2b-256 23dd27acd0c6ec22656922b3f9bb5f3b023369ad377a10430b62d29cde3b859d

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91f7a7adb9f0a36d54b068ca97e4c332bd0d87af467506cfbb7108fc75f70b08
MD5 7d0cbab9789651f0e1408c24de528640
BLAKE2b-256 806cedc95e874d29a48737f413ac77b610291537fc7ae83a68d98902505fc1f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b9c0b142c46f8edeb99fea97f284e90d200ff9d0761065df39bafa9e6858fa3
MD5 8fe5c583df520eb90d8a6e4a3c37659b
BLAKE2b-256 021bb394b9406a9d8ec38f5e1bebebbe01e61e488376855622f459c7788f2a86

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: elixcee-0.33.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.4 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 elixcee-0.33.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8b923c403ab06729185d3fdcf8ce5163dfde334c987e869fe3e7d6bc5128d9df
MD5 546c56b9fa8742cfe8157c1838bd73e0
BLAKE2b-256 96d5a69e883956708654666d415e595fedbdd4b7e16db3dcda4b5e495d943292

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4349eea09d47866d2d4109cb57d38bc359852dd2b88700db4bd2f275eef09799
MD5 b4bf20466ed49bdde59759811a35e72c
BLAKE2b-256 5beea1e73a3e2c48cd2dad69f8d09eff10be4b125eee6c27b4cdecf99b22eb99

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 093a90ef1c9ca40e09d1ead24335da6e51a87e7c04c68193b1bd4e1c23ca01d2
MD5 2b8d045ba9994ce7f2f08d0c8bb9f9b2
BLAKE2b-256 cf56aa0257da53b2ff30842ae804546a9fbb774ccfe6ea461942ec3a6bcddcca

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f2ef4a6a5ebfa31bde52709394c8d6e98de97f0769f6d5c8ad7fff46fe2f7dce
MD5 e209bc56db93af5f67739c31e2d98797
BLAKE2b-256 02f16972c22ed32e81dd3b8ac9cddf7157e33444d7fc57f14347b4a54cb57580

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: elixcee-0.33.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.4 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 elixcee-0.33.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 13b2af0fb451c39ac0853ac79d5ee9dbdd32283c6a4fdd8dc1e7ac80a88e555b
MD5 39f8833110304d73d0cdade5a92ac785
BLAKE2b-256 1c8daa70b37125173bec7229d7139daa55d189d5e36c9da744b0934029cc0244

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 116fcbc58de70af5d2e4379c9806ce6a55604f77974cc486eee7ecd2551b80f5
MD5 edde1ed8039486d59684a0c485b50ce8
BLAKE2b-256 651df515e833ca8a1f1e41f7fbaf006ea205008337b6d0d786b653f5125a9d01

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a98acea977392e18f878b8973607ebafbd1692ee9e2b0f72bb2e5a6d836b8490
MD5 6f9d7ceeaa267b7e10391ba77b8ec828
BLAKE2b-256 22dddc9aec6874a7dffce62498af419853158775be14456b99d925eaafd3db89

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 51e0db8f5f2b791d785a984915b89096d229ffb6adc5d064ada45f1866a1811f
MD5 62d4ef18a0dbca69e6c26bf23014cef1
BLAKE2b-256 853b7ab112817ad50a105939d8ff9014218468976cab37d38aa4a7546a523947

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: elixcee-0.33.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.4 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 elixcee-0.33.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2172797d6520e52eb2ea675d07aa8416856de10d84d1ef3a40207b478d57c13e
MD5 be16a446c3a67a10da5c709ea4e33dec
BLAKE2b-256 f7a7ba3053b4cada7913ffde19f9b9ec965ee5c0db998d794e617376f1334dfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37b5df63ec4e2660a6ee9574191dd2f1dd3202788ac0d650f20a2670b66d9c3e
MD5 60fd07df2643406a7a28843478bd1d50
BLAKE2b-256 9857faf8de0265719b75f805da38fc5983d463c848473506e3b96a47d80cef34

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87de0511b31345eb09ea51b6ef8a422875880ccf7ff5eccc2419c11471653031
MD5 6449bc354fe15b0dbe5d538c7fae5059
BLAKE2b-256 0bb185e92123d2bf05320c4f5644405f47ed558969e3ac0da2404f799b8e72f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 fc42bd0695f772df611f64388e0cfd91ccb677b560b0105fa938b4802d2c46e1
MD5 e89ba11715022638b3ebf7ddc045e007
BLAKE2b-256 51d2a5c6a1f0284530141ebbb3c59f33587ac1b4693c13b131b92f20148fc6cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: elixcee-0.33.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.4 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 elixcee-0.33.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f016d520b70dca58630aa97d698693badb9ef97b79fd60343ed671f6eea5beef
MD5 dba9589d2e79b0eef5bcaf1a6373d779
BLAKE2b-256 4ebf4fa160c0ceef5092c3d4579ddc3d11de2278b307776a23fa89f3d7b5dd4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a79873147f2309768d95b63ccaffb6934368d7ef64c10561161eed79943edacb
MD5 3f63df3846df282cb56d02b3e2d4f889
BLAKE2b-256 b859d9d3ef721f327bc1a21205a89226eaafa61be3fd07d751eb4fdaa0b79adb

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a892ba9f046104a466d9203c3475f1916222531219460022f8725e8c75a48e86
MD5 38eedd630aa5ff1d0ade106276512eab
BLAKE2b-256 0a62f945827cead5e13a669467dafa4e95642c8b06bded80ed244cf72ca3a3ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0d71019dd26ff591b5b4f11f726c759c02b333f0c084a1f3cb43a0367186ab23
MD5 ddfcc67eaf6839bc4dc490994621e249
BLAKE2b-256 0f375970b37eaa5d3a4742797a42c6481686c6a7dbe607b8d1c6361255d2e004

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: elixcee-0.33.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.4 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 elixcee-0.33.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c7b98048bd639e9f0f123aa0ce4fb7c880ecc1e9465042b1344c27c2920a1cf0
MD5 90d50c149b6f1995dcbc2eeb7f92aeea
BLAKE2b-256 b53c9fd4c5755a7cd0500def19840d572932e302e46cf60f3c26a67ebb0488ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44c7cd02848c14ae95408995e94f19040658516f1cb3e889b9d73bedc86b676b
MD5 ccb8b122c973641d8c10d292e4de54b9
BLAKE2b-256 b49230c9f3c10cf362d5480859fe22298ee86302bf68f1fe17d3e584d2443d34

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a45f3db3c2b81bc191e65a3f365a9860cf057ca17e1fcc226e78e45e74cf225
MD5 c50779f4e2ba774c3b1e9cd5ac28d6f0
BLAKE2b-256 29b2cdd04b12f6e61e1afa3a46e3744c8d19dbd438e9e4da1c0209c394d7f81d

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97963b3a42d99b04c6581e319be71de35dfcd52122ef21818af6d40653cac6cf
MD5 57ec53f7782527a85ec4f1b9f6a62903
BLAKE2b-256 9df7cdf84df283897cac5149a27839ba47940737cf90ec8ce4098c1f7a5d4837

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file elixcee-0.33.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.33.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 826d906bce8d00dddff475429370b3d63d6f30c93cbb863c37325bc595c136f5
MD5 5d1c9d4b389cc2dda9ed5588bbaec2f7
BLAKE2b-256 ab53804f9e783458100d683cbeaa4a80de00822995caa4f205c3b4b6889932de

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.33.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.0.4

28 files

1.0.3

28 files

1.0.2

28 files

1.0.1

28 files

1.0.0

28 files

0.93.0

28 files

0.34.0

28 files

This release

0.33.0 This release

28 files

0.32.0

28 files

0.31.0

28 files

0.30.0

28 files

0.29.0

28 files

0.28.0

28 files

0.27.0

28 files

0.26.0

28 files

0.25.0

28 files

0.24.0

28 files

0.23.0

28 files

0.22.0

28 files

0.21.1

28 files

0.20.0

28 files

0.19.0

28 files

0.18.0

28 files

0.17.0

28 files

0.16.0

28 files

0.15.0

28 files

0.14.0

28 files

0.13.0

28 files

0.12.0

28 files

0.11.0

28 files

0.10.1

28 files

0.10.0

28 files

0.9.0

28 files

0.8.0

28 files

0.7.0

28 files

0.6.0

28 files

0.5.0

28 files

0.4.0

28 files

0.3.0

28 files

0.2.0

28 files

0.1.2

28 files

0.1.1

28 files

0.1.0

28 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