Skip to main content

A sandboxed bash interpreter for AI agents

Project description

Bashkit

PyPI

A sandboxed bash interpreter for AI agents.

from bashkit import BashTool

tool = BashTool()
result = tool.execute_sync("echo 'Hello, World!'")
print(result.stdout)  # Hello, World!

Features

  • Sandboxed execution — all commands run in-process with a virtual filesystem, no containers needed
  • 150 built-in commands — echo, cat, grep, sed, awk, jq, curl, find, and more
  • Full bash syntax — variables, pipelines, redirects, loops, functions, arrays
  • Resource limits — protect against infinite loops and runaway scripts
  • Framework integrations — LangChain, PydanticAI, and Deep Agents

Installation

pip install bashkit

# With framework support
pip install 'bashkit[langchain]'
pip install 'bashkit[pydantic-ai]'

Usage

Async

import asyncio
from bashkit import Bash

async def main():
    bash = Bash()

    # Simple command
    result = await bash.execute("echo 'Hello, World!'")
    print(result.stdout)  # Hello, World!

    # Pipeline
    result = await bash.execute("echo -e 'banana\\napple\\ncherry' | sort")
    print(result.stdout)  # apple\nbanana\ncherry

    # Virtual filesystem persists between calls
    await bash.execute("echo 'data' > /tmp/file.txt")
    result = await bash.execute("cat /tmp/file.txt")
    print(result.stdout)  # data

asyncio.run(main())

Sync

from bashkit import BashTool

tool = BashTool()
result = tool.execute_sync("echo 'Hello!'")
print(result.stdout)

Configuration

bash = Bash(
    username="agent",           # Custom username (whoami)
    hostname="sandbox",         # Custom hostname
    max_commands=1000,          # Limit total commands
    max_loop_iterations=10000,  # Limit loop iterations
)

BashTool — Convenience Wrapper for AI Agents

BashTool is a convenience wrapper specifically designed for AI agents. It wraps Bash and adds contract metadata (description, Markdown help, system_prompt, JSON schemas) needed by tool-use protocols. Use this when integrating with LangChain, PydanticAI, or similar agent frameworks.

from bashkit import BashTool

tool = BashTool()
print(tool.input_schema())    # JSON schema for LLM tool-use
print(tool.description())     # Token-efficient tool description
print(tool.system_prompt())   # Token-efficient prompt
print(tool.help())            # Markdown help document

result = await tool.execute("echo 'Hello!'")

Scripted Tool Orchestration

Compose multiple tools into a single bash-scriptable interface:

from bashkit import ScriptedTool

tool = ScriptedTool("api")
tool.add_tool("greet", "Greet a user", callback=lambda p, s=None: f"hello {p.get('name', 'world')}")
result = tool.execute_sync("greet --name Alice")
print(result.stdout)  # hello Alice

LangChain

from bashkit.langchain import create_bash_tool

bash_tool = create_bash_tool()
# Use with any LangChain agent

PydanticAI

from bashkit.pydantic_ai import create_bash_tool

bash_tool = create_bash_tool()
# Use with any PydanticAI agent

ScriptedTool — Multi-Tool Orchestration

Compose Python callbacks as bash builtins. An LLM writes a single bash script that pipes, loops, and branches across all registered tools.

from bashkit import ScriptedTool

def get_user(params, stdin=None):
    return '{"id": 1, "name": "Alice"}'

tool = ScriptedTool("api")
tool.add_tool("get_user", "Fetch user by ID",
    callback=get_user,
    schema={"type": "object", "properties": {"id": {"type": "integer"}}})

result = tool.execute_sync("get_user --id 1 | jq -r '.name'")
print(result.stdout)  # Alice

Features

  • Sandboxed, in-process execution: All commands run in isolation with a virtual filesystem
  • 150 built-in commands: echo, cat, grep, sed, awk, jq, curl, find, and more
  • Full bash syntax: Variables, pipelines, redirects, loops, functions, arrays
  • Resource limits: Protect against infinite loops and runaway scripts

API Reference

Bash

  • execute(commands: str) -> ExecResult — execute commands asynchronously
  • execute_sync(commands: str) -> ExecResult — execute commands synchronously
  • reset() — reset interpreter state

BashTool

Convenience wrapper for AI agents. Inherits all execution methods from Bash, plus:

  • description() -> str — token-efficient tool description
  • help() -> str — Markdown help document
  • system_prompt() -> str — token-efficient system prompt for LLM integration
  • input_schema() -> str — JSON input schema
  • output_schema() -> str — JSON output schema

ExecResult

  • stdout: str — standard output
  • stderr: str — standard error
  • exit_code: int — exit code (0 = success)
  • error: Optional[str] — error message if execution failed
  • success: bool — True if exit_code == 0
  • to_dict() -> dict — convert to dictionary

