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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elixcee-0.32.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.32.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.32.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.32.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.32.0-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

elixcee-0.32.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.32.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.32.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.32.0-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

elixcee-0.32.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.32.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.32.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.32.0-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

elixcee-0.32.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.32.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.32.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.32.0-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

elixcee-0.32.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.32.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.32.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.32.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

elixcee-0.32.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.32.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.32.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.32.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.32.0.tar.gz.

File metadata

  • Download URL: elixcee-0.32.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.32.0.tar.gz
Algorithm Hash digest
SHA256 d258cd1143342c232dc2d095d9edb1ff173bda2fb00c4af0c233549b452f69b9
MD5 0395463e54def6c2623295fafe7553bb
BLAKE2b-256 60fdbe77fc4b454797e584811dc34f7f43d7917bd23808d07f0e0645d09acc2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57ad343221d05ffb89fe093cc703002a9455e7bdb5817fbd6467a327585d8bc3
MD5 295ded1da831526d1dc1b940a5257a7d
BLAKE2b-256 3d637506adbb97a2343cead63ebb23290a4624a5cce60b79827a6d4f607fa798

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ec502881430b994fde3fc285aa1eb17d2964c8dad1a56b9eeb449f6597652e1
MD5 e3a59eca75856627c3e0c01db8cca969
BLAKE2b-256 aca35f53a3d4b914aae1a6173c67dcd44a49789f63d2dfea82b25bc5cc3a7dc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89b5e1a1a241701357cfe12595dd8dd6ab30240916b60fa82eb1500947e5d96f
MD5 5b48d983e584e1ce81cdd49bbdd3bfa9
BLAKE2b-256 3cb6af2015889763ee9c2f367c779b3ce6a297354fd8531b1224e782f098c12b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04dec3edaaa0a855ec52c049acedbb8d6920c72379b820ed6f6f389f74cb1a5e
MD5 ff1ae78ef968c8198fc9f96ff791e7b9
BLAKE2b-256 fa07dabe9b77ee222f3fdda656db03e1f45826415b2b2cacc33ba999f2bcb7a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 270ab898a72a8f297e715bedab72ca4b4d172ce0c5b41eb6493616a7790d0fd2
MD5 c15e4fadb9597cd2b29d13604d2eda59
BLAKE2b-256 eb7c703f53958e6485d22e6b2145906133a52866611b60b9888e31792869677b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d48c23826796e80444ad6278b8fbb2569031e991ee8247fac0a00ce40d9151c6
MD5 21f2286f80bec69eb0ef3381a267b177
BLAKE2b-256 580122089318406ebf1e7cbc069180d14cde1482ff1b093c3e1e287400d1bf6a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.32.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.32.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7ea906eebe5961e68faee57012ec1ccdd72b9d0ff68be1ec8f64d2994d7e1ace
MD5 ceef6b60e4c48065b92e3e8074472b1e
BLAKE2b-256 309af899d32e5ef49ddfd969e3f3def505c79241a434eb4bb7828e230f9be3d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d20224726ff521d2e67917b9db7f61014e8131c31ef8e11bfae7ed580866b1cf
MD5 85de2bdc22f5626e8a813f0349026421
BLAKE2b-256 ba0d286a472bf88aab01c92b7ba284be1000a0855e53d5f00c335351aa35645c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6872c27348ad0600f9bdd514ed482a71700932e42c2b588f4de92afaf9655bd
MD5 d665665555b9bc5c6a886c28b489532d
BLAKE2b-256 c313c4cbaa28e6d721e8439d692dffc8d85c327e4aee75354771257dcdfd5511

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.32.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.32.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.32.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c3aeefd574f9eda4eef4c3be6e68c2db4a5c72b86d8a16829d32aa8c6e3bf77b
MD5 694f3cb25023b0689835b35abf9b6c1d
BLAKE2b-256 c9f7eeed748128b017a4db67cd0a85747a3fa6983eb09aa49dab5c88ca2c6749

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.32.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.32.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6c9bd8a5199e7cdfb20aa1910706b82011dda0019b8873143ecafa2e5bfabd24
MD5 2d4458256ddd66ad843a905265c43c88
BLAKE2b-256 1f255cdb333f54f2debba83fcb442bd548ac43010b57cf72beca1bc28bf49664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ec53ce61b3599c829b6d84938ef9a0998b940e2d8d1f5381efcad1e21f4e17c
MD5 5ab22bd3e03c54995c828717bb628a72
BLAKE2b-256 d93131e788c042259061fff80b9b247688e62cf78f4402139e6b5faff8a56017

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5129f0aa1a5f02a2b2cc8420bd00b860bc606782793d276dc09fd7f3b929ba5e
MD5 cde6c977733fa370619ac266673d6b36
BLAKE2b-256 2fa71a421691383ae6caa2cfe2a74a9cfd38e865c0c298031b1291ff0a713ba5

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.32.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.32.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.32.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 13d530c2bd1cbe3ed8ddf6f91eb3c919ef790c107c9004773f52e197192ae2c8
MD5 2f2cf0013988f263cf7829a24df02ea3
BLAKE2b-256 fb7af88ba6ebd64f8210cb25c8ff5e32383b25d562e8b936e5ac94c59f3c8aba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.32.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.32.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 085f37883a3d358c1fe895f54f4e96793fbe045f66996e8c32433ff79872ed98
MD5 a0bfc9ad8b528b1721d52108e0af2f1e
BLAKE2b-256 a1b85ea5c9fe43680dcd67316d0ba0ca066eeb62be14f6050cca62276deccec7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee0f2e6d807ca909f796f19ff56c5fc24744fb196f7d4683d326ad49106fdb20
MD5 ece2ac6ddf0a8780300e3ae2f6c83aca
BLAKE2b-256 f59618a76fd1f193a0a36db149fd9166690d04efffb186d272f5b6ed9960c73b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77ca15c704eceb5f138d78c2c93cda43e1cb122c79f503d2b20146ed7d288b66
MD5 29f285959861f3372f386eeb367eb4cc
BLAKE2b-256 d555a3c0f63e702c396984cfc9a06a8db4309378b3039cfe15bc728d1468dac4

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.32.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.32.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.32.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 dc1429f05abd0eea9ad31b36981d80fa4b1494dc5c0e1be32abf8da61886408a
MD5 4f84490e3319d36766c931b5b47884c3
BLAKE2b-256 6a4e94871a91b3e0df0586723eaed73083dd926a83692131b23cf97d1102d94a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.32.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.32.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d658619de3d059014714f76020e068dbcf42499f9a17f3d50bb3801ff9c94d79
MD5 d263b56099daca524b86dd5a42741c80
BLAKE2b-256 58e3ac8b135a78cc957d60cd4fdfe9c55893259e9688741edf8cec36f91a6f04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f2044e7d7c57abfea787e1728d6dd07c95941d0ea6305e39326bfa1de61ab4f
MD5 b09bdbf23d1ab28835ef21f378b0d884
BLAKE2b-256 15acd97d00b3cb0a647cdb192dbb7d7c438d5cf51b5375f54d7dcd09f0a8c0dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c54ba45f6fcfbe3cacb2286eb06da057bc19600227ada507c5d0c39224a085c
MD5 ec85101afaf802ded768a4d89b128bcb
BLAKE2b-256 3d8bc845b7c3179a5750e8f71e23235db75a03661c0bdbca8bb7787303e909cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.32.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.32.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.32.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 5b297685df5db81036a2be2cc7b93277d1d1ae4916db896794ec21af58f70f05
MD5 bbbb2bd7c2fcdc710733e76e1c71fb93
BLAKE2b-256 e2245cc7a4e3c1c878cd92b0d1a4b0fdca16dbfb0c14924e6e4aeca9a0e54992

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.32.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.32.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0453c2e7a6ec40ff5e2b3452e813eced3ed2d0d1eb1c6b34cdced2422dcf76c0
MD5 f34ba515b7887781c5c7ee322daa4ded
BLAKE2b-256 dd4bb7bc1663f05e41365287cf279c05ca31d5add7a6a5f70ea152ed96d4e110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d009152ce0344b29c388322f386e5bb6c2e29417ab9624f3b39890d51276a00d
MD5 ce59c86c3715f761cad150640108bdbe
BLAKE2b-256 fa43586adacbb1bb284914d3154dae69c7059ec6143608213fb959614c6687f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fd977e9c808339d05128717a1bbaea50e70536f9efd5a2fdaa63bb94c36a24d
MD5 2ea299b34afd8c9588c07be848e0692f
BLAKE2b-256 289ba99fbf03265f7d8221e0e4136c173e0878417a078cb7a39cdf6f887e3373

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a0d1980e8584c42c04bbfc2c2af7ca6db90c9bcae0aa41c78a089862c4fac40
MD5 1b5cd02b0b8301fc52ca3701fdab6cc0
BLAKE2b-256 cf52de64a3a60778406d38f3876a8f1f686266b6eb86ebf1e5075e9368eb642d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.32.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a0bdbb29bf36c79bf56d28f96b58dc6a710330b15402de481ea477432c88669
MD5 5d13332866e9bf823eb54094bf0f3b82
BLAKE2b-256 8cfbb6ce62b3fbee9b031ac4e09fb9b05b4b45bfed2fc28b8f9e4fa85e25513f

See more details on using hashes here.

Provenance

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

This release

0.32.0 This release

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