Skip to main content

A sandboxed bash interpreter for AI agents

Project description

Bashkit

PyPI

Sandboxed bash interpreter for Python. Native bindings to the bashkit Rust core for fast, in-process execution with a virtual filesystem.

Features

  • Sandboxed execution in-process, without containers or subprocess orchestration
  • Full bash syntax: variables, pipelines, redirects, loops, functions, and arrays
  • 160 built-in commands including grep, sed, awk, jq, curl, and find
  • Persistent interpreter state across calls, including variables, cwd, and VFS contents
  • Direct virtual filesystem APIs, constructor mounts, and live host mounts
  • Snapshot and restore support on Bash and BashTool
  • AI integrations for LangChain, PydanticAI, and Deep Agents

Installation

pip install bashkit

# Optional integrations
pip install 'bashkit[langchain]'
pip install 'bashkit[pydantic-ai]'
pip install 'bashkit[deepagents]'

Quick Start

Sync Execution

from bashkit import Bash

bash = Bash()

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

bash.execute_sync("export APP_ENV=dev")
print(bash.execute_sync("echo $APP_ENV").stdout)  # dev

Async Execution

import asyncio
from bashkit import Bash


async def main():
    bash = Bash()

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

    await bash.execute("printf 'data\\n' > /tmp/file.txt")
    saved = await bash.execute("cat /tmp/file.txt")
    print(saved.stdout)  # data


asyncio.run(main())

Configuration

Constructor Options

from bashkit import Bash

bash = Bash(
    username="agent",
    hostname="sandbox",
    max_commands=1000,
    max_loop_iterations=10000,
    max_memory=10 * 1024 * 1024,
    timeout_seconds=30,
    python=False,
)

Live Output

from bashkit import Bash

bash = Bash()

def on_output(stdout: str, stderr: str) -> None:
    if stdout:
        print(stdout, end="", flush=True)
    if stderr:
        print(stderr, end="", flush=True)

result = bash.execute_sync(
    "for i in 1 2 3; do echo out-$i; echo err-$i >&2; done",
    on_output=on_output,
)

on_output is optional and fires during execution with chunked (stdout, stderr) pairs. Chunks are not line-aligned or exact terminal interleaving, but concatenating all callback chunks matches the final ExecResult.stdout and ExecResult.stderr. The handler must be synchronous; async def callbacks and callbacks that return awaitables are rejected.

Virtual Filesystem

Direct Methods on Bash and BashTool

from bashkit import Bash

bash = Bash()
bash.mkdir("/data", recursive=True)
bash.write_file("/data/config.json", '{"debug": true}\n')
bash.append_file("/data/config.json", '{"trace": false}\n')

print(bash.read_file("/data/config.json"))
print(bash.exists("/data/config.json"))
print(bash.ls("/data"))
print(bash.glob("/data/*.json"))

The same direct filesystem helpers are available on BashTool().

FileSystem Accessor

from bashkit import Bash

bash = Bash()
fs = bash.fs()

fs.mkdir("/data", recursive=True)
fs.write_file("/data/blob.bin", b"\x00\x01hello")
fs.copy("/data/blob.bin", "/data/backup.bin")

assert fs.read_file("/data/blob.bin") == b"\x00\x01hello"
assert fs.exists("/data/backup.bin")

Pre-Initialized Files

from bashkit import Bash

bash = Bash(files={
    "/config/static.txt": "ready\n",
    "/config/report.json": lambda: '{"ok": true}\n',
})

print(bash.execute_sync("cat /config/static.txt").stdout)
print(bash.execute_sync("cat /config/report.json").stdout)

Real Filesystem Mounts

from bashkit import Bash

bash = Bash(mounts=[
    {"host_path": "/path/to/data", "vfs_path": "/data"},
    {"host_path": "/path/to/workspace", "vfs_path": "/workspace", "writable": True},
])

print(bash.execute_sync("ls /workspace").stdout)

Live Mounts

from bashkit import Bash, FileSystem

bash = Bash()
workspace = FileSystem.real("/path/to/workspace", writable=True)

bash.mount("/workspace", workspace)
bash.execute_sync("echo 'hello' > /workspace/demo.txt")
bash.unmount("/workspace")

