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. Set Vm(timeout_ms=N) or pass timeout_ms=N to run_macro to bound VBA execution time. Repeated runs of the same source on one Vm reuse its parsed AST. Use vm.fork() to create an isolated copy for batch execution. Use vm.snapshot() to obtain a detached read-only view of all sheets. Pass include_formulas=True to include stored formulas separately from values. Snapshots also include the workbook's worksheet tab order. Snapshots also include runtime defined names. Snapshots include the current calculation_mode (automatic or manual). Snapshots include per-sheet visibility states (visible, hidden, or veryHidden). Snapshots include per-sheet merged ranges in A1 notation. Snapshots include hidden row and column intervals. Use diagnose_macro(vba_code, macro_name, workbook_path) for structured diagnostics matching the CLI diagnose --json contract.

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
cargo audit --no-fetch
cargo deny check --disable-fetch

依存監査は、ネットワークアクセスを必要としないローカル検証として実行できます。 cargo audit --no-fetchcargo deny check --disable-fetchは、手元にある advisory DB と リポジトリ内のdeny.tomlを使用します。advisory DBが古い場合は、結果が最新の公開情報を 反映していない可能性があります。

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.93.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.93.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.93.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elixcee-0.93.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.93.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.93.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.93.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

elixcee-0.93.0-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

elixcee-0.93.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.93.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

elixcee-0.93.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.0 MB view details)

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

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

Uploaded CPython 3.13Windows x86-64

elixcee-0.93.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.93.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

elixcee-0.93.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.0 MB view details)

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

elixcee-0.93.0-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

elixcee-0.93.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.93.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

elixcee-0.93.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.0 MB view details)

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

elixcee-0.93.0-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

elixcee-0.93.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.93.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

elixcee-0.93.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.0 MB view details)

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

elixcee-0.93.0-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

elixcee-0.93.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.93.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

