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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elixcee-0.25.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.25.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

elixcee-0.25.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.25.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.25.0-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

elixcee-0.25.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.25.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.25.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.25.0-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

elixcee-0.25.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.25.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.25.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.25.0-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

elixcee-0.25.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.25.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.25.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.25.0-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

elixcee-0.25.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.25.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.25.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.25.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

elixcee-0.25.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.25.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.25.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.25.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.25.0.tar.gz.

File metadata

  • Download URL: elixcee-0.25.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.25.0.tar.gz
Algorithm Hash digest
SHA256 1e20a25732d447853920ec733098552e55f1aa4a0a1defe08812ee5207724bc5
MD5 e7310c2cde1d3b08edaba6cea91015ed
BLAKE2b-256 410fb4139b0b5c5cb5d1ee7e9fa15ed84c11a325fb53476ee55635b7f180a8a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f631e9d112c19353772c9411c708738350a5a4e486591a86d7434ca03d91db5
MD5 c9dd48b9afbd62719201d779440a4b95
BLAKE2b-256 4a1e94a625727bae54e896a95a90f63cc66cca97c0fb2c3b7d7062643affc9c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfd897a3f40969ff973fd978df55be043c1e0b0bb8c3682b58c5eee8228e42c8
MD5 debb69f6380932e9e58a7c9044b5dd71
BLAKE2b-256 eefc27bdcdea1f6a79a24689352ac4e8277abeca629ece672d84b8fa5add058c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d6176ab574a5d7035326037aa28b65c908365179ab0502f3088815ddfedb0d3
MD5 2d020bce637b54d24997405b93bb7079
BLAKE2b-256 12f5335ab740703eb18f0070bb07dbc2ff3684731229a5654aeab79a1051ad12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b2da00dc0d7b2fd7a50090a3fc9bd82d37026a45fd1e7d758363513024805ce
MD5 f2a828ab189eaa7185f242dbc57b2c6c
BLAKE2b-256 dec7f8478cdc155f57166c125a9500f376cde865b292b15c4882b88162b761d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9b3bf2a240034a5320dcc329b076deff6d365056e7b3c5fb87ab902dcb0bff3
MD5 9468e0e06d400f039d413df2fb15c7be
BLAKE2b-256 83e69e089568681eb929b4759f51dcebc3bf9fb45dd7a93fadb69a1de1529522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 565a9a5d213943b4c1fee7664d3db19f888c5e3bfe1eaa2082ea7dff22706c8e
MD5 6c53ac2b7b70084f07d1d6d3aa2390d2
BLAKE2b-256 798335dad0add15d9e2dbbb3c507e260911fd8754689172f12ef106f0a466c75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.25.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.25.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e56490dc0ff5b8cedd5ccf5b32dbd37734e328de5ba72ff86102bb9cd88c2ff7
MD5 e5ac44dda1ceb84a96180b1d9019552d
BLAKE2b-256 a584e25764e6e824d0a9b354bb65cb432cbfe69ffdd5b7c02188f0868cb3afcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ae5b1fdf1787ce7fdd6d5c799d4eb972049fe0fe0f2c15ce984bda00bfa803b
MD5 923bf89636127094ebbd92d21ed62a70
BLAKE2b-256 c33a3f8059b89733d32412f84c410ffef6909fc436c10c6ba26b9a84cb413b8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c28ccac4691ba1393f54f56c906e6171f74fa21df38e79b8affd1e1ed2667681
MD5 9da523b74f68bea2282c6d836dbdc79f
BLAKE2b-256 8b71d8f9a26ee5515cbfd64281ee91bbd4afd7ac8440983355c9010150c41b68

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.25.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.25.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.25.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e8a80c707eab1fed1c8eea9901514db21cbb0f568ac0cc88f65dda50d6fcb8f1
MD5 511c0adff291f441bcf6321a0b032ac9
BLAKE2b-256 cad31d4ae10db7e24bea555c68f16452dabd5795be9aa4e1e86422f8060b6c2a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.25.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.25.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ff5afa2b7251249487a00e3a150398b2418beb72266d3b6207e49c87eee42638
MD5 7e460651a58ea7c02f9efc57428e4456
BLAKE2b-256 cc6f59a4fcb608fc0ebd86dde6524276c62423ba8d1c06763aede5ebf605066b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7e5ee50626dfb62384da5895349aa29f8465544e54a0b3b64cd3f6c4dcc1b2f
MD5 14c1b7fd9e4796f002cdbb838371c6f2
BLAKE2b-256 5188343f0b3daa8973eef1410975d8893b5f2f5394e32ba291ba8e3d25fa81f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e9f062099e89c73d4099b24be3b78d17e1ce5f4c13c8717325afee2ceecf86c
MD5 942ad7394026b74d106227d5d49c151b
BLAKE2b-256 1f961a768bd4ae0e4eda794e3a9b1173237abb83658645492b4463e50100ac0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.25.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.25.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.25.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0cb8a2e058c76bf7bc667fefee14e8369ba0d069c2da10f3bcb995d32d3181b9
MD5 713331cb36066a83ccc127c11ca06a47
BLAKE2b-256 dc3feec7271c50b95b2110c6985ac0c90a04a120c8ed53e8c39330cfc59b6aa6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.25.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.25.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3d6ec5a99ba3782ff7f6fe9e5605afba46464854bb1fb49ebeb6bd53603c94fa
MD5 025c67d2dfad3a6eaf865e8c1998e453
BLAKE2b-256 6227bbf52a1563bfec4e2258448d0e4e84ed19d630ae77239dd09a3b3aad54cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f68b557182b1c2051dc6533999b9be40780fa4cd69c8604f520d47149fa316b9
MD5 3c29e04ca13ec0dbbdab10a898764d6a
BLAKE2b-256 3d50cca124d81677b402f8ae04789ab9f170d2813817d1a4d9febd82df82741a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a5e753006fbb5c2b32cd741a8aee002004917f35e51d68d58191df09024effb
MD5 7882efcb9b37fc8f5a6b0d04eecf38fc
BLAKE2b-256 31e17eadb3d00009ad832b761073b6f6e5756bf46a1da1fa642e1d920e4bce9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.25.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.25.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.25.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 34b3c19f65078d11cc8b78d7d7e05fd5ad5194d48c3dbdb0e817e6fa32d3d2cd
MD5 0d63e65fd504a2d431b313660ee4ff13
BLAKE2b-256 4ecf36eed59c9daad843389794f44dff11b89931f52a7b5c185012516bb7cd1a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.25.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.25.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2ce7617a36b5927e666175d2c0f7eb118933a12e33e65308c877a2a7c8d762d1
MD5 4c92d0ee00c8f2d034de1e34d9a4e743
BLAKE2b-256 0118780dd0c1b34eccae3b1698439b509cb0e2b0590fffe929394e4e743a5291

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afa599eb3460b937d28373ae734ec7c7440297a082e99f02532819fc6e164305
MD5 5e898315103013efdbf6f6e0afbdae27
BLAKE2b-256 22db5f1e9d63d1140ba7b38693afe164a5f5e3a1822ff29fbe0d8d38354ebf1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25e57154048875e573d916953d56b8279512ae0191f3f61df624df4a8f19d339
MD5 31281e9b373b11267762b21f79cd9ee9
BLAKE2b-256 59d42b7319eae4010b4feb1c23f1932d3d4d64f75b1c4f3ad82b383cd964e154

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.25.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.25.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.25.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 4011f2c26b5924055fed36fa34bae4455cd8fe13e2382ec285f35c681f1c2292
MD5 e118ace968337c87213dea45df9fedc8
BLAKE2b-256 2cb6f46edcd354dd9a1c8590921c16602824c1228a2c34c045f6788701cba3e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.25.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.25.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d5bfe4571aee2a6fa22e309ed99ba08918c23b3e1508f9ff5ae3f78e1fb2cb7f
MD5 ceccb565a38bb28fe5906467a2cba4b1
BLAKE2b-256 1cd10e87c37b7e5997198fe43cd41fd66c36d579b006c5355a203e4286751fc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7ff9694f0a4a80471b99385670e955aec687a0f9eddf7065b85d3596c381fa9
MD5 d021babd54abeec4b57b651d1b7d2be7
BLAKE2b-256 9ac72bf6f90877d0f2873cfc28c023bcf232cbb17bee9d11f4f1a6576dc11d3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78a31cc1404e102143f8d04e921b5e930f7c3b11ac46371a2577351e5cf82196
MD5 a98a3123a215bf6cb48ce7cff1f91766
BLAKE2b-256 1f439b36047cb1f15f7bbb2a12d62adc1de2af0779404b03d40ba1faa6477380

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c08137051aea16fa18cc46aaec79758351ddfcab233f1c05263869a513ad9b65
MD5 79f4732c7b135b6622ba4b22d92ac461
BLAKE2b-256 7300ffa1256351eba2489f3f5e28a1d202eb3f2868de26000ce4ea1f552a7672

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.25.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e42e45e72f4a54b1dbd4a036e767dc5f5ca238a7bfea024c9eb7ebcadaff1f6
MD5 3029896e9615349582c0b12ca72d3d06
BLAKE2b-256 6683a91d325ee384d27b548ac99ba79103d2cf621c4be1f072447023be96c61b

See more details on using hashes here.

Provenance

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

0.26.0

28 files

This release

0.25.0 This release

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