Error Handling

from bashkit import Bash, BashError

bash = Bash()

try:
    bash.execute_sync_or_throw("exit 42")
except BashError as err:
    print(err.exit_code)  # 42
    print(err.stderr)
    print(str(err))

Use execute_or_throw() and execute_sync_or_throw() when you want failures surfaced as exceptions instead of inspecting exit_code manually.

Cancellation

from bashkit import Bash

bash = Bash()

bash.cancel()        # abort in-flight execution (no-op if idle)
bash.clear_cancel()  # clear the sticky flag so subsequent executions work

cancel() sets a sticky flag that causes every future execute() to fail immediately with "execution cancelled". Call clear_cancel() after the cancelled execution finishes to restore the instance for reuse — this preserves all VFS state. Use reset() only when you want to discard VFS and shell state entirely.

BashTool exposes the same cancel(), clear_cancel(), and reset() methods.

Shell State

from bashkit import Bash

bash = Bash()
bash.execute_sync("mkdir -p /workspace && cd /workspace")

state = bash.shell_state()
prompt = f"{state.cwd}$ "
print(prompt)  # /workspace$

bash.execute_sync("cd /")
print(state.cwd)  # still /workspace

ShellState is a read-only snapshot for prompt rendering and inspection. It is a Python-friendly inspection view rather than a full Rust-shell mirror, and fields like env, variables, and arrays are exposed as immutable mappings. Use snapshot(exclude_filesystem=True) when you need shell-only restore bytes, or snapshot(exclude_filesystem=True, exclude_functions=True) when prompt rendering does not need function restore. Transient fields like last_exit_code and traps are captured on the snapshot, but the next top-level execute() / execute_sync() clears them before running the new command. BashTool exposes the same shell_state() method.

BashTool

BashTool wraps Bash and adds tool-contract metadata for agent frameworks:

  • name
  • short_description
  • version
  • description()
  • help()
  • system_prompt()
  • input_schema()
  • output_schema()
from bashkit import BashTool

tool = BashTool()

print(tool.description())
print(tool.input_schema())

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

Persistent Custom Builtins

Use custom_builtins={...} on Bash or BashTool when you want constructor-time Python callback builtins without giving up persistent shell/VFS state:

from bashkit import Bash
import json


def get_order(ctx):
    if not ctx.argv or ctx.argv[0] in {"help", "--help"}:
        return "usage: get-order <get|help> [args]\n"
    if ctx.argv[0] == "get" and len(ctx.argv) >= 2:
        return json.dumps(
            {"id": ctx.argv[1], "status": "shipped", "items": ["widget"]}
        ) + "\n"
    return "usage: get-order <get|help> [args]\n"


bash = Bash(custom_builtins={"get-order": get_order})

bash.execute_sync("mkdir -p /scratch && get-order get 42 > /scratch/order.json")
result = bash.execute_sync("cat /scratch/order.json | jq -r '.items[]'")
print(result.stdout)  # widget

Callbacks receive a BuiltinContext object with raw argv tokens, optional pipeline stdin, the current cwd, and visible env. They may return either the builtin stdout string directly or a BuiltinResult(stdout=..., stderr=..., exit_code=...) for explicit shell-shaped failures. Raise an exception for unexpected callback failures. Async callbacks support the same return shapes. BashTool exposes the same custom_builtins constructor kwarg and includes registered command names in help() output for LLM-facing metadata.

from bashkit import BuiltinResult


def view_image(ctx):
    if not ctx.argv:
        return BuiltinResult(stderr="view-image: missing path\n", exit_code=1)
    return BuiltinResult(stdout="")

When you use await bash.execute(...) or await bash_tool.execute(...), async callbacks are scheduled back onto the caller's active asyncio loop, so loop-bound primitives like asyncio.Event and framework-owned clients keep working. execute_sync() still supports async callbacks, but it drives them on an internal private loop and should not be called from an async endpoint.

ScriptedTool

Use ScriptedTool to register Python callbacks as bash-callable 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

ScriptedTool callbacks receive (params_dict, stdin_or_none) and must return the tool stdout string. Async callbacks are also supported. await tool.execute(...) runs async callbacks on the caller's active asyncio loop; execute_sync() falls back to a private loop because there is no caller loop to reuse.