elixcee-0.93.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.93.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: elixcee-0.93.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.93.0.tar.gz
Algorithm Hash digest
SHA256 c3985593a05a9664bce4369db58e978279523873cc4c790a481d5f372375cfae
MD5 2c3b2ae94489ea58a8eadd5105d37ded
BLAKE2b-256 f877936012c2c17f946771afa46a5cbbc2caa853d8d18011159c6bbc18c09f13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae160b4cbbe814e5f58fcc9254e125d5910cfec2e0f28ec0e6bf1bb802faf75d
MD5 15cc7844fec8627746c0ccf83020c196
BLAKE2b-256 ad5cde6f559b63e7f66ddc2c67e35172bc76ba8cf8ad847c53718230392feaf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bf90f6dcfea258bbf12c76842ac6269c2bae8fa26d065138355ede6d34ba3b0
MD5 63177715e798c1952b29ff9721e42064
BLAKE2b-256 17f6ae55c247163296b1960f27c62a6f2209a0cca1dc4ab87fc09662e3ee9162

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c2f5f6e90c486bd59c853ceff9084c719631b91942c591926abde90855fb969
MD5 371a1974f45c54a68c994d2aa479411a
BLAKE2b-256 66682a686b86209e5dacffe82a25f2d8ad8e29d41e94507e81a8eb4eb03e9e6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a42e8955100ec995c816dd72f6db6e184404c60be420b3ad6663243b7ad71205
MD5 e63c6af9bc168dfb7cf841ec2bcc5f47
BLAKE2b-256 09b6ca81983d500373d8ca2752599ebcce8e686560e761aa59793bf452d097a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8420da092da2e9238389d9779f5f14a3f20964ca4f53412c3ebe86a07b0f2ae
MD5 a197fc037663d4666d5580e5bf65dcea
BLAKE2b-256 a5ec60b91e50ee386b76e3b009d60b6f6b4caba3113d8af06e18fb5ab411072b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4261c830789fda205b69227cd09a3bfc86634c3f0630200561ab0a85eb7e7cc4
MD5 4b04b43de47f3c518268863bdcdf69be
BLAKE2b-256 6606f6cc56d0f3ded7eddbc422b101f2efdd2b018381f6215f2905d9699f88a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.93.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.93.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f6e2d32bdc0653e0e8a18f43aceb2be66352ce1db1fcef4acf8bcded816c2206
MD5 8da977122c0fa3a3d9de04043b04eb6a
BLAKE2b-256 5667692dc104a25826a3a1cb919dd0d0e80e01a950930997176f326f5a2cb70e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c274a5a873ce91ed96042c770b0bcc92e1edd5fd950c538497b4b4fbcb48f791
MD5 5fa2fb1057205d13db4e8fa85ab8d11c
BLAKE2b-256 679ef6548640441bb54f1aa967714f8904fc7c7151dba8a60386ce9d7f83c42a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 728a2a08a43a8af8896ee4a912aaa062c6dab269303728f1b532bd50fab29754
MD5 0b7289bd34f89a6048077d954ca510d3
BLAKE2b-256 32ccd8884ddabe74b09741cc04a1debc72b845bd1b39f470dda913e335e0b4a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.93.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.93.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.93.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 6033ff5de48208c4c61298e798cd0ca113d71aac528457d42d987cb64392c61f
MD5 88b80c3c978ee3dc0307da22c4fe0905
BLAKE2b-256 b4c3d07685cf7354d4ffecfd09f2ffebdfb609678cba13d3640ffe15ad3e9f23

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.93.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.93.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b9a569ba6f9b15269afc8a6f85d288782d4b1b146de6d73a46219261b9734fec
MD5 e42260347e4e0c656ffd759deca6caa4
BLAKE2b-256 2768c7a8df65d567040895e2c8af399fb89a7c7869cbb294a4792b1b239077e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ac8c86214114ebfc38ae3c0924311141963cb4cc4f43336c7bb1cd7b7b7b62d
MD5 9c01818a3897ff397dbc44b48b61e69f
BLAKE2b-256 33d833499199745af7747870666ffa014ae4035b21631272c621363ef833ad94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 703d1a188dac4682f53bb47d64e56eb7a4c4ae57da567a070bc197084b5e8e6c
MD5 980fd9b41148672e69ac89ad951b7e4a
BLAKE2b-256 3a65967049c7126e3968397cc97cd91e0e6a9c658860a10c49380f1694d18c27

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.93.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.93.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.93.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f8d1d0d832563632259fae9f69a9ecbcc10edb708b44a596458e2302e1a7b356
MD5 6f28225a090b11c244c649827ea20be0
BLAKE2b-256 0399d135bb27b06a2d35203742f6b616a3a09c495cc849533ab9a02e964604fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.93.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.93.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4d9054ac109e0271de4c4978edc1b657f7d5f8f52b78c2200eb5fec0cf33241a
MD5 8b866b4b44fb07dd9600cdf359618b6a
BLAKE2b-256 c314a865643d454c5dea13de0f78e5f044c0a1a8bb47f12a05647b685c5bab8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6a19beed2d839157e8c9ccfc4bea418dd02927fc85ead52f578ced482b2e7ef
MD5 866ca362b55a198b9ac124cee09b625c
BLAKE2b-256 2ee13e6750f3a5a4418092280fb4c8f1dfece1b18ef2297cb4e1098392864522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a065ea3bbedcbd38a312a811f4d680ed20a7d6feb43f1594e46a7cffb83985b2
MD5 793e74c1b829f706598f45a26b751714
BLAKE2b-256 6f3cbe9cb570e8fa7c96addb65b274d1c29a5af39d6eb1f22a314ef94112187d

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.93.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.93.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.93.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c31e10d671dd48558e014eccdf4bd0de3cce4c59dc0927831465dd5e5c8797c4
MD5 ce72367a7e75b21dbb1e3929ab36911a
BLAKE2b-256 6c6832d20952ec896037e91bdb896fc8697c85b3621e0d84ad412dbdb1bf7482

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.93.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.93.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ed701bcc76b3784a5c31e12a371cbe06f658af68b880594d4410112b116743b3
MD5 534cc22110534c31e87db3fd28560e58
BLAKE2b-256 f662571c16b1a282d0308784967c4dbac3314852cf73bef4cc4e44ab73404acd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7e21e67e5f84e518767f6ed94968cd45738eab2e7161ddcababd63c9675d296
MD5 1e94672fd56825b5652c6cfe64bf8952
BLAKE2b-256 a29795b5c577be0d581e308a3fc9fc0873db4bb6ece7f963078da057a1a3512f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25b0b30c4f5181a70e3c1989a4880b097baa549fa40ef38d26703c61d1dc0b9c
MD5 eb052a537a80b2e81080c57eec14488c
BLAKE2b-256 1ebecfcd253095ceafa374cd90ec6ba1af2e7b129276ac6f7bebf612df06f698

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.93.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.93.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.93.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f1dec777d22a572f490aaa4f97b0167433b05ed65cf502e4c793da3c7d3c0521
MD5 e3888240b589bdc307c4e3e06e05dcd7
BLAKE2b-256 315556bea8a50956c10b3f41c7506fbbdaea0e4a98c84d18a4d0e845dc71a361

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.93.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.93.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e40550593b761ad423bb1a530615cded1ce36c253b8b9ee8b530b558b9c361a5
MD5 5443c8752b91668898ad4d5d630d3ded
BLAKE2b-256 8192a17420d86e6ca1ad552a6c284eaeae1f14096ac83e1bc7ef36908de5f99e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bc8a3d499c561362c76c9899cfe9e4be39f67bf9c802c7d30bc3f8ca991b2fe
MD5 06960976f2b0496fe42fbb77648d572e
BLAKE2b-256 7fcb78c5ac23c8a7ec813a50d18e03a02255c7f7a4c9b2010d4b5b064d57cff6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42b82e8bae08a82b90b69aca157f4b5a11989881201b277a594c5016c02167bf
MD5 d8166d64bc8f7b97569bac8b565410dd
BLAKE2b-256 7092b186d469bac26cc4cc250116572de70ad61798aad9ce9ecab5f8a6d6d9ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc1e5ee65ca52c2261cdbb53c9eabd369e0b3ccf76f7b871489f21b67f380dca
MD5 365235e4e003187b8eb4e9054c769da4
BLAKE2b-256 fa21796710adef8a3cc51718ed8a89c9546f38db665cd7a3bd0e26be1b9d0366

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.93.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfb84cd69029d03bd563b175b5b854d2103290a5318ab883fd86e75eba214878
MD5 e088841dfc8f643a30374b85f77b8bf5
BLAKE2b-256 f8088a386554f7938e72699b0de212ab5dd92387bffb7b11c1ef9c5e6a0eca17

See more details on using hashes here.

Provenance

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

This release

0.93.0 This release

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

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