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.26.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. create_stream(path) provides an append-only XLSX row writer.

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.26.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.26.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.26.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elixcee-0.26.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.26.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.26.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.26.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.26.0-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

elixcee-0.26.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

elixcee-0.26.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.26.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.8 MB view details)

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

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

Uploaded CPython 3.13Windows x86-64

elixcee-0.26.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

elixcee-0.26.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.26.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.8 MB view details)

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

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

Uploaded CPython 3.12Windows x86-64

elixcee-0.26.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

elixcee-0.26.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.26.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.8 MB view details)

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

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

Uploaded CPython 3.11Windows x86-64

elixcee-0.26.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.26.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.26.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.8 MB view details)

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

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

Uploaded CPython 3.10Windows x86-64

elixcee-0.26.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.26.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.26.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.26.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.26.0.tar.gz.

File metadata

  • Download URL: elixcee-0.26.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.26.0.tar.gz
Algorithm Hash digest
SHA256 5113b40db3a036b46bbd99ec53d403ac3f3765b6bda1ea24c9b4da90bfda6e86
MD5 2ef1335f31b9cbed96dbf03fca917f1a
BLAKE2b-256 f1d4529a4ba1cd7468754337307e37395c8096e024ce0009bfb607fbb31f2d2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3d27f33c100fc4a86a47d54954a4ce52a07464773bd24219085d42dc63ccdaa
MD5 f570a66635c2227e735bead1bf1f7bf1
BLAKE2b-256 5ddd1a6fc1dd369249e53a14e4d9fce386cf204158b78860f6c60fe153d93194

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d458320af8f137948862645f3e5ebe3cd0d5d5a28e1d9e71d5931ba6c059f1b
MD5 4910fc5a1e197bc52c42539bc7e5f39d
BLAKE2b-256 d01d1c693a75115b6ae139f1edd1fefacbaaf1860985c8ac37b18251234e38f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 979e5cfb9acc371dfbce0b709e76ab74331242913b070c5061e20a8d87b5e76c
MD5 00d23ce337df39da57fa8d196e54093e
BLAKE2b-256 f275f5ea22a4f1c809f7ddff92999c8a30e6c84c52f0d948df6454e053a5ec7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6826bbd0d42e0e5ed181aa543af93ce1ca876860604a0e0a48339d9b0370f0f2
MD5 02da7ffda4bd69b4db0fb96d65831b3f
BLAKE2b-256 ed5391c79ed11e9522bfbb9eb3b9808f3617a269dc9c46c430b9f424724bbc44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 630a3d82f26bd779b0bc07b824eceb5e28801d71b0b003cb145b94be55e1dff0
MD5 55747df2c89a65ea45f8f50e010ed423
BLAKE2b-256 aefa61b972e9279593967d35f76e348b28b7d53dff0453a4eda47ccb27559b10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76284c8c5473430693f58189822a069c892e8f6b72a6158617d2d4de5b0fb90d
MD5 128b52a5467cb34d15dbec75eaf80c95
BLAKE2b-256 b3a85d5d3dd1dbb96adfc216cae33fca5563529db1873fc375510f991fba9cd2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.26.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.26.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 73c5014b48a95783c32bcab94f34e5dc7bf4390013153c0b84371453823c778f
MD5 e176f915ee652a1ca90ca111f30e0055
BLAKE2b-256 dbec3a7ce06832c71394acaf603b8e613909f6d03a14bac64ff457696fbf0f9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 388e4ba685649c1b0fb07fabd5218141a750162173a8cfb36383536784b678a0
MD5 84d1982a15e8e821a03980002457072c
BLAKE2b-256 68fdb4920ab9bb800684c114a52f7b7452e863520d98cd8aedb4efc018374825

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 551d6037675b23f8838e9aa17f79fe3ee9fe4e7b68f144236cd41053c973896b
MD5 99d49a507a2b33164a7719d666719cde
BLAKE2b-256 546bded63434ec0b298574a73d350fa7f6fca626e28d37cb8cd4bb763d7efde1

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.26.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.26.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.26.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9715e407b581aa1814a1a8128404fed7599ca93fb0d6d005af635d9d721b69c1
MD5 dde95ec9a17cb5979e2fc3d2044f3a55
BLAKE2b-256 f1ac3ebba2ba1bb0876c02e5893c038ed49a1fa9b9a5d54233c35e1046bdc1bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.26.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.26.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 165bf440a2ac17ac492bfcee7cde80866f2cdbf7019e20c43997a2a0e955f77e
MD5 3f33aef7304e9fd7b2b0b95ffe6e26ad
BLAKE2b-256 4f3b3530a49ebec755f2dacd2c459873f18f327b057a6024281514d886d02831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a76b83d16812465506fd35c8ee061e507275025cbd19eb4ab73c9da8a62d653
MD5 17c67b8612104d66b14f19ca587f1bed
BLAKE2b-256 b34c7098ca561c0f2a4d8275c64793abf6deb0e8f9f9fe7381834642892fb614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fa2a741a203d5ac8e66b4809abad6e8a517351af9d2e956f3bb8ad7fdd9063c
MD5 420af676ab9747d4bb12e9e46656661f
BLAKE2b-256 a259b6cef64e7c9c2b98b526da4736248b4f7c4a6fe573bda3008703261a79ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.26.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.26.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.26.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8d0b7330a0bf607e40e021e45da600fb682f8fcf3248692361a0bbf17217b3e2
MD5 e797b134c34ba24cfa9bc6ce2c1723b7
BLAKE2b-256 8999c585e9d77a93b4da316d472f3242a5d3ccd1cab04f71c5fb32d328e689d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.26.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.26.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0b4f36fb185c5f6f7abc3fc8b8eef8c7b1c1f76d7a125861fd1c1db05211177e
MD5 0f291e8f61d0d0195abc3a399f0d529e
BLAKE2b-256 6586d5ff5fef22d4ee4ae87677fd5419d145a0576b2fc701dd974fea376ff9c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93c8e429c25ab984a7ec387288cf21311872d613e99ec4700aa7d1e0d0f926be
MD5 95df2be4d106937b21e2b1c8f65965bb
BLAKE2b-256 d83c80c264be3a9f3bf8cea24231e82a2be3df32fae726221ad29795ea6e4692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84277b8ccb610ae06cb7c33f57c3b5e7d91e6a804f7906360a286895d84c2d5d
MD5 58cf5e4c3ccfd183407ff77eed452b3e
BLAKE2b-256 b17950e274f5f4fa7e76e592552f29314a915ae9741ba5b8730a8fafda704fd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.26.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.26.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.26.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 b2bfb5d1748ddace029455dae805916bddcd6898cb8d3caa81d78723b8917267
MD5 a27faca4bb5c14cca7d6e58beee520d1
BLAKE2b-256 515417cb26febb5b871b7f9a26d700b77a60e1f3c6dfc111207e4a5f00e655be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.26.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.26.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8ed402776781971c398ffaff564c88d8de05a6ea04e0030872c95dcbf04b50f
MD5 f9d575da9341d8d465f768be3a7a585e
BLAKE2b-256 d3f0e286bc395009a99c869370eb16cc53412c195ebf21f699af2d5458ea544b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd1e0c867729a570f7dfba09060f806ee8f266c49362fac032cd9648e5d71ca7
MD5 e1d3b070efc8a9a6aa99246ce812ab90
BLAKE2b-256 d64d4191abe0de7e103de6ca01369ac75062fe11e7d6939f3ce730307ddf47e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3eede8e4f44b7a140810ee19dfa4448994694cec4e90ea032b07d0ce784408a6
MD5 52cb34ff637ce1dbe5eb70f70fd16719
BLAKE2b-256 02c78d09f451fe47c8e00f26b8d6a7325325242246ab3942afeb069db017828b

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.26.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.26.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.26.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e24f33b17d882a94e2609739ae692b07e476f9b05d4678b36b29f0b581b4f1a3
MD5 ece53b3666a8d58d49bd932b9cd61246
BLAKE2b-256 7967b5929bfa8134448585336d629a441e91c96c75da6e6b94a5723dc0d98549

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.26.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.26.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e3c3a0fde43b9e3adc1efd68ee778afa1996633636e488ff1a3f99fd87c8a3da
MD5 f3b6c762cb97688107c00b74c7e1501a
BLAKE2b-256 319f62a908ff7c698596ef11ff62d4e52c74776469960e0205fc207c7a50c5b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e598086432593135826c98c81eba32585e756b4c89a436783355ccc47c7dc684
MD5 384036595d7b676b4d86eaa8b4d541b5
BLAKE2b-256 2d2f5e4f2c36cf248eb0852dfc3549606f7fcc7d286f421293a0a2ee8d682477

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80164991eaa78e0ef71d543905724a2b076f74a6554b35a416053b5e615a749c
MD5 ad862ccaa96dfe263935901ac51748e3
BLAKE2b-256 aca333f03255f50af4971876c9ed636728bca6b6a3c5dbea563b789450740d39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc6ef4ad365743e9a0e8de25ab0a4ea417b650c28635e25f50a57d47a8abe81b
MD5 318759f25efe57f130a772400fef8714
BLAKE2b-256 ffcbbb9a5e23737aae6a28bd9d9c76b81c9d44ad9074e79930a6039a58f3e3d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.26.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20d902d0510f28ddfccdc9c084c21f7ffe1f5a8d07f6867dcab3b028428e5817
MD5 9bbadd5536268be6342536b2f1249722
BLAKE2b-256 dbf982bb19f772d8577a018e34145c1abbddbc6abbf5aded7cbcd66843abf132

See more details on using hashes here.

Provenance

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

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

This release

0.26.0 This release

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