Snapshot / Restore

from bashkit import Bash

bash = Bash(username="agent", max_commands=100)
bash.execute_sync(
    "export BUILD_ID=42; "
    "greet() { echo \"hi $1\"; }; "
    "mkdir -p /workspace && cd /workspace && echo ready > state.txt"
)

snapshot = bash.snapshot()
shell_only = bash.snapshot(exclude_filesystem=True)
prompt_only = bash.snapshot(exclude_filesystem=True, exclude_functions=True)

restored = Bash.from_snapshot(snapshot, username="agent", max_commands=100)
assert restored.execute_sync("echo $BUILD_ID").stdout.strip() == "42"
assert restored.execute_sync("greet agent").stdout.strip() == "hi agent"
assert restored.execute_sync("cat /workspace/state.txt").stdout.strip() == "ready"

restored.reset()
restored.restore_snapshot(snapshot)
assert restored.execute_sync("pwd").stdout.strip() == "/workspace"
restored.restore_snapshot(shell_only)

BashTool exposes the same snapshot(), restore_snapshot(...), and from_snapshot(...) APIs. Python callback builtins are host-side config, not serialized shell state, so pass custom_builtins= again when constructing a restored instance if you need them after snapshot restore.

Framework Integrations

LangChain

from bashkit.langchain import create_bash_tool

tool = create_bash_tool()

PydanticAI

from bashkit.pydantic_ai import create_bash_tool

tool = create_bash_tool()

Deep Agents

from bashkit.deepagents import BashkitBackend, BashkitMiddleware

API Reference

Bash

  • execute(commands: str) -> ExecResult
  • execute_sync(commands: str) -> ExecResult
  • execute_or_throw(commands: str) -> ExecResult
  • execute_sync_or_throw(commands: str) -> ExecResult
  • cancel()
  • clear_cancel()
  • reset()
  • constructor kwarg: custom_builtins={name: callback}
  • snapshot() -> bytes
  • restore_snapshot(data: bytes)
  • from_snapshot(data: bytes, **kwargs) -> Bash
  • mount(vfs_path: str, fs: FileSystem)
  • unmount(vfs_path: str)
  • Direct VFS helpers: read_file, write_file, append_file, mkdir, remove, exists, stat, read_dir, ls, glob, copy, rename, symlink, chmod, read_link

BashTool

  • All execution, cancellation (cancel(), clear_cancel()), reset, snapshot, restore, mount, and direct VFS helpers from Bash
  • constructor kwarg: custom_builtins={name: callback}
  • Tool metadata: name, short_description, version
  • description() -> str
  • help() -> str
  • system_prompt() -> str
  • input_schema() -> str
  • output_schema() -> str

ScriptedTool

  • add_tool(name, description, callback, schema=None)
  • execute(script: str) -> ExecResult
  • execute_sync(script: str) -> ExecResult
  • execute_or_throw(script: str) -> ExecResult
  • execute_sync_or_throw(script: str) -> ExecResult
  • env(key: str, value: str)
  • tool_count() -> int

FileSystem

  • mkdir(path, recursive=False)
  • write_file(path, content)
  • read_file(path) -> bytes
  • append_file(path, content)
  • exists(path) -> bool
  • remove(path, recursive=False)
  • stat(path) -> dict
  • read_dir(path) -> list
  • rename(src, dst)
  • copy(src, dst)
  • symlink(target, link)
  • chmod(path, mode)
  • read_link(path) -> str
  • FileSystem.real(host_path, writable=False) -> FileSystem

ExecResult and BashError

  • ExecResult.stdout
  • ExecResult.stderr
  • ExecResult.exit_code
  • ExecResult.error
  • ExecResult.success
  • ExecResult.to_dict()
  • BashError.exit_code
  • BashError.stderr

Platform Support

  • Linux: x86_64, aarch64 (glibc and musl wheels)
  • macOS: x86_64, aarch64
  • Windows: x86_64
  • Python: 3.9 through 3.14

How It Works