ScriptedTool

  • add_tool(name, description, callback, schema=None) — register a tool
  • execute(script: str) -> ExecResult — execute script asynchronously
  • execute_sync(script: str) -> ExecResult — execute script synchronously
  • env(key: str, value: str) — set environment variable

How it works

Bashkit is built on top of Bashkit core, a bash interpreter written in Rust. The Python package provides a native extension for fast, sandboxed execution without spawning subprocesses or containers.

License

MIT

Project details


Download files

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

Source Distribution

bashkit-0.1.12.tar.gz (867.5 kB view details)

Uploaded Source

Built Distributions

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

bashkit-0.1.12-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows x86-64

bashkit-0.1.12-cp313-cp313-musllinux_1_1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

bashkit-0.1.12-cp313-cp313-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

bashkit-0.1.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bashkit-0.1.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

bashkit-0.1.12-cp313-cp313-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bashkit-0.1.12-cp313-cp313-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

bashkit-0.1.12-cp312-cp312-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows x86-64

bashkit-0.1.12-cp312-cp312-musllinux_1_1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

bashkit-0.1.12-cp312-cp312-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

bashkit-0.1.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bashkit-0.1.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bashkit-0.1.12-cp312-cp312-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bashkit-0.1.12-cp312-cp312-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

bashkit-0.1.12-cp311-cp311-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.11Windows x86-64

bashkit-0.1.12-cp311-cp311-musllinux_1_1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

bashkit-0.1.12-cp311-cp311-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

bashkit-0.1.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bashkit-0.1.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bashkit-0.1.12-cp311-cp311-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bashkit-0.1.12-cp311-cp311-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

bashkit-0.1.12-cp310-cp310-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.10Windows x86-64

bashkit-0.1.12-cp310-cp310-musllinux_1_1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

bashkit-0.1.12-cp310-cp310-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

bashkit-0.1.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bashkit-0.1.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bashkit-0.1.12-cp310-cp310-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bashkit-0.1.12-cp310-cp310-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

bashkit-0.1.12-cp39-cp39-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.9Windows x86-64

bashkit-0.1.12-cp39-cp39-musllinux_1_1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

bashkit-0.1.12-cp39-cp39-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

bashkit-0.1.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bashkit-0.1.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bashkit-0.1.12-cp39-cp39-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bashkit-0.1.12-cp39-cp39-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file bashkit-0.1.12.tar.gz.

File metadata

  • Download URL: bashkit-0.1.12.tar.gz
  • Upload date:
  • Size: 867.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12.tar.gz
