Skip to main content

elixcee

Run and test a practical subset of Excel VBA without Microsoft Excel. The core is Rust, with a Python API (PyO3), a standalone CLI, and an experimental @elixcee/xlsx JavaScript/WASM package.

Current release: 0.28.0.

elixcee is intended for data-processing macros. It is not a replacement for the Excel desktop application: UI features such as charts, dialogs, and screen updates are skipped, modeled, or reported according to the operation.

Install

pip install elixcee

Pre-built CLI binaries are published on the GitHub Releases page.

For a source build:

python3 -m venv .venv
source .venv/bin/activate
pip install maturin
maturin develop

CLI

elixcee <file.bas>... <MacroName> [--file input.xlsx] [--sheet Sheet1]
                         [--output result.xlsx] [--json]
elixcee check <file.bas>... [--entry MacroName] [--json]
elixcee snapshot <workbook.xlsx|ods> [--json]
elixcee test-workbook fixture.toml [--json] [--seed N] [--case N]
elixcee diagnose <file.bas>... <MacroName> --file input.xlsx [--json]
elixcee diagnose-workbook fixture.toml [--json] [--seed N] [--case N] [--cases N]

The run command accepts one or more standard VBA modules (.bas, .vbs, or .txt). Use Module.Sub for a qualified entry point in a multi-module run. --json emits one stable JSON object on stdout; see docs/agent-contract.md for the contract.

Python quick start

import elixcee

vm = elixcee.Vm()
vm.set_cell(1, 1, 10)          # coordinates are 1-based, like Excel
vm.run("""
Sub DoubleIt()
    Cells(1, 2).Value = Cells(1, 1).Value * 2
End Sub
""", "DoubleIt")
print(vm.get_cell(1, 2))       # 20

vm = elixcee.load_workbook("input.xlsx")
vm.run(vba_code, "ProcessData")
vm.save_workbook("output.xlsx")

The Python API also provides formula evaluation, ranges, sorting, merges, hidden rows/columns, sheet management, styles, tables, data validation, AutoFilter, defined-name inspection, pandas export, and .xlsx/.xlsm/.ods workbook I/O. See elixcee.pyi for signatures and behavior.

For large XLSX/XLSM files, open_stream(path, sheet=None) yields rows without materializing the whole workbook. Set include_row_numbers=True to receive (row_number, values) tuples, or max_rows=N/max_row_bytes=N/max_columns=N to bound a read. create_stream(path) provides an append-only XLSX row writer.

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elixcee-0.31.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.31.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.31.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.31.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.31.0-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

elixcee-0.31.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.31.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.31.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.31.0-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

elixcee-0.31.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.31.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.31.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.31.0-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

elixcee-0.31.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.31.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.31.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.9 MB view details)

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

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

Uploaded CPython 3.11Windows x86-64

elixcee-0.31.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.31.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.31.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.31.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

elixcee-0.31.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.31.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.31.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.31.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.31.0.tar.gz.

File metadata

  • Download URL: elixcee-0.31.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.31.0.tar.gz
