Skip to main content

Waxell — build and run governed AI agents. Execution engine, authoring SDK, and the wax CLI.

Project description

waxell

PyPI - Version Docs License: MIT

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 engineExecutionContext, WorkflowEnvelope, durable Step, 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
    
  • Authoringagent, workflow, router, tool, policy decorators, spec types, memory helpers, and typed Context objects 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

waxell-0.1.2-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

waxell-0.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

waxell-0.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

waxell-0.1.2-cp314-cp314-macosx_11_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

waxell-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

waxell-0.1.2-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

waxell-0.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

waxell-0.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

waxell-0.1.2-cp313-cp313-macosx_11_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

waxell-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

waxell-0.1.2-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

waxell-0.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

waxell-0.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

waxell-0.1.2-cp312-cp312-macosx_11_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

waxell-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

waxell-0.1.2-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

waxell-0.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

waxell-0.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

waxell-0.1.2-cp311-cp311-macosx_11_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

waxell-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

waxell-0.1.2-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

waxell-0.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

waxell-0.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

waxell-0.1.2-cp310-cp310-macosx_11_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

waxell-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file waxell-0.1.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: waxell-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.4 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

Hashes for waxell-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e95cf27f19a767ac1e25ce0c0b25a5eed39d5fe6d36efe9393a257a99cf0c3f5
MD5 1823110c83c33b3aecdca1f73ef19de6
BLAKE2b-256 b21adcbcbb573fa4fe367ea3207a95a4a2f6c970dcf1a630d92d65902a4ffb03

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dede837e5780f1c0d1ed80b62fae5aef4d1c15a10f79175f1f12ee57bccaae67
MD5 4d0cff46a705b6c65c32cde6de28f8f3
BLAKE2b-256 e9c0edb805fbb4114d27f3a2bdf7a58c9f355117ec0e2670043f8d18bdd1147c

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3cbc5d5fd8e58c45ab0304409d178385ff3074931f304d434882380957f5f1e3
MD5 8cef7e116de3160d1e1c631720ccc379
BLAKE2b-256 cec85dd6b346b60419da8085ca5ecfa2a0ea2c8987d222bf54ba27bff12c68f5

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3cee665c51864fbcd6a7a24c24fc0be89521900e7844699755df3000c2f8e810
MD5 624b1cb8c64c1582ce97bfa490f53f3e
BLAKE2b-256 9a85483351f3f523eed44f8d05d19507331e131a7cd9a9435ef932cae7efdc8d

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db57f7cb6d3258b2a3dda7c803697aae9b5560a78a34505c7b057cc8eb36886b
MD5 4f7ba400137327f120b7a61e919f71f9
BLAKE2b-256 5b06779fa62a6b6890ec0822b271eeaa93ba20362eb2800285671f8a00ea85a3

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: waxell-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.4 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

Hashes for waxell-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5cf1b2f2471f265694ee33a46ae2a6459b6ccae6e3652727ea056e434d5f9f2e
MD5 5c4e4150d69da38501a4f8d6ad2444ce
BLAKE2b-256 26c1969b61e113acf15f201ae643f2edcf4f6717a6aea4119e2688e968745871

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad0d3b7432f1648481fa99bedb63e909f4cbfde599c2dfb771a9ba32ad340371
MD5 5c55f8495b1c3c0d605cbb81f9fb3625
BLAKE2b-256 beee0e22293f3e2d723bb2cd04fe6825ed0ce64f3ca967641d6641713ba0f3de

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc3cf3351b27584765758487eea9bfa2e3a832f45da7b3edec33681467162dac
MD5 9a6ceb61a562961b7856c6727c119d1d
BLAKE2b-256 b284f3812b26b77ee9692a2296cd03e0662a806fba72ed78f49bbd776d063cf4

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5ea0c06505bb3bfa254f1c52d61dc509c6d38b449a827fddd691db14d8a0845f
MD5 8a313064dbc3d21431d7f90d6d0bab60
BLAKE2b-256 739f09d5d9119a4b380ee2e9f3520ad164b5d1540d4acef0f98f7e55fd62ae5d

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d13531e8d62b0ec24e338ff87e4b0c8b7c7d02b71136f7cb0b05a43ff93da4f6
MD5 9fff215f42d1d2e18091c15a2dc90b21
BLAKE2b-256 692177df2d4b86cd17246c8cfceb6cad699e35344ee4b6f0f0bc2220a1e57ad8

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: waxell-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.4 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

