Waxell — build and run governed AI agents. Execution engine, authoring SDK, and the wax CLI.
Project description
waxell
Docs · Quickstart · CLI Reference · Observability · Coming from LangChain/CrewAI?
Build and run governed AI agents. One install gets you the durable execution
engine (spawn/suspend, budget enforcement, governance hooks, lineage), the
authoring decorators, the wax CLI, and observability:
pip install waxell
Using another agent framework and just want observability + governance on top? That's the standalone observe SDK:
pip install waxell-observe # LangChain, OpenAI Agents, CrewAI, … — no runtime needed
What you get
| Piece | What it is | How you touch it | Docs |
|---|---|---|---|
waxell |
The library — author + run agents | from waxell import agent, workflow, tool |
Runtime quickstart |
wax |
The CLI — push, observe, govern from the terminal | wax push, wax runs, wax traces, … |
CLI reference |
waxell.observe |
Observability SDK (the waxell-observe package) |
mostly automatic | Observe overview |
Quick start
from waxell import agent, workflow
@agent(name="lead_research", description="Research a lead and draft outreach")
class LeadResearch:
@workflow("draft_email")
async def draft(self, ctx, domain: str):
company = await ctx.tool("fetch_company", domain=domain)
email = await ctx.llm.generate(
prompt=f"Write a 3-sentence intro for {company['name']}",
task="outreach_email",
)
return {"email": email, "company": company["name"]}
Then push and observe it with the CLI (full command reference):
wax login # authenticate (or: wax config init)
wax push ./my-agents # push agents, tools, workflows, and skills
wax runs # browse execution runs
wax traces # explore distributed traces
Full walkthrough: runtime quickstart · agent/workflow/tool spec reference: SDK docs
What's in the box
-
Execution engine —
ExecutionContext,WorkflowEnvelope, durableStep, checkpoint/resume,ctx.spawn/ctx.spawn_many, tree-budget enforcement. -
Governance — pluggable
GovernanceHook, in-runtime policy bridge, AXID mint/verify, lineage. -
Framework adapters — run governed LangGraph, CrewAI, Pydantic AI, AutoGen, and Claude Agent SDK agents (migration guides). Each adapter's framework dependency is optional:
pip install "waxell[langgraph]" pip install "waxell[all]" # every adapter
-
Authoring —
agent,workflow,router,tool,policydecorators, spec types, memory helpers, and typedContextobjects for IDE autocomplete. -
Observability — every run traced; cost, tokens, and policy decisions in the Waxell dashboard via
waxell.observe.
Import aliases: from waxell import agent is the documented path;
from waxell_runtime import agent works too and is kept forever. The internal
waxell_sdk package bundled in this wheel is an implementation detail — never
import it directly.
Development (monorepo)
# Editable install keeps protected modules as readable .py (no Cython)
pip install -e runtime/waxell-runtime
# The internal waxell_sdk is synced into src/ at build/install time from
# ../../sdk/waxell-sdk — that synced copy is gitignored. Source of truth is
# agentforge/sdk/waxell-sdk/.
cd runtime/waxell-runtime && hatch run types:check
pytest runtime/waxell-runtime/tests/ -v
License
waxell is distributed under the terms of the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file waxell-0.1.1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: waxell-0.1.1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fb25c970f4e087495d2f898eb4759914400b3fb8557707fff27e1972ba61160
|
|
| MD5 |
ee3c3b6298d84581109969f80eefafe1
|
|
| BLAKE2b-256 |
9945aac247fe05c43fdef8ede7b28f2f32b9bf50031162e5ce198fe69e708dbb
|
File details
Details for the file waxell-0.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: waxell-0.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f0ae16eb0f05922ffa471be6b8fa29c4baae5768e504f7a27c9dd5772f8bd51
|
|
| MD5 |
8bcf78642920606f6aecfe6a3b980b30
|
|
| BLAKE2b-256 |
fcf2ab8221e5be6de7ebc3655a78b3fc5eda3aef8ac6406aa459ed212f186255
|
File details
Details for the file waxell-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: waxell-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fd37484b4dadaed5b792257602b17362c6242ca6ef191035c6cda139c5b127f
|
|
| MD5 |
9c74c5c23042976c8c8350e1df99e0e4
|
|
| BLAKE2b-256 |
9fcc5e11045bdcd9e494d4be1ebe6f328798ec19cd3b421ee3a8cecf72b712fe
|
File details
Details for the file waxell-0.1.1-cp314-cp314-macosx_11_0_x86_64.whl.
File metadata
- Download URL: waxell-0.1.1-cp314-cp314-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c3dcc7b06da1900195d1566b65742213999a9bab2b9efc6bed589ecc6a10349
|
|
| MD5 |
249405f1944103e7d2fd0bae626c6d32
|
|
| BLAKE2b-256 |
9d8c370135b8aa084be5a2dde383c8af22991121ae17904a2f1c848fe86fa6a5
|
File details
Details for the file waxell-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: waxell-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
debc06e6713fa356c6d2191d4361ae8ba5c77e315a585e8f54bd30154b7f34cf
|
|
| MD5 |
75dd0809a23533215b79ab8708afe5a3
|
|
| BLAKE2b-256 |
813e33b0f84f5d1241aff2103821e119ec32cb2a2655e6eec2a1a67e0bbf537f
|
File details
Details for the file waxell-0.1.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: waxell-0.1.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac4161b342f3b4dcabef242df70a589b9275b9bb10b4d0332a868ef7419c1bef
|
|
| MD5 |
31415f40a9e324519bb1fae9b8827ed8
|
|
| BLAKE2b-256 |
9fda37ef876ef1613eed26d7c26287ce49fd8cf33797d8f8dc952f10f6a9c6b1
|
File details
Details for the file waxell-0.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: waxell-0.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
394876bce506aba49933a8ba06380083ecae6f6901ef144bbf083e5bf0b4afd2
|
|
| MD5 |
4d6066198b5089a9db6faa9b554844d5
|
|
| BLAKE2b-256 |
ef331234a52c9ca52b81dc2c0fdf882ec540a4c070ea4dde8358384f6d4a5c46
|
File details
Details for the file waxell-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: waxell-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef9d3d3f662649762a040a20bc06c5f0b934058d7e28ac6d0892d902156257aa
|
|
| MD5 |
ce52a54531aff8b6cf8062be2c97fff5
|
|
| BLAKE2b-256 |
1fecd47b3e3c6aceeb46f4aa5b21b971ea9587710160311374bb73510df07621
|
File details
Details for the file waxell-0.1.1-cp313-cp313-macosx_11_0_x86_64.whl.
File metadata
- Download URL: waxell-0.1.1-cp313-cp313-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aca617ab0db8d3251b18fbc34cf3310cbbbf595b6f72a489b85ac33e951bf6b3
|
|
| MD5 |
1f2b197026292e4a6e19340d3e1eb146
|
|
| BLAKE2b-256 |
9dcc6473d9965edccb8ec7d02c1ca9319fd9d096334743051a57594b0249da27
|
File details
Details for the file waxell-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: waxell-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1278257d95fa970a545ef078f1ea6e0114d7ccf4528f4ab3fa57d8cb3cf9a831
|
|
| MD5 |
80fe69dd6b60e1d28317e04d5977cefc
|
|
| BLAKE2b-256 |
94860dd9b7cddabfb6b0c2e8f9ef0007eb7d98c7d4be869f59e0f42c8ba558a2
|
File details
Details for the file waxell-0.1.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: waxell-0.1.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3bc5c5a3463240c109fdf826e79eb0e26b10c0f1458a42af80809120a0d2ba0
|
|
| MD5 |
4226ad8c3a29ce4693293fe1f8b4dcae
|
|
| BLAKE2b-256 |
81c3db07059efea2bd022b44103c881674f5a1b1428eaf8891cf85e4c142657c
|
File details
Details for the file waxell-0.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: waxell-0.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26ce4604bb94db2419177256c18100f359cf98d8cd79e66123d57fc021901465
|
|
| MD5 |
87b39ae5497f3f09333dece616dc09f3
|
|
| BLAKE2b-256 |
884f536a7444ad993cc173f346b482ae4cc919f0885e667a4e68a2945f73855d
|
File details
Details for the file waxell-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: waxell-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4d74e2708044f6f653a13f5c195c99fc5efc6b31200ede6e56ea5c07410fd9f
|
|
| MD5 |
9bfc0ae4c5e50d8d85ca26888fc24692
|
|
| BLAKE2b-256 |
597e88307f0feefb028b56aeeb09631f40190a4d724c0b1831bba015cef394bb
|
File details
Details for the file waxell-0.1.1-cp312-cp312-macosx_11_0_x86_64.whl.
File metadata
- Download URL: waxell-0.1.1-cp312-cp312-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bacf3edb64a3ece7f3ed05134562139f1bcf1ad00badc22545f306b64c1c948
|
|
| MD5 |
f25c6a0ca31b5360221bbc796b085316
|
|
| BLAKE2b-256 |
39463343a9a7d4209182937fe61baac48ed730a08ed8dbf53843767f086ad218
|
File details
Details for the file waxell-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: waxell-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0f92ea794c37bd6ba930f9ec05b0b15de30910e31177e02b2473826da337cbf
|
|
| MD5 |
082b4263ac6bc57f272a714cded32c0f
|
|
| BLAKE2b-256 |
7df0a911bff59db509988f7aba2f87a042acf54d4770331a136110a1ea31e31f
|
File details
Details for the file waxell-0.1.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: waxell-0.1.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7b1d49f847cec3bc855a3e7d96dd01884b0690fc36117875c0973a470bbb062
|
|
| MD5 |
6e4d9e907580e98c9fb12c2c55ef3447
|
|
| BLAKE2b-256 |
01a4ba4ee6709917f581d57890015728eef002817e29fd59762e833c4f8183ca
|
File details
Details for the file waxell-0.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: waxell-0.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96edcb5a6aaaee319746ec6dfcd0d8adc16eb025eb649310205d57c241e01ea2
|
|
| MD5 |
f3bbfff03e788555ad80fc331e27e279
|
|
| BLAKE2b-256 |
fa414238651b3baaf8668323086bdf88678bbab44423662219b822a4972fd0fd
|
File details
Details for the file waxell-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: waxell-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed9083191f34abf63a605fe32b93bf68d6560fa522527dd15b9961e2625dd3aa
|
|
| MD5 |
4d92fd80fca27de5c41d6ad8aaa01e8f
|
|
| BLAKE2b-256 |
9c7e6fba250866ccfa2ef6ebfce97c4f0a19247b9a1fb6230ebf139d02cc7238
|
File details
Details for the file waxell-0.1.1-cp311-cp311-macosx_11_0_x86_64.whl.
File metadata
- Download URL: waxell-0.1.1-cp311-cp311-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b017fd82639b3d6789da689c54440ff6ea8204fcd2b2540330fc1378213cd854
|
|
| MD5 |
3db48501ac19ba8424e932006e29c8d8
|
|
| BLAKE2b-256 |
b181b9a9e91f4356c1c2a00c789650eb759b1f6a6e09aa0327576fa6e7938515
|
File details
Details for the file waxell-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: waxell-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2811e1d2dc2525909e2182404aee3dea2c7b3e9e8cb4b531b35798fbc6b440d1
|
|
| MD5 |
12bd7742a9f230ed321c53a6f9141cc7
|
|
| BLAKE2b-256 |
9a908513558108cfbcbfd5cb048d8882c2be24da58d85de05786a3f4d5f27f9d
|
File details
Details for the file waxell-0.1.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: waxell-0.1.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb59c6490835e26c1e50c381a9c6c90f2cde6c0e473f5ad4da6a20dfa6a55997
|
|
| MD5 |
83bb92818c108a262fbbd5826eee7aac
|
|
| BLAKE2b-256 |
b43d9c23070afa762955de8d95d5a90c91e564d57089b23a4e200496ee3d7aaf
|
File details
Details for the file waxell-0.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: waxell-0.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d49b45736f6af241c45601da6ac02855ddc4f7b9fa960d1b86c247c203296240
|
|
| MD5 |
423b3d4e27210a71ab6fa7374b1ccce9
|
|
| BLAKE2b-256 |
439930b8a563b24c91ed3d2882bdfcf05cbbadf897a3311c6e0216f39704b554
|
File details
Details for the file waxell-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: waxell-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09665ba28db9b4252f528833b1244c87773e002e0d6a8ca4ccf94a659ee212d7
|
|
| MD5 |
490e4a04f15a3afae26da223241925d6
|
|
| BLAKE2b-256 |
6f1d781f91832deffbdde3f1eacd4cdf8f7e2e24976753e336080de7eebb7e4e
|
File details
Details for the file waxell-0.1.1-cp310-cp310-macosx_11_0_x86_64.whl.
File metadata
- Download URL: waxell-0.1.1-cp310-cp310-macosx_11_0_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c2d731f890583224ff4e4d814589ef9cbba24f0667127dc3b8d6e64520b5792
|
|
| MD5 |
7d4b9f1ee72b41ef1d5aca719cd41851
|
|
| BLAKE2b-256 |
09c108d8c8c61b7980270b2ab565e8c39a7fd76219f78f0b206f38cf644f24ea
|
File details
Details for the file waxell-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: waxell-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a7ba80d45f8f4c55771bf5cb634cbd91685e02783a9f3148603bbd91051e6d1
|
|
| MD5 |
617619cc0d3566286a160295e45e1532
|
|
| BLAKE2b-256 |
aa134ad700c17550e4e0e834c08e9cf8059d37d89b6dcaf017103adc8f2b6a1c
|