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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elixcee-0.28.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.28.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.28.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.28.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.28.0-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

elixcee-0.28.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.28.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.28.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.28.0-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

elixcee-0.28.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.28.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.28.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.28.0-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

elixcee-0.28.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.28.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.28.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.28.0-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

elixcee-0.28.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.28.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.28.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.28.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

elixcee-0.28.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.28.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.28.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.28.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.28.0.tar.gz.

File metadata

  • Download URL: elixcee-0.28.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.28.0.tar.gz
Algorithm Hash digest
SHA256 a3840f1bf7f08f8f86950e7139c55449361500501292889d55c52400091beab4
MD5 f8e2462e3c3d95463e3f8de177daf9e1
BLAKE2b-256 68dc7fb39f41ab983f7b1ce3a0cbc03b043ff9701060abaf516dd009dc616b6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2bfb59a7711d042c2bdb9bb0cfc9b35fc0aa2aad4f26c90bcc4c50f7473533a
MD5 7b5c294017dd182183fe4789764141ee
BLAKE2b-256 497ab0c3c4ecae35051870105e45be5b4920b409d0c482e5307ab5a270345535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c0dd991c81d4efc1a51ec6e40a569fd7e2362ff9a7434e7b7f8a78fb4a766ba
MD5 bf01e3af94385c7614d8427ddc1906d6
BLAKE2b-256 5cf482dfbc2f2e66366fd27e8395c13a0c5c6c94829248de0a76acdb8ca046c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2d7c1e9ccc4f6b2bfed1cae67d8e606c5a8e868ca2c18f1a75a52cca3146506
MD5 b9fbdf092fc78fd0cdd26d5f762b0fa0
BLAKE2b-256 82fd96999ce5ad613ef6eb8783b6562ec1731d98bcb8ce04b22e444968275d73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0868e1dd1cdf18edff68821e523b4215db4ef512b2e9429116f197ba2c149ccc
MD5 b83fea10f7860f5d491440268f4e0928
BLAKE2b-256 ad89b479ff1c78940c56736ebc6e8b8f262a30166dfa6d58b79abb58d7a06cd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3799167e8a33b6fc9466f08e197a3b1abde7086cf80a2b10b8859ec5413d48f9
MD5 308cbaef9518957ff1855f6d272b5d57
BLAKE2b-256 c71d696ff684ca598fb37da16bd19039e9dded7976efbdbc83034efd28af8f14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1817080dbb7df95603537c83989cc9464982942599b351722afee4516adb4bbf
MD5 42c961794f3b727be232153b50849517
BLAKE2b-256 cdcafa3a8676e9b39d59be2824c6d484bf9a1fc80ea22131231a0b63b6c5dcc3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.28.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.28.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 12f341bba814a34974ed307fc3897af23f1ccc63a23a09743e35c365c9eb80c7
MD5 b0089b5f30f22767855bb1a900a4d6c0
BLAKE2b-256 0415603a9b3b6699b01e3e45c1b6025ef8b6fde25eab646b563a5ca4be99d69c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d5c0ac0b92f023af947fb044b176506305cc19c10a92f80f81eebfb4d18d6d8
MD5 f2d62b6180357831ba2c18f351af0aac
BLAKE2b-256 11ce0d02e7b24320c65638082c9d265ddba81cdd82bf0086df01731b6a7b0375

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e208e308223bfa2127ac28af685c2f87d67bbad5466b7fbca23469ce6aef1638
MD5 35127a938e2aa5f606f686cf66893d7b
BLAKE2b-256 89eb9f7fd7287ce75b248181cf4437a1c892ead6422b8d2e0c85f04ac6cca9ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.28.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.28.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.28.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 318ad4ceb257c1a6e925f1c443211b84189c3554928061ea07470719e47a9f37
MD5 f2a8cef5434d44ea3ea32eb6942bcbaa
BLAKE2b-256 4e4dba9bc52ea8050b3153295e96e7d9a7825bc597ee75e187ce672bbaa20975

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.28.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.28.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a2872543bc5cb57014842135945860f15430fcb800e78d41631cb9ed2c277b91
MD5 a093e3ab18ee83b0933ccce97e91f708
BLAKE2b-256 e755b24ed1c9ba16607a7c6139f64be7a494f6e6643daebf0fc9b1bac5193138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02fe403a8b57d4c23e939049071b0a415afefdf336ef98c2fedde7748c3a7690
MD5 36edd07d26f98675810af88360457cd0
BLAKE2b-256 69ff80ff6b8ef3d7c404cad80c5335f1d5dac6ed7bc9dbb2de0cddde3fcbe70a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34a096b163881d29ecf55f8710dc2926a4bc5436d0690820b9f9708956dca236
MD5 91e3ab42d468c8c88a77aca24ff6db38
BLAKE2b-256 ca1be5ce5e6c0ad423e8ebc7dd090c01d801f9abf94709cd38795546d9560378

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.28.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.28.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.28.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 28d3aff4acf421037220a63e963bebff7cfa1ac22a3fb8ffad0d01e022435d6d
MD5 16607ac2b1811d3eda20cd1eed5e1c4c
BLAKE2b-256 ddaa406d81eefc6a0c19cf9faab13d49d1f25b76420f63c1d75ba60194225707

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.28.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.28.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bb7ec17bd87106e922b803b6022297c3cdd229696c9837a864539521de61b615
MD5 e55853215804cc539cbe24cba17a56c9
BLAKE2b-256 8309efaf080f8b6df66db01fb72057b173c722c4f49b65a8451dabda4dc6975a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd053c381bfb27e613144bb7bbda897904cb3e3ff93fa8336784c036e8924f65
MD5 4112d877128f2b12428e97f3da6b40f9
BLAKE2b-256 b0852a9244d16035730f23ae78c24c5f7592dfd5ec9cecddcfeb79a05e6537cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e790ab38a535d6cd8fb97324c1c0b607ffb1e044d382ea234e9cf4ed4cefa3e
MD5 4bb264ae1ed40237918810c1a106fcef
BLAKE2b-256 c7ccac17ce8acf4da24c8aeae9cee38305fc1306304123d61a9bfa67a7ae788c

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.28.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.28.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.28.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7e0b165171070230603aedaee6075c1bc4d4097b96b8f2ac8df51d4f95113964
MD5 5531baae82052dee68bd6338bbefbacd
BLAKE2b-256 aceac4b1f0be10af8d46882bce1cdf788c8c7c124f509faaf3c2a60595fe1873

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.28.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.28.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 42c9a86ed633c73b509c937a247b98ff5a5b750fda79d81179b93719c03c548a
MD5 abbf0cc5b812fc00a1c0c8c8f071f71c
BLAKE2b-256 f7c954b0fdd107d71ffd46d56543b4eb6f28664c3e8629962f5b590bf54579f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de89cc44aa2222be1c76121a29d1fa40158408fc832b57dcab835357b0174bc1
MD5 610bac25c578a5fc221ac493ad359878
BLAKE2b-256 21edf43461b154aa00aa920b0fa178ffd9e5b92776d1664d46644ea580508c41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a26db31f00dae15e7c634c9b3479ee462d6b7074014baf42345e9e7c8df2cc4
MD5 3a7a2b3cad37fe9d636b3cbab072329e
BLAKE2b-256 e3ad24b47d4617d199c0ab8f200cdd29752b59be4c871ac3abdb72a966e2ad5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.28.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.28.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.28.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d761383b5d3f555cd057f91c6489d4b32dcca89da7969cd3f5da60eb6360c854
MD5 2e0c22ce9047145eb1727adcc5c15190
BLAKE2b-256 2b739eb8e146b079ea420f9bf57ec90bd5ba329618edf09bae985337dc4999c5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: elixcee-0.28.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.28.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f315894ddafee3d3b65210ec985f64aecc147e283ae7ec98cabdd4d8aac99843
MD5 b5275334d729c1ad745b2e9dea547d1d
BLAKE2b-256 510ee2f80e236fab47994be7d3d957830b3d2ef16b115bfada8399d0ceb101e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfc05ce27edb4a195f37ecde91d013afe2ec9d3bd648834488d6f9d5486f8ca3
MD5 1ce57c0057d1d08e47819845ac940422
BLAKE2b-256 5810bd9b18bfc6a53d93c4ad339fc90bee95bfcd7e1168a115fefbeba6f894aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69034e1a0174f33031a02630cdb28686e2757e181647ea0e47358ff2cb863683
MD5 92e30c604b4fd126a582a351fb992797
BLAKE2b-256 4ad2a03fee95d2a537da4bc6f95396de6e4a081d0835e6025b2c156463834662

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d570f25ff2383ced75d0be6568f9d934bfa6f28f9947d8659a455ed9c5c41021
MD5 d3ee6a24fe8d82ce1dcd89268ffd0870
BLAKE2b-256 db40ee8eb6efd2b9ad78fc772bd8c7d7014c246b618b0ece10c38151c942733b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for elixcee-0.28.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 323222cb9e9c29562c131279a976c6e421e5c7f3a530d9e5ab0a5a2e7fee2791
MD5 b6232c62252c28eb997bee3411403f6d
BLAKE2b-256 1a1a3cebb8728dd0df38ee157cbedb5d9c3a286cfdd817422767c2ff50a968c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for elixcee-0.28.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on kent-tokyo/elixcee

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.0.4

28 files

1.0.3

28 files

1.0.2

28 files

1.0.1

28 files

1.0.0

28 files

0.93.0

28 files

0.34.0

28 files

0.33.0

28 files

0.32.0

28 files

0.31.0

28 files

0.30.0

28 files

0.29.0

28 files

This release

0.28.0 This release

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