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. Set timeout_ms=N to bound how long each next() waits for another row. 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.34.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.34.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.34.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elixcee-0.34.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.34.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.34.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.34.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.34.0-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

elixcee-0.34.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.34.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.34.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.34.0-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

elixcee-0.34.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.34.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.34.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.34.0-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

elixcee-0.34.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.34.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.34.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.34.0-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

elixcee-0.34.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.34.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.34.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.34.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

elixcee-0.34.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.34.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.34.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.34.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.34.0.tar.gz.

File metadata

  • Download URL: elixcee-0.34.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.34.0.tar.gz
Algorithm Hash digest
SHA256 bf3bb5d6cef201a40fc128c9514a61faceebf0e385b422af3622d250e06d0a42
MD5 0370363a835dcdfa9cfefab16b09da29
BLAKE2b-256 7a1e84b907c67704377427d9581bcbcfd34c1e1c89e141aa75311d22d4478b8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0659e3ee05be337919f543cdf2dccfc1a088cc61ac77f05c08c31c410cc5e6b
MD5 b32623f985b8cca674e44cd5fb9b6b07
BLAKE2b-256 0d8f90c0846b2e20dbf4ada63fd3f0333a75de3dde18aa4321dd77e37df1d429

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3c461704005ba964fbeb0f3c1591f1e7749e64668d1258510759e13a3ecff44
MD5 f5d03d5fff872c6a7de5d48fc4d9d62e
BLAKE2b-256 e90ebba41c237ffb2f5efc3ecba66ac2c35f619e4529cd48869ed63c37570938

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d081a38d8cd6c4ac66f07d4ae07839d0d486063ade7b47303c49964802ec86e
MD5 2a8b4575c9261ba3486a58a40f043fa8
BLAKE2b-256 ac44d32ea0ffdcbd8f7b36c0592f0c9f17703144d019f567c76505e3b5d36ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72dd713ce25509ca8428353c4b99fa6c31fb41c050026198d03d63c82c9acd72
MD5 97a6f35e2f2ffccff9f16ac4f64a19ea
BLAKE2b-256 1873aa52775072b01e86440b53743275c63cf32f0037aaa1380724002c8dff05

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bacff854ac9062817ea09560302562700eabe6d10360c459323f40abfac4e1ee
MD5 c4352b45575ecda523dfb8af1e228e45
BLAKE2b-256 e4a31306e3c24bddc17de83cc12164f713d2118e29a27fb9de8221acc7908485

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab5f6e45572c49a192be69143d94e3d043143712460c79b7e8b6a3843221e502
MD5 52f126640c109e667bef1b4157028555
BLAKE2b-256 bed260b684f5db9d9c7766c5191d4215f180b35fb9711912540afee0de2379ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: elixcee-0.34.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.34.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 971ee9e3a39a4d39678e27501f37a04f2c2e3fc72333cc0e539adff6e0fdd7dd
MD5 1e099b243600bc0e22ae9e371d0ef417
BLAKE2b-256 5bd4ccb8dc8d0cd1d748208cc8ac6662f48e4a9b1564e47d2ca0f4cc95853452

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f514732da87d0b1e263b4d15bc1b3def634ff9183f5f80ef9379d524519bde2
MD5 71b311aa36f6c80601efc18ea31c26e5
BLAKE2b-256 d2131c73ccff974c3aef9ca8e8aaaed01fe6557036874cd914e922e03a6f125c

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 771382ab146df23c2c193940c0849f0dc21fd20596688de195b0fd2d6451009a
MD5 1d7e0d0d64b3c40491acc02ba183f103
BLAKE2b-256 5ffcd266c68d52dec99bded2df9c0d55abf577cc1c809a394b44051bedd034ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.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.34.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 39325b5f3d9a14cc7997524a86b192abe8e01d600fc55e25ea951c38c0224a48
MD5 b07f1bb3a2ea25acc6416e774ed4690f
BLAKE2b-256 89e0cf0f3f59ed8874cc144ebec27ec1c0d1fede9f72a8cf4f286d8a29888cce

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: elixcee-0.34.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.34.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 535ca4b1415f3fa4a96ed40104da92311fab180eef946bbd04780432a68ac6bf
MD5 ac68620123d7668b49fedbb09c0c9c1c
BLAKE2b-256 df33e4acf78ffc47dc68ea53e2ded2c3f0b4c6a7c9ac572de5af0f0f2a80096e

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7aae0b0c860d17f9017eead5105653b1957dcdb9935428f0f6dd2cad3f752228
MD5 911c754d070bea2d3d3ea4d86dd3df94
BLAKE2b-256 68391c898869f9910583b9c6faf184b30db8ab470fe8508b7d1844241bece5be

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cca823cabe3442d2baeb6874e9d66895e7c18991f4329bb63a94fbd524a3116
MD5 7602b0fbca0d3fdd3ebd4abe3c4244ba
BLAKE2b-256 bd4856442800d6f0c5537b5c00177548d6501a5e0eab012dfab6d72989fb4f47

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.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.34.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d4c664033b0502a1a3e114a71ab67850f8f0f671a4e70b565a98acbc65f59a00
MD5 d058452bb866ffe000cf1860583c3b88
BLAKE2b-256 6bb5b79e2aed7b73ea794e9ed5a676393027b0be7fbe491de5de8b9d99067538

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: elixcee-0.34.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.34.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c7cbc6c061d0647d82fd80c93cfd71660c71b9822976c0a6e22e8388e5b8167b
MD5 01cffb6d1ff63565dfb2bbb44e3cfa22
BLAKE2b-256 b9b356579870793e3bd283d6586cb92017a516a57fbed286b3cc317fb0735969

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fa9797d416b5db13d27cfd67faab4215920ed85977fa64c7701f5f24c648e6e
MD5 c2f3134cd3be57eea0f110fb62200a10
BLAKE2b-256 7d0acbc5dc9412876f0ac1ebe68f13fb3008691bc8cde0393d0e3a40c67a8151

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9e9cb7912ee96a75329ae2497232eaabfd1f28d87c485edd0e1d198049fd3fa
MD5 82cbea031cbd30661e1791c4de7fa892
BLAKE2b-256 0836d19281a3a1e77c13e3087d10773c685b9ded1cc0515cec17c0e8a33b186b

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.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.34.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0ae2412e1a1f3f625a06c382da90c80bc95bce72e55792ff5be10c6071478e86
MD5 8b5df009ed6b33719f088ac173f4dcb9
BLAKE2b-256 9b1438461edfe645b187c39b534e7620e1511f57991266cd426f8aa779c584be

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: elixcee-0.34.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.34.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 84fa591196dbc532dfa4f808d63ec3a96add157785505a292f3c8f3cda155c56
MD5 a3911050a0d9b3f74cc22a889e03fd32
BLAKE2b-256 19b13b3adce2aa780bb1b433a26e019cb6f6ca6d4a134275faf308e318ae525b

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed3d02241b7d129e269909d6697b403b1b5fc1824090c3658acbc9e683b46b70
MD5 291ab50b5ea8b3318fa2d85634f8f1fe
BLAKE2b-256 42b772ba5c1c4faa2622cbbd0688d151e2d8d3ceb15bea8ed402e60d2a1ce6b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0cdbd129e49284ce5a86d2454a5e0afe08f182657fa41ee67079e808a299bb3
MD5 0065d6391e2c3af6aec513a2093f3761
BLAKE2b-256 1604e56c259bb86b2d983f33b753895daed97e029190aa43f763c0d8338d7f92

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.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.34.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 6d89aa22cfd5927354c85965b6ce234a1b9703217cb8b76fd2257cc3e715f5f2
MD5 b1d96c2858f8441f60f4ac5cfb1c4af3
BLAKE2b-256 2c690beabb44adb8ec7d4fe82b799a8e87d24ef856a3ac56dffdd743d25a72bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: elixcee-0.34.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.34.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 46ae240c899058dd171be2388228999246a8d5c1296d35bc927bb37500366752
MD5 47cfaa1b5d5d4559de854a627ad20d77
BLAKE2b-256 572cdf2a450c6f204652176a0a5ff4f8e2f6e42a985febd3cc7f856c98aa8622

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d7f7123f433f4495234f2568af8aa65d6e07041341663ff8a65550206f40d81
MD5 a16a623300133de998b437d422a357ca
BLAKE2b-256 9fe42ae8cd3552fb2d2db24e341dee4f1c6aaf2956c0ba4e54054077a1aa0b44

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 756267bba9a32c3b44acce6354918a990ec640e6fcabe7ff2f5598a9859345c0
MD5 16bb3a97bb72429472b455e69653916d
BLAKE2b-256 358efadf9e798180a220093fb2d0133b56772699d25c2c6e95f8f22b6e3f3466

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a8928a4abb45a17d0a65b1472af647a8a2426a9bd029f4c03bf53c164be98e6
MD5 569e46150669628b687f0255ecde6e89
BLAKE2b-256 f534a92fc0cb1eeddad7b0063d722c1a53fc66309410bb4aeb5c3886959db3d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.34.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.34.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elixcee-0.34.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4a2d2ca7e0e298da35054045b8815770da4664edfb95bfead6b420fbd37c994
MD5 8e0b5e0138fa62715f804111a3b1e520
BLAKE2b-256 56617ab37127072f6a66c5592ef9cc64c22f50a975b3e9e5b53f42399a1ff230

See more details on using hashes here.

Provenance

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

This release

0.34.0 This release

28 files

0.33.0

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