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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elixcee-0.27.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.27.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.27.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.27.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.27.0-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

elixcee-0.27.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.27.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.27.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.27.0-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

elixcee-0.27.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.27.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.27.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.27.0-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

elixcee-0.27.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.27.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.27.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.27.0-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

elixcee-0.27.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.27.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.27.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.27.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

elixcee-0.27.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.27.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.27.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.27.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.27.0.tar.gz.

File metadata

  • Download URL: elixcee-0.27.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.27.0.tar.gz
Algorithm Hash digest
SHA256 6ae2e8ecdeea7c3b6b10a0d2cb7405d4fe32be55a1b17426e8ae784d8111bcd7
MD5 e3bda036b6870d515bf11da6af64a57b
BLAKE2b-256 add2924140b55df120c491508c28d04da077ca17aae2a4190b7c58b903e89750

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 452c9f6da9647e9d75e8e21085f3a58bf978df27c10f184f0773540a41782dc7
MD5 b0401d6c3d2c776b42ba8a71c562369d
BLAKE2b-256 7972077ee1f70ca49ec200103ea3b68f675f049b1e3c6ff3de189b32ee246541

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3ccec6aeee1e6aa2f50f75c5530e71b83242e5eabf6c2b3e594a472a4a3d9c3
MD5 eea8543000ad082d51f8229a5472e33c
BLAKE2b-256 f94697d128778a2b5fe5cf584c29f5c53774b3230f9ce3ce0bb504376c37b181

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b9f2d55499fdc0bce2c2772b6ce0e15e74b1362478214eb957b448b7c17cf24
MD5 229c4df24e0a4fd4a777ba723567ae7c
BLAKE2b-256 92bd7273b02ff0ab21421a574ea7b6ed70aca1e12dad1d085eacbe7c670e9894

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c05e11b3d5fa9a837b3c92904dc509bd571f5785dfe9dfe5f2e686017ec3b15
MD5 e34a6ddd36a83de20800f04ebbc71056
BLAKE2b-256 816f3d90e903957b1a12cdaa1ed0c7bd5b307369608b90c4bff1f238771b8952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a61e5d0b191f1f02edb28f74536fb39a007269d653cb3e8a58fec1c15a01ee6
MD5 10f70f2fb3ae5e284d5d6742859f603b
BLAKE2b-256 3b7a820c79264a2575867e9adde434ff4d2603117ca8f0840f91bb0decd120f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 361412e33ae1457005980a1540c58cd204ac0d869ca8c2d4114763cf6700b28b
MD5 ae9af74d234efa9cc9edc640f0916e0b
BLAKE2b-256 9f08b37c76eee5794649045b663e495ecb0d689c6b93a233280dca9686d2838e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.27.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.27.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 15e8efc22a54874114e4d18fcb138de68ab14fd25e30052f3ae3fab40debfd60
MD5 d925a5be8ff37868fe4502bbf380d35d
BLAKE2b-256 ac9c58c7d862f7384b8e67632457dca2ec6c3fe189738a1220060f595d1adb2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45eb626c6db14d02184031546499f6cab74ef440c28a07820c809e0e1378a6e5
MD5 a0ff10d21d2627284bcdc935288aa11a
BLAKE2b-256 cb727cca1f3b787e00de8075384f770c40ce0e17281107f906d148a8cc1c06d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5946966003777ec04eade123a30f1b6dc5e55883ca2905e4c14a845d0a273b53
MD5 3c36d4aa7ea514e073bfbd62a45fd25d
BLAKE2b-256 4a56f36c6db152066ee8d805cf0c5d4b366675df2ffbdf888028c1d32ca7bb2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.27.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.27.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.27.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 4671f2a17002de0ec9f3096fb1e76283b5fe638182f691dc5480a2763e509db2
MD5 e776badbb5306e4a83744d85d6992323
BLAKE2b-256 d6d2278c39a54f03d9d95d2c061e020d590b7da2b7337f3cc3c702f7cdc09a42

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.27.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.27.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 08c1bca00761f1ca449c5ec8e35cedcdee1539d837017e5417209df241aab241
MD5 4ec1f65b3256584b27dfa4a15af1c6c9
BLAKE2b-256 e4d83b591ab1c9792ea602969bc867821bf690ec60f594b18dd04d91f75c770b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 048236a5f0e82005f0e28281ec1bfa1875eaca59c979790d5d94974d116616c7
MD5 ea5191ae3ca960e42647a8bf5c279e3a
BLAKE2b-256 1d0f0b1595168faec6aa896b8c175d8999db2c24c1d3ce8b00a9ad25ebbf2d48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d18263b191066efe084ef9bb92e5af934efb6e9c64165b2b095426c47c930406
MD5 bf7125d7fadf93b9a9ea26a107967cf4
BLAKE2b-256 434b75892692a7867f325ecba7a50249d869d74c57314cbb04218d094cdaa60d

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.27.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.27.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.27.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 2b46e0420278be72e1f06f4d53c0cf49b344c5c207db6e9c91add9b0f370e440
MD5 72cc8943123c8e7af93db379f91cc184
BLAKE2b-256 7f8710116c680252e5bce88f600d0721a28901479903327dc7d5b14f85eee178

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.27.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.27.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 180c459b071d538c94b8c43a2918b3b4d423512bc4e0c1bbbae612872ce0268e
MD5 b42298a06d92136263e729eb47296b05
BLAKE2b-256 e34f047fb6a4f10de23e24ae249a5d4e6614c79ee596b5f29fb659438c995593

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de2c2c5e44cd94d81c9c1cc9fb1aa190978e4a82b2d1dbed744c7cce8c241ca9
MD5 1564356c36ed52ee88d4c7f00109d808
BLAKE2b-256 52f9e1476bdf20ed41a5eef38df05296c4e3d1fc77cec785aa34e5ca69765db6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 192cb984b6ed769bdaa728042a54083b71723af8a841ca8a36fb066415cfb17c
MD5 a23a17a5d362c4dc7a8848cb7e6e0d10
BLAKE2b-256 16fb4e4afd2e86777a860670709bf63175c450849a9602c20171103c7384e5ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.27.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.27.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.27.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 cb6465a59bfe0035938c26b9953bcf71cf281659c2aaa09de94e6f2a51d94a54
MD5 10b75a015a1e3f832128501496c575c5
BLAKE2b-256 10e4475cda248b665ed38ec6c55359c367db0fbec6ebed9ec2358ec4bc2243ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.27.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.27.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a821bd7c6efb1eeb5e79539c7870dd2bd4cf7e3d6e881e5c65141548375f57b
MD5 9f2319458d3235595d2b12d540882818
BLAKE2b-256 23d27345bd3f6841f7f97b635dd7074a2b2ba706eb1920a53ececfdfaf1e4511

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a20d6a0738f9c57a8ba5c8f6cd3efd35ac1fd4dcdc36232b601f71f14d3a7e1
MD5 21c0d80336f25e345678c1f61a8d58f3
BLAKE2b-256 8de860dbd6b19a1735dd3dc169de466eef226b6173fa43e8be7a5ab92d239faf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de08ae3e6f6c233bcaad9c5df06ed20c0666addb5444f7bf6a2142b0392d66ec
MD5 04b66c1122885367220cea20f418606a
BLAKE2b-256 c4160747d3729ff064cd394e5cd3192b3a9fb1f13bf0b1f37742f6890579ff84

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.27.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.27.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.27.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 215aa4dbf9d2a5aa39db178817245d5f8ec6ea1ed98c08ade666aed70b12bc62
MD5 06c2f85ccdeb5f7056a083ed8853d737
BLAKE2b-256 4877a730b577b9a1ed2f07b33c9d4e7dd760e7dc99d8c60805d6473787111888

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.27.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.27.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2e57af986f5a82d6886e13bf7e0fa148a8faf4930541f4837a1361cde85b1d63
MD5 e34b7cca188271e69c52b6f03a99294c
BLAKE2b-256 1662a52ca03346d533d6b494afa0315c92136bf5350bfa64ac174fec63f5e9d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 761b17421a428826ab024262868b08373f58aea24a187477f47ef2acc13ef147
MD5 55cd8e76b9c08e54498fcc09c7ac1a67
BLAKE2b-256 d7e19d0a528fe908c665a5bd767e6b8da27dc89d97a45bae746b2028334deef4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ec7eeb79012a66eefd3615c3a9d1829fea152e0c71bba9b950336b4696876fc
MD5 203c4aba4172b2ec83fbe7bc8cb32a3c
BLAKE2b-256 b91079cc99819e042edb84e32a9ac9091d754d2eed4a4bdbc972305aa5c96ecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 767fa2fd4893917fa14b58433aead806b191480e9bdae8f6cb2f4e200a80fae2
MD5 518728b6c4ea430fa1fd48e51479775b
BLAKE2b-256 7f81076ec4d4ed9f22c3c0ab5288e1044133d9ec4ac83221eb6b13d2c462d1fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.27.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4fe2507504d6ee8de20686770f0778229783e796958ceace276dca40db6e710
MD5 3c5a15926b6e3c3c2ac212088036410f
BLAKE2b-256 a463fe960fa9fc581be4f60de87eb459a10a2582664e60226c51b809a6d7e4cb

See more details on using hashes here.

Provenance

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

This release

0.27.0 This release

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