Bashkit is built on the bashkit Rust core, which implements a sandboxed bash interpreter and virtual filesystem. The Python package exposes that engine through a native extension, so commands run in-process with persistent state and resource limits, without shelling out to the host system.

Part of Everruns

Bashkit is part of the Everruns ecosystem. See the bashkit monorepo for the Rust core, the JavaScript package (@everruns/bashkit), and related tooling.

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.21.tar.gz (1.2 MB 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.21-cp314-cp314-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.14Windows x86-64

bashkit-0.1.21-cp314-cp314-musllinux_1_1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

bashkit-0.1.21-cp314-cp314-musllinux_1_1_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

bashkit-0.1.21-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

bashkit-0.1.21-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

bashkit-0.1.21-cp314-cp314-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bashkit-0.1.21-cp314-cp314-macosx_10_12_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

bashkit-0.1.21-cp313-cp313-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.13Windows x86-64

bashkit-0.1.21-cp313-cp313-musllinux_1_1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

bashkit-0.1.21-cp313-cp313-musllinux_1_1_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

bashkit-0.1.21-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bashkit-0.1.21-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

bashkit-0.1.21-cp313-cp313-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bashkit-0.1.21-cp313-cp313-macosx_10_12_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

bashkit-0.1.21-cp312-cp312-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.12Windows x86-64

bashkit-0.1.21-cp312-cp312-musllinux_1_1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

bashkit-0.1.21-cp312-cp312-musllinux_1_1_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

bashkit-0.1.21-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bashkit-0.1.21-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bashkit-0.1.21-cp312-cp312-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bashkit-0.1.21-cp312-cp312-macosx_10_12_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

bashkit-0.1.21-cp311-cp311-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.11Windows x86-64

bashkit-0.1.21-cp311-cp311-musllinux_1_1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

bashkit-0.1.21-cp311-cp311-musllinux_1_1_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

bashkit-0.1.21-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bashkit-0.1.21-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bashkit-0.1.21-cp311-cp311-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bashkit-0.1.21-cp311-cp311-macosx_10_12_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

bashkit-0.1.21-cp310-cp310-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.10Windows x86-64

bashkit-0.1.21-cp310-cp310-musllinux_1_1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

bashkit-0.1.21-cp310-cp310-musllinux_1_1_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

bashkit-0.1.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bashkit-0.1.21-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bashkit-0.1.21-cp310-cp310-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bashkit-0.1.21-cp310-cp310-macosx_10_12_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

bashkit-0.1.21-cp39-cp39-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.9Windows x86-64

bashkit-0.1.21-cp39-cp39-musllinux_1_1_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

bashkit-0.1.21-cp39-cp39-musllinux_1_1_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

bashkit-0.1.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bashkit-0.1.21-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bashkit-0.1.21-cp39-cp39-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bashkit-0.1.21-cp39-cp39-macosx_10_12_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: bashkit-0.1.21.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21.tar.gz
Algorithm Hash digest
SHA256 806aa7325e0657cc0e8751154b25fe100d9045121aab87f6c4c4003fb00c157c
MD5 d0bd61a98b2b6f18f846538ee1a6a4b8
BLAKE2b-256 2a5190e4477de43d1d519b600ccb065a4460f626d3687f5ba93e2d68cd35a59d

See more details on using hashes here.

File details

Details for the file bashkit-0.1.21-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bashkit-0.1.21-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5651173a6c52347a927ede43f04956540a35a9ce7ff93818514ad9055cc642e2
MD5 5c6106a3e470f2b40b9c3604e9960d70
BLAKE2b-256 5deabd573c0dc375a647580ac8f52ecc220a615968d8813e20fbede5db62b5c2

See more details on using hashes here.

File details

Details for the file bashkit-0.1.21-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.21-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c9410eabb37a8846136171f965e96c0eecd96389b3da9e26f0a373705c51ac3d
MD5 d4d7533e616c938ae8fd85380b8cf663
BLAKE2b-256 0690d037073cf67f37fc348a42ed8813c70ef9e9e0613d0f1a3452e0df26595e

See more details on using hashes here.

File details

Details for the file bashkit-0.1.21-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: bashkit-0.1.21-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6c558b75e54f6dee70bd953c45d65f750cde6d7f39c7f225444d7e502abed97c
MD5 6ee74f9e4e9ecc9d991c5693c12bd576
BLAKE2b-256 237914b440602854ab8f55a5cf6ebb4986d2b172fe02807eb9041b43b1a60354

See more details on using hashes here.

File details

Details for the file bashkit-0.1.21-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.21-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dac1b4ce3bd687ebc40f40c9e14ee621d1a860196ddd2bda09e84210aae7dbc4
MD5 372999834bc1d33e5286c6577c02c574
BLAKE2b-256 3d16991deffc5c17dbb2b96742f4f9e3dcdef8f7c589dd83cce1e2ce88c71506

See more details on using hashes here.

File details

Details for the file bashkit-0.1.21-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: bashkit-0.1.21-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 949a1550cb233b2304e71119a6f2b6c03de9497f93c92d4709e5c84b116e4599
MD5 45e765fa7aa0dfc277963e4da1d2a735
BLAKE2b-256 8fdfe1ff341bda3a93e5e96f7c1517dc1c56d12789c5436b33649689957786ac

See more details on using hashes here.

File details

Details for the file bashkit-0.1.21-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: bashkit-0.1.21-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5773aba4bb61ffae8a7117eae2403bb53447d4e3a37c72f270de02045890b2c1
MD5 76e1b1dfd2c6d908493e81e2ef8d2ae0
BLAKE2b-256 e7712a77136d3da417b35e6355d9414324c66ec8f800526d3976c726eb62cb60

See more details on using hashes here.

File details

Details for the file bashkit-0.1.21-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: bashkit-0.1.21-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84d1ca22b9358ec717b085febe32011b626c98361110b1527d799b859a3aa339
MD5 4f6f16e5ed5a03657af6a0a30a3596bd
BLAKE2b-256 e63f33397751bf5bf156b2372e402236120d7cc061fd6383df2a8e69df76d56a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 68dfdff72bff78a58c105ae114bd4294bee55b0e2e1319e3f076013d0c985e87
MD5 47c17a83134fa038544c69356501dc11
BLAKE2b-256 04ed5d095023b0bba7b21e4bc050b61cef29d55d26789e26c4e6f94e4b792b35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b01dfc576ca1b7efcda468f284a1d23c48d86ec70c7020377a6d98ce9c8eb631
MD5 9ed823a84a4672d91d68ef1ab455ae83
BLAKE2b-256 7187d227435652199e88fa3ce5ca51a93d263f518b1e652463085373fefe9a45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3196a732f3fd06ec2525d664356aa06efeeb262b0ee90df97db72a1d5f23e31c
MD5 9b946739b5323cbf27baf18a6d5450cd
BLAKE2b-256 2435a60218353a68fe0c862523b8d86aeb1b2cee5ae93b2fe484ab900411a2f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81e5827a38cda28b04d928d2199ea967bcc3c006fd680e5f43542b210f30e2c4
MD5 0084bb3c63b364e1b0573e6bcedd8593
BLAKE2b-256 1a9d5c5b4c066aedc0f1ea060a9544e9fb5836e73106f49261f779601f82823c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70cc2b58a70b4a12b58a3d244fd8f326007f60d4c16a93e2e890f7648061accd
MD5 c06e71e2229e2b226ef82ad3bc78cddd
BLAKE2b-256 de2b1cce113d6275d05e0676f4d96e2b8ec08152ff158e81e082dae91a39a566

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e987315efa836c9af9ff17adc7b441bdbb3ad83da394984350f446f7f18563c
MD5 f0526bc567a277f5a8f9085176334fff
BLAKE2b-256 af63a41d84f4c95d66418df2529d37b703c23578098b0e787031da9a1a2ab524

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79b99adc544a711081df5025beb5b16092f6ee1e32618ba1e844012b40399b60
MD5 f00d294253c1624ec851f9a9d8072840
BLAKE2b-256 325841cabacc73c46a0074d65b30f060364bb6f133d2b1412f321048ec795dc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 67ead02198af59bb89416576ca9c2e16c67e67e828d19d56b0988cc1dc352497
MD5 915a7f5e58e16dcb3a565fe1bfcf5094
BLAKE2b-256 51d5b79edb706c5f1594834fd541bfb8d95bd1ac5c09215489d7c802773683d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f0f12003913c7a0daec512dcc91a82d6bf70059fd99e6b84bbd37ed9db77e30a
MD5 f11ec388e6b62a3beec0473324fc5cee
BLAKE2b-256 f670449a0b6a20ca10166ce93a0295eef8241626fb3629257667a0eb0d8c5acd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ea25d8f502a7a22b9030c4593a181985226bb3d456410cf2ae68dd642e378acc
MD5 fd35b4073572f0ce7a4daf3f682056e9
BLAKE2b-256 9a2cd02939580fcce42da142f9a20b7aa7fe330c5bcc15afa045e506080b9ad3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65cf1e53448dd84530786723d11bf622f065b33c5b2699d0945f3e0b012f3b54
MD5 35ce1b72ae1ff79521594fbc951167c3
BLAKE2b-256 998ad0e3ae56263f807181464ea4f902e601e7d257904b9ce8fff51cd56e0f89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 726840458f04ebf8a8ba6717241588d726cabb3cc013b1474a964ab058327a74
MD5 cfbf9b790d0116332bdfd5a9c819c4a0
BLAKE2b-256 86b4695907737f0b87255a27220fa5ad2692cc2d83ee8c4a8e30b500ded50aa7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbd84fdafdd06c9df5939bd8ed75f0bc2dd6d51d43d67adc7b74c94fdcb19dca
MD5 628a7480fa783bf46fad5ac7ca9be4af
BLAKE2b-256 8b84ca03e901135041b5f8100fe9bfb1f8f95cc6d4aab682f8dbfa1aa9f00a89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 75bc94f993fa50126145e887d26d05baea3e77d3c815adf7173464bae92be6c0
MD5 95596c7a43691aad42ca9f6c21be18b5
BLAKE2b-256 738fbc01d6057ecb0d650553c457cbed0838a87d08fa0da10b162ffe29bb3f58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ed46b4f87d3857f4ca66b3d84653681dd8df43d47112f2362e136d519e75a2c7
MD5 bfbefb47e3a421f28345512599cc515c
BLAKE2b-256 22754f3c0bddd92fb337748e77889aa403f759ab69ed4f417bcc51eea8855d65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3de9896cf3b53b77707fb2859759b9ec70316f6d2a8111294c79da3420ba3505
MD5 7f9d04ad36018bd0be6dc927113bcf51
BLAKE2b-256 ea1910cd02078374f31ff03669a0355514557dc2f302ef764b4eb4674022374a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 461bc5013bf7c528e6ae88a12be13494329880a6511b5e666253adf360db306a
MD5 f9c9b930004144aa26dac1f17556f174
BLAKE2b-256 721938697a87550de72a24e3c7c9526dd4e1e174ec24bf3433c3ff4112058c88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c768250e37226923a6e87573719e926d989ce4e998ed1c67f2f4cfbaf293759b
MD5 fd388e50155ab3ffe48597ccbf66c709
BLAKE2b-256 5544e33857c89af4a3e6adb094d9dc08b6ceede40a25c6dac5d7aade68bbbc8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c792687d526c08e046a70fa0439b705c62db8f961b93ec0aaac8f78546831e6b
MD5 fff7c41ad5019096d7708306c79126b4
BLAKE2b-256 e9929a35bc6206aba286f8fed0368b303f22c12c407c87eda8561462c6b7650b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e2917f689be1a4376a8efea48c1beda8354b7311bdb7be87a7cbcabddc00a67
MD5 b234ccdb79d66b27b444034220539159
BLAKE2b-256 7399affc6621fffc2c3126ef1044d3a08b38a728470a38d2f3200cbc2198a4cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92d637fd909421b2180ac255eddbeef67d6362e514c57661666f948b368d7255
MD5 05844ef8ecc3434751a6f9ab407319fc
BLAKE2b-256 02b0626c23000955d398e617e1f221025dcc70d7be96fecbc19f63b42d9b511f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 caf84d51103368b87d2f627097257067467209d544b6e0797be4389273ba18bf
MD5 215bd1f53797ad6fd24f172ce454c4e6
BLAKE2b-256 fd5235c38924da45de5337b636a41692dee61e569185c01601ab9ef3ec143518

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 18426e106e499b761485ad5379d628330516b4d24b65536e0c5b3e951e47d073
MD5 345fd66b178d613c16c78b96e071c1bd
BLAKE2b-256 d952b16dc537e6c8b99367f4ae2b2c1775fdeb57bc8d9c9ea7f41b1a8a0c3ac5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8f4477a26a7fd443ec3f1b1f44a095e72ed5ea1d032137208984bd6d93f24ddb
MD5 60796940efbfd04bc5785de53d178a70
BLAKE2b-256 0a926382c52e5157fafb581b2a6eea18c13391915fd0590abb741c705f004406

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 145ba968cd1a13827aea432d1d7a17ca53a80d25e5768a70bbbf9b7024dc80d3
MD5 8f912aaa8fe91eeaec41fef248c29f02
BLAKE2b-256 230d6f1bd4005a81b6f0883bc50391fce291d59137a29da00f98bac1aed15bd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fd0ad60d783512ed84ea07f8bd48bce45ac7276879529fdc0b6bfcb2a59c429
MD5 a36ff08ffbf704efd83d5a24cbfedcca
BLAKE2b-256 0ada405be45bf4a28232195c161ee09c395b736968feb314f856c6a116f7e52a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e695f0b2d0f7eaeedce4386c4b0b1779be6e9c50d28376013da00bb28262026a
MD5 22ce08b6ec579cddced11379b2c0edec
BLAKE2b-256 843f9a8dbeddbc8f25123780605b6cee352962d994d0d11b27aff6bddbcf2fc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69fb1a7ea0433ad76b03fa9e0c0c6eb79a9afe3062939566577797bf7cc810a7
MD5 2577e3b86206ddc6c34650c5374bffbb
BLAKE2b-256 85372656c7605eb42862514b58459c7458a3ecd088a706f5c6653e75805a446e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 6.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6bf12f0aeda35fccebcef4eed87c4b6f5e32398ed7fca15f5132e8fc26938b9a
MD5 caf14551c2367a02f51a6b4378ae947f
BLAKE2b-256 6f637ac408ed95b5725909527df0498c83ddd1f4d900592bffa20d066c90c4a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 175547416127816f1689b46e86a04587c083b006a5dbb1e97de5bd29bfd13ec0
MD5 e9676856022dd5b4b770edd4ba9356b4
BLAKE2b-256 2770cd6cddd2ecc0c3d0919757100d4fff7d7632b05911fe3b9832952b3ffca6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d42dcbcc6f535c4a33bf016c779851472ce806f95ece839b4cbf4c03d346da99
MD5 fe98dc3ab2c78f3d461a56251b070aa5
BLAKE2b-256 8ccb0108de98e24b2b19408ad99d9dfa9abfbac68cae209cb85acb6aa3b8bbbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0d69b7e4e655173189102f1a080a90cc982a717b7d160d130731780d54d46bf
MD5 8802cf6397e7e2a6766ea0fa31c05fe1
BLAKE2b-256 b28e62d9c47c33c9130588950de9f7d71ae980779ecacb6caa78c7ceb919c68f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fcc70a8e68a8f582d5ef79f6c26611c378c2a7337d0e6ecb0c30130973d6ea8
MD5 d4b1103970a342ccf9674ba29661ecb7
BLAKE2b-256 3155e4b55c0593d8828201990360d34569dfadb9bd189e80ad2c6acddbecfc6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13665d5f73c0a2977ed597ab76111aee94952551766b37f8ad644e8ed992bd00
MD5 9c8388bcb4ae3580de6e645279a62544
BLAKE2b-256 e67e8e0fd237c70bfc2134d34294dbae46536bc788e8b1e2ef234e066e4776c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.1.21-cp39-cp39-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.9, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","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.21-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1b6b27a1d270f6f38e33aaab9f513bc05bc56901dc6134cdcc34859510c70f1f
MD5 2d625f5f43a427535140b845ff6fb3c8
BLAKE2b-256 9d41a47bd7b02a497f9274ca3ca44ac68ce41760f933c510a11490eaf7b7d387

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