Hashes for waxell-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cc2f1c83639f48ff263bba04dd5cfc9fe86dff328f510a4d3acbebf291aecd96
MD5 7dd7bff4e290dff0cfbbd4f6d6b7782b
BLAKE2b-256 480329d9f61d3c1126a3ceabe3accd99cb36faa9967b2f430a0134db2ce14c30

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca7f97361b229ad7c079b17cb0eaddfca0f65125ecb8938bdeb2c0d3b30cb2b0
MD5 d8bc016303a924a96b9b9143125e9666
BLAKE2b-256 4b8ab46d93575b1dbe91b4c73409922be43d185cbe941c2adfcb103d45696f2e

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5da2f022970757e2b9a899cffaf0ed49277140e5244e7eb8e23b8f52d2ebb532
MD5 215cbd2b2480cac2300d6aa141b23c93
BLAKE2b-256 2b8f86d338061bac4c35c659cd5392fc4ea7bbee65a31afb5ecd29b23cee8060

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8a1d3fa60c5e282fac06b0daa34dec01d22cb30ce6456185788cb485f5297d1d
MD5 431c90543b4234e7a5ac9071138a108f
BLAKE2b-256 cfc32342b95bf7a09f51775199da4e37de3578f33eb9c458c120f28c95f96c57

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 723006174ed49f2620b56009e59a94a81e2fe820d872a52f9e8e8184cb67390b
MD5 7bddb397382c87105ccedd863b60d212
BLAKE2b-256 b653a3d3ecd0e3a7e386cc0af6991be22a8de61bca00227f5ee1fa60e0b9e968

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: waxell-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.4 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

Hashes for waxell-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4bdf65a1d741b9b9e760ce3dc29f33c67135a61043ec6dcf097bcfa74c2c958d
MD5 1160db3cce398d85bd44b1f5960af3fa
BLAKE2b-256 a16c710a924832d1869df4233ab3b288b887371e8ed5596062fd1f38223a6465

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e8f319f57c8c59df1b37406a40bb27d2e7215e6ef1280198d108ca501583993
MD5 19fc1d11b7e9d5cc80824eab2b067959
BLAKE2b-256 23af8bb7211e0c1c7e21d8bfad18ab03e19de90697981668389feff7cedc34c2

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ffb94b122baffe3305e092efecd003b0198ae13b39dc13c2bb29d2814579579
MD5 1b7df5caa303187d93642aa657166897
BLAKE2b-256 541fdcf122a22ddf333dab0ca8e0a3599b2383790f3e73c63fa912f6aa552faf

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 fee39bc15496aab4568fba390638e3a78b6f14836e044a9ab18bc76f45cec5eb
MD5 2892208cd30bd192481acc34a297173e
BLAKE2b-256 cd8f576cbf3e2cd4bef840316002d672475e62a65e846d8f16b8649134033f53

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 630fba506a0b08451abf38fa7c6d87b20aa0a2484de7bfc467f3a601a5d1bde0
MD5 a0d97559effa5def6d32398c47f244b8
BLAKE2b-256 fe8b4e076716768043086d12899c8a9cabd5146ee1e1c2bc16f46457b1ac0baa

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: waxell-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.4 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

Hashes for waxell-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bce551416f41c79a129256ee3da5e093c82f7ff3d6b08817bc2ef1ce01bba5c6
MD5 c5d08b4ca526972c06b905539dce7d7b
BLAKE2b-256 f4dc464a39b103f2fb3addcebbaeb4e1fd0462fc10deba24a3f58078e085a742

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1c44af9f2efa500d98a98d8a1c89dc99d81f8abba04e3ab89e8e5b4504eab8c
MD5 644ca6a51bb83ea512ea1aca7bcb6625
BLAKE2b-256 312dd32bbdb52930a46e31112d51500dc566bae29dcf07f1151e57552268b965

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 13c6b562af9b18060181b5163ad9d410da5ea4947fac74fe965bb5115b6e1103
MD5 2de4553e98e64ff31945c7e130eaad67
BLAKE2b-256 a11be31f9ae0a47e3de668672371d52e81e7a09671e6c653e7cced164c71911f

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f8c19c3c94f9f0ffffa54d74a6da05dd3e313355885ec2ca05831e0806539d3e
MD5 d746e5320d91bb7bed1e4d466429fa67
BLAKE2b-256 bf62ab5b48a76219581fb271879b3cebcc869b56b572b8740a059b5e4a99aebf

See more details on using hashes here.

File details

Details for the file waxell-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for waxell-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3362488a1902fd8011f1cc2787ae260ecbabd7c7476ce2c2bbaae0f5fd8e4366
MD5 2096404048185ada9638588570f9ed73
BLAKE2b-256 79ddc01c0fc421969b1357063157e25a81e4e24ad0bccc99c2b3f9199aa4e3e9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page