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.11.tar.gz (863.0 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.11-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows x86-64

bashkit-0.1.11-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.11-cp313-cp313-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

bashkit-0.1.11-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.11-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.11-cp313-cp313-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

bashkit-0.1.11-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.11-cp312-cp312-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

bashkit-0.1.11-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.11-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.11-cp312-cp312-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

bashkit-0.1.11-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.11-cp311-cp311-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

bashkit-0.1.11-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.11-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.11-cp311-cp311-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

bashkit-0.1.11-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.11-cp310-cp310-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

bashkit-0.1.11-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.11-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.11-cp310-cp310-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

bashkit-0.1.11-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.11-cp39-cp39-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

bashkit-0.1.11-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.11-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.11-cp39-cp39-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bashkit-0.1.11-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.11.tar.gz.

File metadata

  • Download URL: bashkit-0.1.11.tar.gz
  • Upload date:
  • Size: 863.0 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.11.tar.gz
Algorithm Hash digest
SHA256 8a1521365e5532b7896a9cfc9359f27653bd4971ff86d91f26099341159f0bbe
MD5 d520ab7c4671fb97cd8c5082a4173b7a
BLAKE2b-256 650189482bd8177332c3f1c25538e5ce6ef56c4d295a3eb67335923a6a01b1bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2988e10f517778d1062a11660bbf5b7c091bc88c24a6ccecc7d6ac29fdefef56
MD5 24144783ff14466345c75ee43ada9889
BLAKE2b-256 99652ba3936bc5d13f6a771a3c79bc388e59a1367951257ef4cad953ff990d16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3dc65841041cba81943e62070dc25b1714c7567efc2da024fb322ea46c712afc
MD5 430aac18e656ef843c6dfdb46bf0915e
BLAKE2b-256 f2cebabcd93bdeab6f7dc7731e5034903d8db621507601d7e8de43a11a5b800b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b4d9caa43c93f3da0d7e91c059fea8af7400fb5573914fa2cb9c6a8a83d24a46
MD5 00f238efd38185f388efe0aa72ed5acb
BLAKE2b-256 f04af6f0dcce92eef03749d1a4124fe4500a7f1499a3034aef6d38f0bbc696cb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce633182fb5a9cb550201b55e0b02877130a59b127da1f776c3c3cf5e97118da
MD5 63439b6c53b2203d0abd79ed04d72be2
BLAKE2b-256 f89bb13bcf817ea1cce8b0a3bfa1796997d35759a2b11c95474e53e0440f2cbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 742ebd744701c43c7dc1eff245a73bfb3f0d4abfa63ba365ba56608f30412546
MD5 7c207c68c4edaace0cd424e57ae62f03
BLAKE2b-256 9a5642895f4ee923d1009ca3d1df649218fc31eb9239f8b74f0a12f5667a1bb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7597d29c54c1e0ede8071a8a72c4674c1fd3c3259dc0196d1818ec0811fde40d
MD5 d292027f6b808a7b97f25a5268ee2bb0
BLAKE2b-256 2c8aa9066be45ac4893e48b0a015d79c014a23d3a2b42ceed03e057081065f65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2a2a8e72dc2c0a40f0b746977ea7e2241e7c4172b9873aeec96e76df64923a93
MD5 0bdb965e4e30704823cc5fd32334186b
BLAKE2b-256 9c801ddc1a19b99aa25a330b82f45a11bb059a7db64978030ebbd849b2ccb77b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c19414a37c4819199677c4bfa382e901b027c673c05fdc78525a28b2041ebb83
MD5 35e37ca43995533a9735c56882bb57ab
BLAKE2b-256 04a7f33b197695bf51599ff8817c803fe4880c8b48cf461d3340e37862cc25d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6cb200e2e48bc64427b978e68c59a8a995ee4c85d7f9ca46ab074c61904d8336
MD5 d217d034cdb63a83f63284e3809488f1
BLAKE2b-256 e33a6587cb6208888c4629d9eb9b0a833615d684e2c3d45c753f37d405ae9e5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 368a861bf7d46685a3ebd42dbe656c8b756836562c3fb002cbc539ff73726f87
MD5 bb0785aab458b87163062cb9b1156ff0
BLAKE2b-256 c97c1b18ac982e3f072d51132f6485bf4edd0369cdfc56ba0e71749e237a1776

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5026a971f126c5e257dddf73027fcd1a5c0052eb23ecb1c178679182c0b4eeac
MD5 a7667c17856e32f815a2f12580320732
BLAKE2b-256 a862f03383877e3158b0961e35629923c3eaa590c1034e76b4ed486700f3293e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8df66ef9c794f76cf0a5e4ac33c45215e3e14b80955f2a363f87af7b76672474
MD5 254b6a6514490c9130deda70862f576f
BLAKE2b-256 8c6972abacab314e4887a605d601bea7784c5d88eb53a46e85e882619c8e79a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6045de7b4ee6fd63e14f05db1d7e09c898a8b8e4bd47e127b72c7aab6fc6832d
MD5 5d117ee95b3ab9f041ccd8573e25d95b
BLAKE2b-256 d761c047a2df69f0625d18af9c6726fa4e4a0253fa841cb55225ae15dacccc61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 411fe14e3808b392a31eb6574bef7a241faf8d351ec17f2c62403697f6278a06
MD5 9a26fdffc4f6928c2016a651fcc3a198
BLAKE2b-256 644ede750a36e30dbc8ea61d529bd2e7d9341f85e27ab16ee027b7e0c9cfa8b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fcee171046d898e6f9f4f7dcbcd8edbb56f10732f20226b848b092ae35e4e599
MD5 6b44831c49723b08882925d9cce47b4b
BLAKE2b-256 6966522bfcb7de5ac9db7f16ac038a25462006df34561786158ef4f23fadb752

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5cc72d1f411097702d83f0231bf248cba5f8286b9db472421e951c8e9225c53f
MD5 bbd1d7b306639ff179f46487388a7026
BLAKE2b-256 93073b5452fd6e1ffd1d8f97f7cb18538165b0369743a2abd089379d71b358fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fd07b88928e33e8fb3c6f70d9a96f0ebeb4ddeb48cb5d021bd467d6f896bd186
MD5 d2f167b75de0f478a954a7f5f37948a4
BLAKE2b-256 f13eac5211ae43d96d2a2fedd369ab5f69fa20532fa577e0b975f8f39f068a8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf8bd78eb863362a7be1e22c07a426beea3a84507a42c35755acb4e9e168ebbf
MD5 43b4c8bd473cd7918865f746ceb1d4e1
BLAKE2b-256 888f2142c10902dd70a7eb25c495fef90dc5695c1996059cb41e39c51e395916

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 126eaba818140c92dc13f2276fae7215fa4983c76c57fa71920f0931a33acb9d
MD5 37b832e36e9363ca30a1fea4d927f245
BLAKE2b-256 c2eb24efd5248daf824888a8899081927bf5337839d9a3964271462ed29d88b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2f809540b0165f4bfea758eea26512d476eeb87ad3cf21ff40c0b6ad99871b7
MD5 6246387b3ec68a3fa867108af324a905
BLAKE2b-256 6b61e71f920a7f22ce088c1b551e9f26ce05a449de0630db18fef7ee5a9048b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e9ea41a8d340be7d057c40fe378657b1987741341b041561b1b1db8ccbc574d
MD5 fb362970e1be4f2d06dcd0e398be203d
BLAKE2b-256 6d0534642af5e91c3b242da50b2d9000c140761ea1b4440f9987d8eb736ea27f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 57ac763b1159d1738496fa6fd05d7bc9912cedae2b8f2656969224bb1401ef7e
MD5 df64bee39e4c6d5951348509a7aaaf86
BLAKE2b-256 90000db156406e2f78b02c25355bc36bc3293139a298ec3c06f109d1c7ac4071

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7f26073b7abadfcf57c206be9921b24f9b6e7426b049cdb8c8efe11d54e70356
MD5 3cc3a52a0a7e12bd336cc0f2b0c63b65
BLAKE2b-256 1959d4512b04fb5d5af48cf69484c251dc04caf548a239e34f1090239688ae6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4e96a5af9ed6b7acba1fb870316aeef6ea318fa5801e634e5950522b8699c3c1
MD5 c5e607ffe6108670c652af626d5b314f
BLAKE2b-256 1012863275fa427835f77da2ce5ebd3b809724135ee40d551e6b43237700a69a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1abd5c8a81774b89109c7a4470eefbe1f023ee071a7ab760f35a76861ebc4ca2
MD5 c0c313e3b9db032c61c3ad7b7df1bef0
BLAKE2b-256 3b25f85a47d669600a6922b3c08430fd3ea8a0d382784db6aa50fd5be8ea86e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03be25e8c7bad741fe8934966986430040433a091a8f32480dc271c88730bad3
MD5 b25961f1e5a635643f4658d7f699de75
BLAKE2b-256 c06845e6f3f9e2f99cf2b5ba6c882ba35e387a9d867f687bf6e0c7339cc0034d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 564a9b0680bff5f293165d3755bf107c968e1cb4025bad13d0a9e5f092cdc541
MD5 131f50db941c25b1dba3576bc9389adb
BLAKE2b-256 b9d580004be8330f464f9c162125993c92801174016ce4be9409cb54d02dc6b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec14ba1c20bcab104a2edaa99bc999a49fb5ca66a1a2f64d621e6982e8631309
MD5 58cfdac21ae606444533cef9a99a6700
BLAKE2b-256 a6a17dbc9393303b4afcce864e038792518fa4929f83470413375d274b55a486

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7b45d106d1102536e649b9076387ea5951a5a62a7b8bf2ad8c5261b8892b54f3
MD5 8c78afd22f6f8c2f42eaec33bddee1a9
BLAKE2b-256 53d9e3bd95c903f518af37a5df4d2089aa271ce1221db7ca5cc9b534531163d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f0d0fd5542c2c29437404768b8766dc7a42dc26293b83cfb7f69ef6ac9a068ed
MD5 b078f6a60ee9c1153bcb4acb7fb33d13
BLAKE2b-256 ca27e23cce2d502c01da6f27b678e659bdb75e5b7962e5505df9454afdea06ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2fd3e51ef7a62c0bcb97bfa361d362629d7e80d9da2c29e503749ea9d45be93e
MD5 eab628b2107436641c54c228c0416ed4
BLAKE2b-256 3876e117b0907336266656452f8a0c9817e7d92f88a0f1e9d0c344c48f22c707

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 febabd7c1abb83524a7420905c22c532485df73a86fa92d49188dbaad8e9fc5d
MD5 82ecbaa1ae6760f301469f970f0d0de3
BLAKE2b-256 ddff441517644cc0320c453ea85af56f2359e5456ab143ca908e32d390a302fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6016935e15bc6bd6ba105bd98bef6075bf77f70d7fe0e0481ff89a7d44659b7f
MD5 fac1e36fbc8f32ce808c239076d0538f
BLAKE2b-256 846df567beca579603d7989309b148acdfece83147e41505eb5724152bbf0d6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 034aa6266cf7c0d23df23222ae642161076a5942ee905c783fa1114321fd431b
MD5 c91a1a6c8078a355d6229431571bd163
BLAKE2b-256 8f1febd0b547aefa8a26bb294a607fd9033ec200129806b3ee7b21ee5ab13cc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.11-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.11-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d5865dd5a0ace311782075aacc0f9eac7c02ca3e9a036a0432ad8853c725abd
MD5 925d2754cfb4bdcbfb6478d5dc9fdae3
BLAKE2b-256 becba4029d42f00cf80307fd5cd103d1005872f99839ed9762b0b549f2f509b5

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