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
  • 100+ 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
  • 100+ 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.10.tar.gz (774.2 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.10-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

bashkit-0.1.10-cp313-cp313-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

bashkit-0.1.10-cp313-cp313-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

bashkit-0.1.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bashkit-0.1.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

bashkit-0.1.10-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bashkit-0.1.10-cp313-cp313-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

bashkit-0.1.10-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

bashkit-0.1.10-cp312-cp312-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

bashkit-0.1.10-cp312-cp312-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

bashkit-0.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bashkit-0.1.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bashkit-0.1.10-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bashkit-0.1.10-cp312-cp312-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

bashkit-0.1.10-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

bashkit-0.1.10-cp311-cp311-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

bashkit-0.1.10-cp311-cp311-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

bashkit-0.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bashkit-0.1.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bashkit-0.1.10-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bashkit-0.1.10-cp311-cp311-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

bashkit-0.1.10-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

bashkit-0.1.10-cp310-cp310-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

bashkit-0.1.10-cp310-cp310-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

bashkit-0.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bashkit-0.1.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bashkit-0.1.10-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bashkit-0.1.10-cp310-cp310-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

bashkit-0.1.10-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

bashkit-0.1.10-cp39-cp39-musllinux_1_1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

bashkit-0.1.10-cp39-cp39-musllinux_1_1_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

bashkit-0.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bashkit-0.1.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bashkit-0.1.10-cp39-cp39-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bashkit-0.1.10-cp39-cp39-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: bashkit-0.1.10.tar.gz
  • Upload date:
  • Size: 774.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10.tar.gz
Algorithm Hash digest
SHA256 fee7015ec66cb62c0847a648e7d2224d47529a2b78169d8ff490611b7097043a
MD5 e7b6df26e784fc88dc05492f54b521d4
BLAKE2b-256 8a199cbe5272c680cb0a17be6e93be2e391eee0bb0c995c58223c73b9da78676

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d67bc6795b0dcd359c99745754c9de5f98e52a53c9cf02dcdf366b946d4b5c36
MD5 a45369239fcd1014e2babe79126b2f4b
BLAKE2b-256 d451fcd663399fdb83555cde3b946a8b65c198072e3a0d8fe974ff966f5ed7b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 122c263c828abf3f25177a1b4e480362cf75b981fd5acf1477fbb94af9912d2e
MD5 73cf0097d60f495ffe16232d50422227
BLAKE2b-256 3e1f4c46d1f67ce27ff4a2fc367ba36f1394c68e41ccd30cf53d4761bfa9edb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d5f9ac36b7c321254016905102d9339ec731ce210877cb2b1bcccd898681aa1c
MD5 38bb31eb3017d9ece9736efdbbb5a6c1
BLAKE2b-256 306bc46013abf7abb1991cecb34cd349df4ad9e58c5d691d9c13e0c0f1000297

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7abfb86a137538aa0674eb7ff6ffbcb7e92a4eb6e8a5089bbc659dfdd37c153
MD5 e869cc4ec1c77fe3d4952f6d993b0c3d
BLAKE2b-256 1c27f7a141231c6c981e662e60a5510db03bee6d9d20074c70d05ea7a82f45f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21bc44a92e7d6c90a69f218ad96b09864d42dd86e61b37fa588a74514898c31d
MD5 707a816c95542f1b79c9744382abf19a
BLAKE2b-256 950d3a7c43bee8e7f3e33c8d6602507639af67369d2496317cbd59bb003b6659

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d6ee5a003bcef307ab9c6d7901d5219e121bbf2c2ef3800954c111683af14db
MD5 5739b4643198b33e8db7452a4774da7b
BLAKE2b-256 fea5cced9545c92c859ba864f6e69f034371fd6d64bb63aa016395c6d81caa01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f5fc96ec677debea8469f4751ecd2c641af313f5eb96a4d6eda731ea00447f9
MD5 33ef2d7e6d553ad325751ede46396f95
BLAKE2b-256 9c91343a74edeb431f4888651a8690614c9b45fe67c40788aece5113703722d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef3298004d101bc5c1f2a44a39f8ad95596f9726e1f36c186fc9b3a80a96fb63
MD5 39b2c4b85dc7158de547090ef6a43721
BLAKE2b-256 66c4a555f1a8c30cd2dfbf2088b03f92957bbe14f356a7fad979dbcc4a0f01cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0361c4d3fd9ec2107254e6be98591637640ce3b566448609dd343ef98b400a69
MD5 1d0b47e4a41de516765abca5782e8fc6
BLAKE2b-256 c98a92446d9710f7b01f4916e90cbab58b11035ce0e1fc09e0eda97bc03c46b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d136d94ec58a79423e387ce1160096a68628b90cbcb3f9929d312de1d71d08b9
MD5 5310cfb36689eab64de420a3beb48ba8
BLAKE2b-256 5e1f290eed05eff7d72c6a31b2b9bc252f24513e1b0a0177c763ed93faaf750c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3297c9d74db35e186b68ab2a473262e883222bef3495da7237303d13a34b5da
MD5 068911a667adf6cc84493aff8b0cb4cc
BLAKE2b-256 d43f364c51bf30c62c5e1f580d3d261e48dda6cb459b6f886872df7a70e2365f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a9bbbb463ac1155f47801d78a841450da39799c53047ed529afad234688fe27
MD5 f8a231f3edf9683cc3d5071ba79252f2
BLAKE2b-256 460d8497913545cc4056271b0e082f80d7ac973b5e6569fcc9c70cf08dbd5487

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 651c45b7259327ab51b64e038d6c8768766313e48c3420ccd9aef080f1d6c684
MD5 ffeff2235bf441003a467c625f512bd5
BLAKE2b-256 c4d54aab613c6b2994112d794ad749525e5f791a127e9cbcb9df833bb5b32fea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 162823fc61e2e5f173378bd1f5055dbd6faedb6e490a30790f58fcce49d86d46
MD5 4cbd50a14596b3d81d55de5d0d74bb44
BLAKE2b-256 f1cf5dc3e51d243d184965a9fe4b72a41d850e34f23a1ac9f4be5553a2d2c0a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 793ef3938ab81bd370197ce235ee266e9d750b2ee9974a390e79441011952c4a
MD5 5413bbbacc3e1932a0d33d00604f4ca4
BLAKE2b-256 d7532b644e7155f3d5a956c542bc4f161b585837c7cbd6da7e0a6e519dab46cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f2ab574ce732c08084d0e4f1a8fe287b74fc01fc1d7139cd9a9f813be49f30e9
MD5 edae2319004538609ef556253e1daaec
BLAKE2b-256 c29d75f6447609cf038211f2294d2604af92d5b54bf7a38bf9295c5e34298b95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7cd51ddcf73a1ed5f825373ff041fb0a498b4c0145f2d3a132a761f968ae26b4
MD5 b8e8aadbfbadfc9d28dce41738b70375
BLAKE2b-256 3561b3b2aa3122b452ac4acff3f260b9f459cc26908c15c64077fe07dcdcf565

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07d5c940f8b9f034171f835ff326d884aff19c7058df3e96b11eb506cee6141b
MD5 b4bfba1e4b7eec482c7cfd7e1355855a
BLAKE2b-256 4fe6721d4c60d0e6507c480fb17dfb394d8241c09f2efad7f9a30854be6e331b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de41d2f5c7572881de6634b5702bce479e20bcf102749e0de8df40ec84d8598d
MD5 4dd37e6b38c459c0ba1dab8a470f8b21
BLAKE2b-256 0c19da8f3e0f054c701dd2333c43155a6383ec7da20be339ca3c859b2eaf7f93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f1b269cb74ab00b2d5396abdbd955082d3f263229b2c3f80c0ab2bedbf1bd9e
MD5 5096e4e39b734064a52ce2ec5ce923be
BLAKE2b-256 9b849096cfe255d333f1a9e0407139a3b9ec42f9c3b8fe7e45a56a4168390182

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 309ac677d347228d7b31b14b74bacc2f60c8f64c30f776865de6ace9916bb369
MD5 392249d9dfacc02e6019c65754b629dc
BLAKE2b-256 fc9e436f8ce3a11f0c4226f555476f3eaca6e3deac1e7bd5dbbee2fd4ca5a84b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3d47be577afb6b051cf7693ca4d72005463ce15801d7fafdccd65396de2cdaa9
MD5 33d53aff22043f3876384df097898299
BLAKE2b-256 064cf40b9c7ea7636d8e650169882c1223e798425276221782e0eea32a00523e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c2ae229f645986b92143e4236c5e1b33e560ba26351d25b6e92b83ed472bf15e
MD5 11cedf4682d7363bcc200883868c2384
BLAKE2b-256 97e1b903a6d3dc77d6463c52bcfcf6cced868e216a35b3093794e55a2c0b309c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ae9a17e7bb5372ccda94958b402f974cd77601e3771ff0db5b8d9648b408de58
MD5 9d46ad1ea0865c1a374e47b8c0caf096
BLAKE2b-256 3c8cbf750fe8a556ca10fdd976db02b74f36beeb8803f8e2e652953610967aad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f2390e42b39da0fdc5cc644b4ff5e46162180f4be3aaaf3db82a821b08ff6f3
MD5 b2dfbe58ba08c61aa1d9d8a03b37c5ac
BLAKE2b-256 6329fe329e9fa33ad79a0ae81bb73b39282310008bafcdaf4921fd0d6bdfe15a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3142b1a883785410f196a12ca092f4dceeb2e694af1f6559aa078e9ccdaab07
MD5 26dacea1d11eca04487e82a54575bd1c
BLAKE2b-256 daccdb2712398d46723fb685067406bb81a1aeec712d760cd33b1d3bc8551a46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e868be5f42e30b7cee6443334dd0b53ff86d45b375dd4d4f6def9f25b156882f
MD5 ee83b2223c15e7ca1ee931afd868fdb7
BLAKE2b-256 22ff6b6c5ec3378b38ff138177d4b9f3441be1fa05675ccd941ac8d4a84831a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0ed7a9a314d1e5b3d8b9b901c167c0f6a19089a2733f28b8ec56ac5184bec44e
MD5 9acdf6cc9b0b59cecdb66cdc6eb5b4cc
BLAKE2b-256 9d124478864975ffac31ab65a51d139906407212bb7780d2ff6b42b52d7ca581

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f631114257876ec200eacb38622f3b675ee063bd48d1072956ca085817fca846
MD5 9d83c128e44c6bcbbab78d9573003f3c
BLAKE2b-256 2360e02028418df5e2017fcd408902a1d449b158a2edbd68f8274861ef00aeb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a5ab367ebb4d58cd17de7b072fe4242ecd0d5c2d9487cd7bc46b1ebcc2e7bde4
MD5 335aaadd464d1817a0789bb5a3456f40
BLAKE2b-256 947d1cf99ea23597c2f42a7709796995e1e5c8272e2fda010dc8a82274db2f80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 72e2bef2283f7c17f143c5c52f649a1f8f17a7659b120edbba63c161c959bba7
MD5 23ca4705e70018d4ff4a9de75faa587c
BLAKE2b-256 ad2d710c46602c6ebcee134d9f6b3d8e86cf9ed7d69995ac984f5821bacdc64b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dd261a2a63857c3146644f9432375b455d4f6617cc5e993bcf25c673a8ec0a4
MD5 968c1c2a47afed7a1f8b0af667228bf9
BLAKE2b-256 54247c864bf8fcf5e9e84516564d9812486210b86b4feae2fda85801213b1ed7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe1deaa8492041838c509bd1aad0abcfe7314dfcb9d8f34c64c2eef37475f968
MD5 974715021f16fa67eb085d949e15d7cd
BLAKE2b-256 1c77e68355b1ede99c5f758e1779c6a5225d5c97ddc82010567e656ade696d29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 502c3173f2a5c8fae001fbfa3299e08c7fd5b0c9b260a772bf93cde83a8546ec
MD5 abf56c1839e62d75be80844616226b02
BLAKE2b-256 76ac73025004f5c5fdbddff6143df296c9e2089f53248b890c6982f17c545dfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.10-cp39-cp39-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.10 {"installer":{"name":"uv","version":"0.10.10","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.10-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aefcb4a56764eabffe780fd7551cbd50c0f02b0b0b6a7302bab2311a950d57d7
MD5 40d1fdc8f6f2f0e04fbabcee8d1eae6f
BLAKE2b-256 773833dace6761670bc606dd031cd31b0e65dab362e43375d445029430996042

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