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.0-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

waxell-0.1.0-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.0-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.0-cp314-cp314-macosx_11_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

waxell-0.1.0-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

waxell-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

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

waxell-0.1.0-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.0-cp313-cp313-macosx_11_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

waxell-0.1.0-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

waxell-0.1.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

waxell-0.1.0-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

waxell-0.1.0-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.0-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.0-cp311-cp311-macosx_11_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

waxell-0.1.0-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

waxell-0.1.0-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.0-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.0-cp310-cp310-macosx_11_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

waxell-0.1.0-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.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: waxell-0.1.0-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

Hashes for waxell-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 909d729bac33dc25b2c6dac822f06d87b4caf48afcd377625177fe5961cbb256
MD5 0e4d413cd84c417439a463acc488d68b
BLAKE2b-256 2613259834fa6e679baa61e913246d18c312dbb6fa1be100e675f911c22b798a

See more details on using hashes here.

File details

Details for the file waxell-0.1.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e19783bb14620c426ecec0e0960165138534087bac004339e15879f5d4c5be92
MD5 6fd2124486907b154d149801577a2f58
BLAKE2b-256 74453358b297f33c58a8de59d97175c4e71aeb738e4f024e2f487d6d87926885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0fab8fe2d93220f8aa65bf593b3b15f54d38b7df3144f6f18628e16df9a64535
MD5 710d68c56042672d35665c90518a92b0
BLAKE2b-256 312ee2db7c66569ef8d47e8d6fc85dd6dfab6d88d01c23307ea3a64c7abc6a02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 76318805eb46a30d2b5e3eeef1643f47d84f5e7a60ab4e26a9eff92f17cf8431
MD5 dbad25dc13ea6d1e13c699e7be4194a8
BLAKE2b-256 cd11ed736d38441a57129ac9763837e4e42dad6a87b988a70a7ec775e855a3f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e08cf43c038c76b7a4c27439121cc0a6708c80d53687b82caa5e05392883c4ca
MD5 93117affab8a5aa818224f1d5825d5cd
BLAKE2b-256 399026fb59503f7cbd2a59b745e14bef2ada471089920330650c4428da0d2299

See more details on using hashes here.

File details

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

File metadata

  • Download URL: waxell-0.1.0-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

Hashes for waxell-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 69b7fed91485ea835cc7501a2b8874e6cdda2066574ae79cc2d13e8f035c65f8
MD5 09d4fa723386705357d79eae58baa5ab
BLAKE2b-256 cd05b9b061eaf15ad7ce1d6fd2c38c24fcd239da83a7c1a996801b2b34fa7e78

See more details on using hashes here.

File details

Details for the file waxell-0.1.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a8da2bfd672095619dd8495ea927109a4117aadc01669de99b37b0664d2272f
MD5 baca4b06b9e76bbe74e06ce102f878a7
BLAKE2b-256 21f2f47f12cceda5272699caf9eddaf80a88ff16bc711be19b632941a5867097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a427dc7bfa77e6d4db0b2bdab4bb3dc046078f4bd270900398ebb82075a6b5a
MD5 26113a8031c4d66524c3f70eb5b6b4d2
BLAKE2b-256 689242c610d73b00c30eaa884d790729da0ec36b66b1d698b0cb3bb1ad495f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 97d9f2016dfddbcf0dbb21080553e22f145ec1a7c948cab3d0ff9726ba92b0d3
MD5 6b1c32223290e0ca036f371dbd5d8d55
BLAKE2b-256 6daaa1ab63cc22117921bfd4945e7f2803d09b2092d3377936c3026f17df7799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6fe7c84719f88dd4403b329e17b61ed3746ea356c500f990463fd81609477b1
MD5 3dd71e45602150f44d1ba01e406d2199
BLAKE2b-256 5dc241b998f83154b56a9f81f56aafacdf758a1f3d39526df958ca09ceaf884c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: waxell-0.1.0-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

Hashes for waxell-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 050630a855c24c3d061f85e9aa9d73f1997c53792d985ae1021ebcb527eec840
MD5 8fd3ff943d566a4fd98ddd538ff8084e
BLAKE2b-256 31c884a4e2cb583cc082a5d9a32bd29c471c1ae5dcaaf677a5cad978305c8179

See more details on using hashes here.

File details

