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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elixcee-0.30.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.30.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.30.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.30.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.30.0-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

elixcee-0.30.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.30.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.30.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.30.0-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

elixcee-0.30.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.30.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.30.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.30.0-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

elixcee-0.30.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.30.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.30.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.30.0-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

elixcee-0.30.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.30.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.30.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.30.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

elixcee-0.30.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.30.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.30.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.30.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.30.0.tar.gz.

File metadata

  • Download URL: elixcee-0.30.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.30.0.tar.gz
Algorithm Hash digest
SHA256 dd4cca67ee78798d608efd147692d5518080cb58bdb48f0e75d2f7f7c7291d5a
MD5 2a020f51b0db99a69f0669b220163a7d
BLAKE2b-256 72b6203b8bafa2bfb2ce59add8ee2a9bfefaff0e9271f16df528bdf7a325bdad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d44033d6ea0a46ceb3a587d956f4e1b89d2b17a96e8357b42032257db86b062f
MD5 bf2fe0f46d9a1975d436b88a814d053c
BLAKE2b-256 c10f9d1507144f1a79d792ca812686becb51bf002922beda4d8ff6b144f29921

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f0565795174f5fde62689d1189932af13ef5d838d42f2925fe09380b366e9b7
MD5 7a8c5c76bf960d6ca0919616b291ebcc
BLAKE2b-256 dcc2ddc3470ef6906583fabc2ade886eba00dc248d90600d0d25c7f90828fc1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39f553c2b8fa563ee24e6d613684409156e6a3329aeb587453a5e526e10dc4e0
MD5 bc757081e82b69a2d9afe06c292a7602
BLAKE2b-256 7fe7c16a4bac40dd29d9210fb6b37c85579e3be4eaa688c8f93a4a9c07f65db0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8f313f2d054ac7b047a4e02a6f6a6132f882e83ad89860dbcc1408b5f066a0a
MD5 e36fe110930bc6b85ef75537b551350a
BLAKE2b-256 fc58151da89ae952dfd848b17f856e5bfdc0d2ed58cee2caefd3b05b23277114

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc546334cb36aeb014ad21d8da50f3aa72985d3d36200bc3aed0e32f67f0ec81
MD5 8036c0dcbff4bfe61ecaa149823bdf94
BLAKE2b-256 bcff5e62f02776ee2bde01e910e35200eee61570181e30f12d0f33c6eac383c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81a917088a1ab7e4208eb2f1b9029c3854727d95a22f2d0eb41cc354ddf59bc5
MD5 e52f70cfc3c3a574f204124e315ba303
BLAKE2b-256 d5dcb2c56aa85a8639bec0233a134327ddec61c6bb5dc1ea6fc7e903a243f209

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.30.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.30.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cbe6665e87d8f9fbfbc7bc0084ac0db2c9dcf0bf91e0b4fce1cbcec1b69d4542
MD5 af00323090099bcad363a9023963bc42
BLAKE2b-256 4ae20669e2efcccb7a084962794791fee75633cb2b103f9d34fe9ff680dda50e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc62785df946503f75fc9c2602ef90862b9b0a9fe9a5a14886e03763738c0016
MD5 7b28a8727816db1d9a88e93c2f89bdb6
BLAKE2b-256 e218ff325cdd3c073e7ed999ad3f24e9ea03b9662d2032482f0d64831a9cf5c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 589b043127a4abedde2030a9c4a3399b2753575bc93070b49981993167ae0e13
MD5 8d9e06a97b186a63da18f1d7b5a11033
BLAKE2b-256 63aa0909a338965e66217087f925a912fdde74287e3f697066fd5783d1556ccf

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.30.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.30.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.30.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 4b7bf929cb3fd4b06fb2067fa5376e6f256524092bb3870a03cee4c6db14bafa
MD5 1746eb8f53c52b4323f3e250ae412cc6
BLAKE2b-256 ee90f23850daa6e3a27b6366e4f62439fdec9ca8649affe36e37a045256693bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.30.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.30.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 238e69ce15e0c559a4c4d51fd9192fa484e6ff8a315e47ed749c462b72c1e94c
MD5 0eddb56282103a57df5513162e6169d1
BLAKE2b-256 4bafff7931441995b201d9b8baa741fb0e6c19621529f1c6437a65528ede2ef0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29eb005dff3c12e53a411b8d8501148d6024fffc4218701d3112d746433ffcc9
MD5 6cf4d687ddaeb9f2aed68beee2974770
BLAKE2b-256 f5d3bd2274bba43ae7e741158760d99c710705491db201e9d3f6d61674485e0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce8170b2daee7f85f5197e274d2851aa95241137a5e57f4a907eb428db22751d
MD5 4e50d14d0f6cd78b05bccb43cc4cb58a
BLAKE2b-256 29cdc8c07bfd1b09d3f96d4d3bb93060636e8e4ab660a23d2e11e56a56c4b583

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.30.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.30.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.30.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 fe6e0537179482f0183a1bdf452f3af49cbbd0b431836a9e116d326d7c288f1e
MD5 6166105e61e7688de67ed182d0dd3577
BLAKE2b-256 510cc4b9cb79c0c6a4c604c985df9c1af8313e777191e7dce2bd600aa485dd23

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.30.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.30.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 86f2e3960c734d4e67c90a4bf92ddfcb2ca8b6824230986fed9fc2491da4f219
MD5 caff88da3c3bf269cb32fb57d407310f
BLAKE2b-256 6aefcd4c158d5168665527bb2911e810bce88e3d2d8aa71988a56df2d2d68e20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55bd807fc0d2b2a08c5726c2f55d5a79f96d1d6e124a23290994c049b1bd386e
MD5 3d2619001f0178467e20818224ee303a
BLAKE2b-256 43c72095ca554180221c5cde4584d6591c9b0e6aa3c38de50f61dbad64dd51fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab3344641eecbeff0869b1c0a35d00393e88d8e9123fb2f36f2f5caca09ee5d3
MD5 510803152066194fa93dcdb72c52462d
BLAKE2b-256 3c51ac5d11ff5264aeeab080b0b19664ef30727e96a2b34317af32140bdd1d06

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.30.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.30.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.30.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 3fe67596928074f471ba797e861edd65d9d2f6cc02d535bbda2ab15a01459e13
MD5 3ef90f354de479673b36606d53557125
BLAKE2b-256 e5f37545adab7f014a359d5365cae7c14a940d87d1fa173335a27e114ed776b0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.30.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.30.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 83b701fccad6b6685aa1d1f3fbb19dcbd7678a50d766510a74071154be5a8ecb
MD5 d0dfe9d13ca7c6deda20a4a6aff58b78
BLAKE2b-256 54378b6c3f3a7a4542dba41ef4930732acba7f2f0a1678a84dd50d19dfe1f287

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea37faa3616fa6fc9a58ac093cdf2e3ad357785ffea1e705fa721a36f20d129f
MD5 64cc6f1f93a86f493df709030073517a
BLAKE2b-256 7dd419dc40b96415da6114981d031337cdcd363aa53f5300f307048b75e0895d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9447e856e35af91eaacc9f67fdee1d7765d2a700743fb7db586e46e0a9e6006
MD5 12ca14cfa3cc86225329c12b8b8fab97
BLAKE2b-256 b1c0ce383b2f224502cedba16b1915cbabcb735696037700d2340bafd86b1a24

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.30.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.30.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.30.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 757a7729e2b51f9cab957a4267c82cf86581c1a038d4a89aa3432aebc2e96969
MD5 0e6ebb1a07152fc47157837285cd6666
BLAKE2b-256 2a0eba6a41c3c1cf621a65bedc55429f991f2895d01279e1406ad3b53a8739af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.30.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.30.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 23dffbbfe5115c1748df87353cdd3f43a12e8b8fb91e0bf43bf1158646099c22
MD5 e9167d8d07ebd8b28e3b348f29ca1117
BLAKE2b-256 1be8395d2b1839e1a5a614bed3808ceb59c01691785a265127fcc1b6029c26a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0dcef470b00362bf3c47409ca0b74d63fc7f59e6fdc442bebdfbecb6b5283e81
MD5 d40944ae6b50e0259887211d28f31c6f
BLAKE2b-256 9f0d01ef64b548d4c7eed4f60f968473035765800af2a5cb0904f940511a3fc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88b0ead397dfa23a031c860c18978c1632a853a19f6859f214fef88d95a416da
MD5 b889aa888d5bbf89f6fdaa9b7ca8d5e1
BLAKE2b-256 6ec22cb192b6630e65185a5d89d1cce8b0a251fcf82b8d999c3cf34342fc40a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1118edb5280d147281d9901e8f6fc5a9f619852287a57c8283dd49d7e0d906de
MD5 cb61606da8513b13122c9f42465ba3e0
BLAKE2b-256 e39f5b4d544a02e053ecacbb8120f3f778e786e6fc7dc26e91ee4e7c793f1beb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.30.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 690b5bf1ecb94f947b6cc7a265ad83ac5a00fc0e7dee516ac5bbefc01a97dd5a
MD5 6826dc17fa166d69c6580ec2d8de9c58
BLAKE2b-256 2184b1c727aea470a7d2ec904ee2526d05cb1bf4b26373c4bcc587fdd5269c74

See more details on using hashes here.

Provenance

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

This release

0.30.0 This release

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