Algorithm Hash digest
SHA256 8e8a1dfa7538574b33dcc9302826ade971b291db6267247ece7d39afed27a296
MD5 b40cc7b8d7823549759a62ba70b25db9
BLAKE2b-256 45ad4ffdd93b17e43e03f2a91ca2b1e5783a5038039d0e83b4d0ee37d3382aa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2461ca0dd2beb380eb2aebe3ccb0cb8f368acbc0e72534a76fb73cb87fd7d29e
MD5 7572c3f9d667776cdc1a6e8a9a5d24dd
BLAKE2b-256 1cf6a88a3a3338adba7624d1e42890fed0fac7b90db23a0459a46371df4ca8c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0071c2e1834ffae56a25b534e6b657ba07a64bec5101f7d7893156a451f9510
MD5 0e343584e751865ae0ddbcf8376e6275
BLAKE2b-256 ea0594e6a24d6372d8dfe37754e9d5141a03c58fd9f1e7792f2fbc674e91566a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3b5165e28a579dd869c32c4d99738ae1900498d38e1a56b385866871e8532e5
MD5 bf193cce564652263fbf2ef43b8e9df3
BLAKE2b-256 f4ccbb4ccbcc9ef1917883122bc81f93706fb01f1673919ad60bcfb10a0991ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42f183855c933b85e39636e19b09ebd19a79ee75ca5517dab4984f67aedc410b
MD5 7016d35bf4a862f5c384a9a89d7720a8
BLAKE2b-256 d723c9ea2f2600e9dea3601f0401c4057b405b6b1d8a13f8c94662aece8b9922

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c80c7c54631f4e01634509ea46795dedda90cf6453c003482a1f556c03dba14
MD5 1cc84de898f0403bcc18918f7ae34252
BLAKE2b-256 e679d07cba75270797d606a735d82c5371ec70792f20f581ca55eb7217877155

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 617a10f4753bf4d2417ab47c4abedc70fe40941ea27ea8b9640fe26bcf807f93
MD5 14c21abf300bab3d37dfb502a7ef4e6e
BLAKE2b-256 859bfc56ce3e5f1026fb1e08d5b1f12c7294923c9b251b567fb6b55ba942c07a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.31.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.31.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 da15f3202198f4fc3e37f8790a7f819c4d1bf3564c3786a3e052b28659086f56
MD5 bec0b65bbaaec87e015862f0bc1a1b15
BLAKE2b-256 1d5704565c9350e6d9a478b48589e71e0fffcf26ff17f86443421844d1e1831c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2688ad063b2f6013e6434b24de73c9e4dc74dff4f323fda2615d952850f6468b
MD5 bad0598b908471aa7df63b649df0fc5d
BLAKE2b-256 a4b8beb080c76a5b288c4a26c22e6942c164041066ff78215e7afa7854b5f53d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3a8892a401ad3742f7a30db571c9af02fa2e4269eb5dca47fdda0ea350b7b88
MD5 9060312e70398dba8eda22de41b51f92
BLAKE2b-256 99b51b45a0de137e17ef5cae925a0a6e922eb8e0388bd57ea00298cea891e593

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.31.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.31.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.31.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a1de82ba236a0a96457f787094a44a7f4b214f568b7e595c14dcdc2f06af4a9b
MD5 975f439a7013fc4aa423ea3ff577753d
BLAKE2b-256 420b12f42ecd2df926d54f3007282d09b2dcac7bc77362093518cd663e5b5b92

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.31.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.31.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0c522d526e54dbb54bd940525b1490a2fa7a156606ab0bb590dbb8f5080b2f98
MD5 f27a7218fc3a362acee49cc8e4cfcbba
BLAKE2b-256 63d03f4a167ab69e6766fcd0dd1516a987d4fde401b3073c3caef93ac64f22cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba12d9e1f18e9fd911153e77588c5fa09757cffc870ab1d11b574efe044ae022
MD5 5125fca99e07c7cb205225ae8f300fbf
BLAKE2b-256 dfcbab8a6f120e2f902bf7c353463cc25edf4b21ef4b5ded24293b7d171ed887

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9db78e4af332d3d702986d9ba1d89ae82a07fa05ba14006a3fc1d911d8e7c88
MD5 502ff9b6d17b5e4952f5483b396374ac
BLAKE2b-256 080bac43ddf24ebd1a31aa139491886754ac9a7cf8aaf3b9a3fd0f19e567c8e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.31.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.31.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.31.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 aa46c2afc557a83f67bc21575cb17dc98f00f30dad49519147a3709540ebd62d
MD5 dbc1a1d15901fc64c105cfb8f843c74e
BLAKE2b-256 084faa21ce0fcdf76b33d6cb392063b0901a97d4f4ac258b8694c77500bbfdbb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.31.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.31.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1923035ff6ffe228f8fb704fbf59417bcc89bb68edb989ce12b1960787ce470d
MD5 b543157c048daea93ff245ef6447ae1c
BLAKE2b-256 db270a221fceb9df4570e37a5caf50a0515bf681e1afa99599ee40e5d6d9e458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b013dffa8ae27d5a7e8caf586b29a7b64587bd18d3bb531b8a167038d8447a6
MD5 b115aa2b94a06ce8e96a6dd927d93b87
BLAKE2b-256 8db9504fb4cf4830e950ac99580ec7e72cb4155415fa391797d5b20ba23d9cc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2046f28a4a0588d350152bc7c5d0db5e408c1b99d4cb80a6d5230c92ca05f114
MD5 b0ad1d66b200a8b2d584ef0848aef940
BLAKE2b-256 207ce909b6141971716b771e2b5a46719959762f9abcc44728f7690ea2dea527

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.31.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.31.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.31.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9f3efb769ee575cddd108453bb081a3c47beb463b7fbaa8aabf26c82f541a5c2
MD5 70cdd919bb6aacfa6d3619936cb4ca7e
BLAKE2b-256 ae5855dc1074e506a74e5e563e11f52d57ad52a5a35f824d2e61a9daa82a6733

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.31.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.31.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 15ba4fa41bace7cf5da3e1d47fd8b2ca52e1df85402868e91eff01a047018174
MD5 98da4b2c998eb24e43b4a75f7ca984ec
BLAKE2b-256 e67464e2e92d6a7f015d2226dcd156c5ac66614eac04dc4eced9d08ba6a1dc70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bebe66ed8e6130d4e3bd6bcae4de986ad32ba0af9e2134de3d3585e740ec5be
MD5 1ab41836467ee98cba4fa302019dd390
BLAKE2b-256 964fab0280a615754ea5a3817382cdd938857032f61fc8f064baeddd3b0cfb2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49d66f0aa8994fee85ce21f1d87f612ddfea08633908a53e7d41a80bda3a6fbe
MD5 63f8cdecf94c324c579eaed20bd70165
BLAKE2b-256 ab70cc72ca7cfa234dcffdf89461f67a911fb9ea624304765c4129c58f290e8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.31.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.31.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.31.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c6c2a14ddddcea944f115c072464251d4f083ff46e3465cd3cd0dce7ed285d54
MD5 5fb004e2b6bb015f0c8ed48f17d77c99
BLAKE2b-256 54bddb3e0cef6a99f2fcee920624392f8c6e89989583ccf1b8f876f9b7910a8b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.31.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.31.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 539c5409198bc598662f4b9092039e24184e84034ff3a36178daadb35682d640
MD5 a60e31891f48b511259df95b9d6da0b8
BLAKE2b-256 8e7c001a42c369aa7bf9ced2e58b50d5685af1a0dad627f5d7abe5ace736ce74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddb179a3c838ce7326baf2082aaa468084f0b2cef19ccf738aa62490dc001aea
MD5 9170694d9a41e8016aa496daa0ed9e06
BLAKE2b-256 53939ddd217bf7d7e321883f3b1c6613488849fbbdf57e0ba84b6428464b58b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0967682b961aec9da70770290bf10107684ac12c04059cbd89b4948c9069f962
MD5 f8c6695ee407d7d82be1f4aec6ecb816
BLAKE2b-256 cb07c247ccbad7033df33259aba633be0a8df564f278aa12b2b776aa41770090

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2b82ff23453b77b0d0a9517ba5429b63aa0b7083fad801d69e1e2f4985ff06c
MD5 26cc20f1e5ff43878818a451d0701e54
BLAKE2b-256 472c3f009d9dc06cf311de5d29ed77611fd35101b53cfc95274fb4c40a280a77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.31.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f32b3619d47644fb0b6932b2b89683cf920fee88c722d32aaeef9c43adcf83b
MD5 efbf5581153f22cc14232cdf74e0ea78
BLAKE2b-256 d96623438f34a46915f15fc93ae08ff1b1b5ae07a21eac4a2b89800efe1ff25f

See more details on using hashes here.

Provenance

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

This release

0.31.0 This release

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