Details for the file waxell-0.1.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f803b85c4ef5d0824615fd30acadb1d88300ee0adc585050b1cd44b220c6bb6d
MD5 c4e9fd7d14374406b4b63e5b4cec2648
BLAKE2b-256 8e6e0b181b4ab0198e1ad13a6b19a751d22156bdddc16c0f5437e981db49013b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9390accc4db64e2b9e0a316fbd72c2ade7401f4bed61a76ac616a88d3af54cb6
MD5 d79ac9bdbd3057e0f9490c89baae5809
BLAKE2b-256 aa6efea5b9748ff1fafa802a5291325eb4276b5dff8aebdd84dcbbebfde5535d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 38974f24b9f2e1d0d3aa89089f0b09aaff46bf5cdfa1b993292da1afadfd8f62
MD5 8a0c73a058d091d81ade9ad89b645551
BLAKE2b-256 ea9fd9e89d12565b164940ea235f8afea09ec4d4214e64b45f544b5753346521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 991144bd48ed4e00dcf3dfb422acc302dfba813a2ac3ab0f751f46a14ec05ec5
MD5 b8249a201f6c30c8073c00210f2e2642
BLAKE2b-256 7e0b11304fd9785bf8410c35f45bdb3d1096a6cb7ba128b3fabfad3d766dda99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: waxell-0.1.0-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

Hashes for waxell-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a0095093f4617619270c4a4c3353acb7ae78cc4e4599a92ebc2641db8c093403
MD5 11b1c07b3168a3f7e4ea461802b36a6a
BLAKE2b-256 0400bd666675919edc912b87891bd742ff6c2ecb978974ba164eaaa6f3b2b645

See more details on using hashes here.

File details

Details for the file waxell-0.1.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78f70bcc51e72e707cc436fb7e0f81e59fcbf0119ac11417475b8e8bb3f639e8
MD5 46d3a4b4727c1c2cec92b8a5bf974f81
BLAKE2b-256 90057d956c3e707091472fae1956e16d34216434d1d1fea6266e8eb129d1f33d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9256bb3ed14b532e8860db91550e107b8bc28a676f6593f3d75277114e9fb067
MD5 923547d0f58ec2e6e0f12d593f659754
BLAKE2b-256 2df1096315e47ce9ebac7cce4f3dfa60b9fc4ed5945176aab5de1bf18ad3cce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 48658a345963bc70bf1bc8314e34308e5b5af5488ca93861457d92fddd7d24d6
MD5 88952577cc6758ff462984f8ef1ef509
BLAKE2b-256 8b9ec6c8934f9dffe2a16bb32d41501410199ad2d623fc83f968af5f5a5959f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d3604d96b40606bdafba643507cef6f00153f076584d75e0fb66046035e4ec9
MD5 ebf03d1eeb6e2860e11fcbc6e08edf52
BLAKE2b-256 b3e9f993deeec88fb0a897fa01dcc0bae2706e5c897145acf0679ecdb8fd9210

See more details on using hashes here.

File details

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

File metadata

  • Download URL: waxell-0.1.0-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

Hashes for waxell-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8b009566983836e2dc9956fe8e4ab3381c3e8e9ab838660d8787bf94fbd16bfd
MD5 c9a5bcc5a38173e7bd56df02ee4c02f2
BLAKE2b-256 7b7a58069e146f3ffa2bdcdf7d7397b7ba705cf3bbddab55e17f10147fc846f6

See more details on using hashes here.

File details

Details for the file waxell-0.1.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f920e612d091e3a525ae9d4fd240dcfd4d3ce3e9605b6f44aee7fdb80d0e2854
MD5 31ad8ca89e1ce9bf1143c15caef0d660
BLAKE2b-256 c00d00387611c322589175087d7418b88a23ccac0a9670e117073e9b93b85030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69c064543fdef81dea340c28bfa01b6d724928b6e2bfab8230827dc81d5d6e5d
MD5 456a2ec4220f4ec68c2240e412259570
BLAKE2b-256 d3d64dfcd6c1e6467869cdeb88e18679749ae5fd97f3f25333e3a2b577faea8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7ff5954aa0869a9a00a446e8af3d34f1f133673614f17710d8f0148420865e06
MD5 0159d3c22d61234551ad5a466e291f5f
BLAKE2b-256 38ffcdfcdf27b0654f722a4f54a2f347e835d358c3463360d0ce9c4ba803bf27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for waxell-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 910eaa5b2cf8b75c56afcc5318ef90140459e8bc0ef4558458dbf01bc6ab8a90
MD5 a5f3e95e47f4307ce5fec609b0cb8537
BLAKE2b-256 7448c75c61ff29f357a3c362b19e9d35c0114893924aca5f0b1699769c291492

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