Algorithm Hash digest
SHA256 9aa3de9fc660fbe0336d93eedc4d0f2fa4dba0e09096040222d75502176cde97
MD5 d5ff45eca9aa7844767d5837dd0c2644
BLAKE2b-256 48eb4a6eff60ac73a3006193dfc6dfbfbb46b33de76d7f706926e4ca635c0f49

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 551204be5342e7b880b998f2d53e9606e6dfba998823d4632a5b4a716bdb29d4
MD5 736e90e43f6e185914c648be2a528b3f
BLAKE2b-256 5e5f5ded35022927eafdd2cafc557d7ba0a36a467f42dd2753966c4d268dcbbd

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 60b096656d0287b7d2b432708f39817c6d9171e97ccbdf28637939db92a0a48c
MD5 5cd11fd96a02485efc4c552428563c52
BLAKE2b-256 99f210e8b3cc46a091ef1b4b60ad4549818c8e734a6a1d41fa8073fbd31e70ca

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6e9a53b2ad57518e55d69c8d7df0e45c23ecff483e3279bd8c9ee7d5965e485e
MD5 5ecb95a40698316345ca507cea6caf41
BLAKE2b-256 c1d113548d93a6adb63a42d2593a1f848538e9b35103937bcba7fe4d2b9bf170

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc5be9aecef83b0d16c04737d2910122c788227badfe904da08e8ce078190973
MD5 bd5befb598fcea1c8e242ac634c3991c
BLAKE2b-256 064d6418950c19d94dd1ec8321319b5341e1d24f9a0f7b60a243005de36b6a67

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 290e856456c14c963d21da2093056b12cd1df1aa0d5615f2ec56fde162e8bbc7
MD5 afe8e269b92c8357903bde4ebde48e66
BLAKE2b-256 42acaffa3b0f07e74b092fbe1924d380d24f06762cbc82c65e5e4fddc0125300

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a2382e59237adf818165b6b96c3f7360d93a62bdbdae263caedfb6484a82b8e
MD5 fd682dbec090aa61d2924ec115a32320
BLAKE2b-256 891e3cc85540aaa7c00f68f2526b9d491fe5ed8dd11ae3388df699be21c826ae

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d820c93cdd94e0a9e5c8e1e5fbd159e9c074ab22f3486e885e260bf1475da46e
MD5 3b68f50c36b0cca79556fd203f910ab8
BLAKE2b-256 f6b6c58fc8ae71ff47153bc225a331875215edae5d672ccf95ad534a20984680

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 deb34602464ca19130fa35c1411fcf6718d559f9bdf1c1a28c9bc412dcde1225
MD5 b78c62dbf2a804f5a4714e4a5ac0fa94
BLAKE2b-256 5df3ffe8c2385fb71f6fd33896bea0b606cd62717acddb6d83f05bad5210441e

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 91e6445f479fd13cb91d180174eae4d9583bcb5afbc9c41989b1d3c997c503f8
MD5 5819872b0c51a064d29f0300efe6f7de
BLAKE2b-256 0f416e2755c60968dd5c0e8f3000d495dee746e1928c0f198c293124aa0b2924

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8d6269b84080309c40c26cb8e37f75ea84f90e66539c8ae3dde1f0119624c256
MD5 d76a9b080cc35efaa8d369a102cddb82
BLAKE2b-256 d5c1d733cffe00e7a0ce26fc0966788e979d7958dac0f4f466ef19196d0ecb36

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9648d685b53bdf7b5154dfe94288b1c58feef4945faab13dcab175a86458bbb1
MD5 e6bf9877fd85ef79e0080d2eb227f159
BLAKE2b-256 dda83a78235bd71183777fdd1e6a31b50ab807d7af54130eafa270374c70a1a3

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0427cf3e5823afb3c6293f946b013c2f00fa34fe64dcf4e9f0dd126024b05364
MD5 09d0db75baf7be59bbd66d6fb8cb7679
BLAKE2b-256 f453ebc07c7109e0005b1afea7d721ad8884741585fdad60d2d5f048d6bd4aea

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ff88e1b38d66823a033f4a1b51ffeb296dd9f0806f777b714a44c7c8fb3e5d0
MD5 abb381bb47d25e714784076a044bfe6d
BLAKE2b-256 176ea4c2fe5b74935061d4c2297940956148c36ecda3c8b2e1188b49fe56fa6a

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27e93bbe2ca5813bd7611c7c9e1cd489568553a8bcc229df7ffa77c5ca34dd9e
MD5 42d8a7357a1685b8b37b2bdee9d9a69c
BLAKE2b-256 e2ba06b5e3c9515a232c406299ee3e681f73a8e819669582b7591c8158ccde8a

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b70e6e3766879fa1324f5192e3c43289a8691648e1c1cfb6bc3a8be91147db6
MD5 d570045e129df0f524c7737f537b94c9
BLAKE2b-256 aacd2774aad18de3b2f79fee2b375a602ab849fc729c8532aef2544d38bdb4ca

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4e1a86c7c8477e7c460098f003886f4a5d8f205aff0d74e9c88e5ba046274c98
MD5 4e56a57a4d11f5d8703cbcb42a5f4f8d
BLAKE2b-256 1923c7e5a593c519e9ad0c75437b0bb1cf6b51cec36ce4fa0603a5dcfde875f5

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7571dfcfd95adc93a56f4f56c7ed53231f0d47a91243cc000d75b0b5f6982fcf
MD5 ac59d5e9ebd35a6043f3fc68be498986
BLAKE2b-256 b177833080f2ae09428f72addfee29a7bd938ee7fc294f634de46605dc50d595

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66dcefca2786dd84a3a13e6587a49672f1ce9cee228f6c5488b1ce353164ffb2
MD5 b5ee4986e35a8acc8d853c437e5901a2
BLAKE2b-256 7db0b8912fb9bed4ce4cb8c558024d369b987ac062d923ac493837b86362f4d6

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4dccc17e07d0d1917764652b51ffd752975440424d77ca3524cc90f9377f6a75
MD5 b4d856f42bc6c1fc258c90aa10d12895
BLAKE2b-256 32a8637e1798c79654b7908de2d65a83ae6c0015d6482517a0516f2f12fa5f84

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb6772f3d60d3f8025be583d8ea899053d4f90fbab954eb912d05e0d36c2bc08
MD5 5cb27459876c1e8a7a666831c1682f94
BLAKE2b-256 a763ae0f750f6a011fb89ab58755d07ce894aee8d5dced8641a7f09ab1fe6c68

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4af27bf6689eb8b2b8a627baf394496cadb72926cf54ed193d9c8cfcb64b9ce1
MD5 6036df58186fbcce104e2a49e6053c24
BLAKE2b-256 1cc3c14d1230fbc0dbd867236a46988dde028d96f7b08e275b329ee011d64451

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0627a65e32130c93b3d009718e7cbb6b820b19a19735473a2c515d79eab7e4ab
MD5 9bfa36b05aa6bce3bc3bca822bb3a3b0
BLAKE2b-256 dde60bdda0185ace7bdaedefae43ee5825bd7004946eb53c341d170367dfc3dc

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d853444cb4656afff30d0283dfe89868a290c7bc94d8978c3f8531862f725790
MD5 9c1b74cf1816dcc2a202aa023d369a78
BLAKE2b-256 8201cfc0dc80c00cd25bbcb61a4c0f314c7d7f08b2355f7dab9433fe8483da9b

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f8aab062efab19bd401eb00c86ccc0662a8f9b7f6d9e2bf7111cc9a96dc39b7c
MD5 f0e21d8bfcbe3576e4cd8d0e928a911b
BLAKE2b-256 50533f2e728977e7032c4dbef3bea90e29707e85ca6e026610565ff33e2e99b3

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 032e7b7e65afed58f9952e3f1322a4fb96ffc1f56a26b16e2527461b8ef26c21
MD5 8376bb146fb59202ea440458b3917e62
BLAKE2b-256 51d2f7bb0c7ee6bd5e420b4ad7f3700542cc32020f6f0f8c18f0929f7ce0ea3c

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0378bf26abba2036bf0973345f9a35dec4a6c1b1854099178482e58f94728af
MD5 1f27f7447162a7e9bad0aa719595c3c3
BLAKE2b-256 cb821475bff17a04016bd891815c4345f90c5beb9cc4a3537d3bccaac960f8d3

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea48079d0200eb65aa40e70038777b63b162f10378b145eee85912dea6669b2a
MD5 1019513bf26950159b6d872823f543a2
BLAKE2b-256 3f3ddf8604ed8c11e0b9e935e44c22422ea91e97d85c09822b3c050b57c0a7d9

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d2b8f2ca89865f7d38d7801e50b62b497f2b4f2012ad8e7e6526bfacd8370cf
MD5 77b76a2eeaba702c1aec05d7aa2dd1d6
BLAKE2b-256 9cbe89bd2330af6810d3d8415804e16c2ac0ba5cb487f3b4a5d287f8d0aa14dc

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 98cb959626484482b1d84f7503ce9d7be30971de80c0757d050fce992f77c6d3
MD5 062ea00ec6033d4861ba9fd046ce69c5
BLAKE2b-256 6d487b085dd29d9bbde4bea761d8cd5b9241aad90d8e9ce025e14ebbb51460d1

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fd01f2c4797af8612ad09feb2ec389e41440d5e6bb14f5b622499bdf37277f3f
MD5 6f211a41b04ce09db2c8154820f0d1d8
BLAKE2b-256 a2e2a3f75392459771279252de8cca3384b52c1036cd8ce40114254f523d5e6f

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c827ac5b8d605ebe6518cd02bacfe928fecfe0fee9f61ff6bfa30fc49e526f04
MD5 b3872b8d956ea600a0c81ee1051b49c4
BLAKE2b-256 bd37ba83e06b4c108f0784c67364ad7c0652be183443a2f146a855c61cd0900e

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c320a93093d976697950b91e57bbac7bf4566414afe4534ad144fc72e710037c
MD5 817e8013044ee9b10901caca5d5a6d96
BLAKE2b-256 422650919bc32a054fd2856a4234d069a7f98e9f6f4594f0d51ab433760491a0

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26ceaca03798ce1c7af3bae21308a034ebca7d6b9f4e3a023167ab5e5390504f
MD5 2c66d4a56701a7bc63ec97897e82b312
BLAKE2b-256 f27a205398d864e2442f4cbf549abe61c477aa305699a584fa334847fab7c963

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f251410d09d53e946699bc5718574583d1a86ec5aa14511dc9875cc0f317542
MD5 9b3b74ef07b279c401f9f71d7c778755
BLAKE2b-256 a9c0a1d8fd233d169657767d687917d0761dbd45f871aa86a9c68a376149c89a

See more details on using hashes here.

File details

Details for the file bashkit-0.1.12-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.12-cp39-cp39-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.9, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for bashkit-0.1.12-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb09cbc0abca173d38494db88659c22a85ebc454a9322b419b27bd44ecf81e15
MD5 7e3ed350ee0fde8112188bd32c96fa8f
BLAKE2b-256 be90aff40231eb2cffa0b01814742f09af8477e3f50a336032a1420a827cbff3

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