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.

Homepage: bashkit.sh

Features

  • Sandboxed execution in-process, without containers or subprocess orchestration
  • Full bash syntax: variables, pipelines, redirects, loops, functions, and arrays
  • 156 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")

Native Extension Interop

from bashkit import Bash, FileSystem

source = FileSystem()
source.write_file("/org/repo/README.md", b"hello\n")

capsule = source.to_capsule()
imported = FileSystem.from_capsule(capsule)

bash = Bash()
bash.mount("/workspace", imported)
print(bash.execute_sync("cat /workspace/org/repo/README.md").stdout)

to_capsule() / from_capsule() exchange a versioned stable ABI handle so separate PyO3 extensions do not need to share bashkit's internal Rust object layout. Native extensions should depend on bashkit with the interop feature and use bashkit::interop::fs.

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")

Network Access

curl, wget, and http are gated behind an explicit allowlist. Without a network= kwarg outbound HTTP is disabled (the secure default). Pass an explicit allowlist or allow_all=True to opt in:

from bashkit import Bash

# Per-host allowlist - all other URLs are blocked.
bash = Bash(network={"allow": ["https://api.github.com", "https://api.openai.com/v1"]})

# Allow every URL (mirrors NetworkAllowlist::allow_all() in the Rust core).
trusted = Bash(network={"allow_all": True})

# Disable the SSRF guard if you legitimately need to reach a private IP.
local = Bash(network={"allow": ["http://127.0.0.1:8080"], "block_private_ips": False})

network= is also accepted by BashTool(...) and persists across reset() and from_snapshot(...). An explicit network={"allow": []} blocks every URL but is distinct from omitting network= entirely.

Credential injection

Inject per-host credentials transparently so scripts never see the real secret. Two modes are supported (mirroring the Rust BashBuilder::credential and BashBuilder::credential_placeholder APIs):

from bashkit import Bash

bash = Bash(
    network={
        "allow": ["https://api.github.com", "https://api.openai.com/v1"],
        # Direct injection — script has no knowledge of the credential.
        "credentials": [
            {
                "pattern": "https://api.github.com",
                "kind": "bearer",
                "token": "ghp_xxx",
            },
        ],
        # Placeholder mode — script sees an opaque placeholder via env var.
        "credential_placeholders": [
            {
                "env": "OPENAI_API_KEY",
                "pattern": "https://api.openai.com",
                "kind": "bearer",
                "token": "sk-real-key",
            },
        ],
    },
)
# Scripts can: curl -s https://api.github.com/repos/foo/bar
#   → Authorization: Bearer ghp_xxx is added on the wire.
# Scripts can: curl -s -H "Authorization: Bearer $OPENAI_API_KEY" \
#                   https://api.openai.com/v1/chat
#   → the placeholder is replaced with sk-real-key on the wire.

Each credential dict accepts kind: "bearer" (token), kind: "header" (name, value), or kind: "headers" (a list of (name, value) pairs). Injected headers overwrite script-provided headers with the same name to prevent credential spoofing. Phase 2 of #1348 covers the credential surface; request callbacks and bot-auth ship in follow-ups.

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(
    mounts=[
        {
            "host_path": "/path/to/docs",
            "vfs_path": "/docs",
            "writable": False,
        }
    ],
    allowed_mount_paths=["/path/to/docs"],
    readonly_filesystem=True,
    max_output_length=8_000,
)

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
  • constructor kwarg: network={"allow": [...], "block_private_ips": True} or network={"allow_all": True}, optionally with credentials=[...] and credential_placeholders=[...]
  • 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
  • FileSystem.from_capsule(capsule) -> FileSystem
  • FileSystem.to_capsule() -> object

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.7.1.tar.gz (1.5 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.7.1-cp314-cp314-win_amd64.whl (12.7 MB view details)

Uploaded CPython 3.14Windows x86-64

bashkit-0.7.1-cp314-cp314-musllinux_1_1_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

bashkit-0.7.1-cp314-cp314-musllinux_1_1_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

bashkit-0.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

bashkit-0.7.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

bashkit-0.7.1-cp314-cp314-macosx_11_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bashkit-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

bashkit-0.7.1-cp313-cp313-win_amd64.whl (12.7 MB view details)

Uploaded CPython 3.13Windows x86-64

bashkit-0.7.1-cp313-cp313-musllinux_1_1_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

bashkit-0.7.1-cp313-cp313-musllinux_1_1_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

bashkit-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bashkit-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

bashkit-0.7.1-cp313-cp313-macosx_11_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bashkit-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

bashkit-0.7.1-cp312-cp312-win_amd64.whl (12.7 MB view details)

Uploaded CPython 3.12Windows x86-64

bashkit-0.7.1-cp312-cp312-musllinux_1_1_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

bashkit-0.7.1-cp312-cp312-musllinux_1_1_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

bashkit-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bashkit-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bashkit-0.7.1-cp312-cp312-macosx_11_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bashkit-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

bashkit-0.7.1-cp311-cp311-win_amd64.whl (12.7 MB view details)

Uploaded CPython 3.11Windows x86-64

bashkit-0.7.1-cp311-cp311-musllinux_1_1_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

bashkit-0.7.1-cp311-cp311-musllinux_1_1_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

bashkit-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bashkit-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bashkit-0.7.1-cp311-cp311-macosx_11_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bashkit-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

bashkit-0.7.1-cp310-cp310-win_amd64.whl (12.7 MB view details)

Uploaded CPython 3.10Windows x86-64

bashkit-0.7.1-cp310-cp310-musllinux_1_1_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

bashkit-0.7.1-cp310-cp310-musllinux_1_1_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

bashkit-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bashkit-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bashkit-0.7.1-cp310-cp310-macosx_11_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bashkit-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

bashkit-0.7.1-cp39-cp39-win_amd64.whl (12.7 MB view details)

Uploaded CPython 3.9Windows x86-64

bashkit-0.7.1-cp39-cp39-musllinux_1_1_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

bashkit-0.7.1-cp39-cp39-musllinux_1_1_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

bashkit-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bashkit-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bashkit-0.7.1-cp39-cp39-macosx_11_0_arm64.whl (10.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bashkit-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: bashkit-0.7.1.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1.tar.gz
Algorithm Hash digest
SHA256 f04d4222a0b8244077a4fdbfefe02d672578300d1bac43d8f4369bee7c767239
MD5 049ef2aca70b0df6bbb43b040e9bf8aa
BLAKE2b-256 c05f3dec54cfc3740eb9767de39f7623c208675426c12a48378684815061f932

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4bb275c213babcacfeb4c4206beeb28bed54b071e51a8979d6819e076a4237c8
MD5 d046552808d4be44fec80250da955c25
BLAKE2b-256 7ddb400360c5b99159b5c179bb953416ba12401738704a462c0abe3a95782cd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 36d686ca4eda72984da18d478fcd2642e8d7dabf5e33d5ed1679a2de6c442bc4
MD5 5c25a5be574a780e134134cf6df67f99
BLAKE2b-256 eb5e9b40d82eefbaa00271ae6cac9e8d20b85cc2b0ee06aed9fcf95f12e88a1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7b8b35ec94d4aa8b3031b0c8b1c02a3b7218cfdead65d2a295c72220047abf00
MD5 62e3feb3c70efc09b76a2e0d8396c5aa
BLAKE2b-256 33a4e2729c6cce086f4a961e1793b12df5fe315839106f222cc6c5d964ad720f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 12.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fdca631266f1d9b48a9f44c4faa899cd0a1b968f294f3ebfc48b39aa13296e1
MD5 c4272e2555cea5350353226edad45aff
BLAKE2b-256 b5776e4c3babd39309ba7d882073ca6cdbeef67c5fe611b79a5a1a3f4b7cab37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f193f64527dd0ee22115b1a309a243449c201dfb83607ddc98f6fdba99ae2c5
MD5 582d6e5a5e17102b5082af0e167486a7
BLAKE2b-256 8a08c46cfe2be2ffca2a5de0fa3d493eb6415a709211a4cf2b6f7cc00aca5171

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d7ce290b10b561a704a886f1d4b8ee5d80dcaac2226c87ee909566e06a63b37
MD5 dd4345e57f2c57166522c6389437afd8
BLAKE2b-256 383987781ce13006a537e4e7e8273e65410cd5ca22d68ef44bb464fc4bc29de4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 afece667a1bdc4be28e3d47207ada62336923d2ed2c99881bc2996fd64bb5991
MD5 5bd77ef7b635ad001f661c03123b038a
BLAKE2b-256 e9ba01857be8c61eab68e9471003fe252da9d2ccef028d51ab00f6274e7cc5eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3bb994500ebc18b00968d68658caa2ee06d40a885b6025865f5fb66e99009ba5
MD5 8904af449c0c8649c3876b5227b6b442
BLAKE2b-256 60c9b5c6a43dc014416180bf5ecfb1a070c16a263468fbf12b77a8cbc28b934a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dcd778c18ffac1c4a7fdc49d45f9f6f55f39f6d3c0dd355834c87edfe9d659a9
MD5 617a258dfa2c92ec4be905b808b9d25a
BLAKE2b-256 b55c8c8c68649cd86db04bfefecd2b3906696fde75e7e9cb763585efc9310332

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3994e3bd548c1540da558091492ae53d9da0b5b3eddbaab7546b930b3df6532b
MD5 2b7c7b62b027b0b3bce08b0489b9ea26
BLAKE2b-256 a260960093982876e832566b74333904de0d06f6fc92face7e322aad4f510994

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 12.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b562eab4a8ed161f107bad5593a981ce7db455614e5ad73234af5858aa3b5ee6
MD5 d31f5a2393b4ecd552770f185a57b626
BLAKE2b-256 9369a439a77d6bedd4a8463649ae7db03d9f0df609269c308ee9ddfbaad042c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff1020c2c53a6f67fc5e46cf6e2582531c7de5508898453ee9cad4313e61ffae
MD5 ff4d2a4571ff549e02c3c7389d9b07aa
BLAKE2b-256 090278ba42b2423c3932b2786cf5e82b04ed0339048101290fca67b2f2d4cffb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bb85428c7b8065ddd4d7c037d0177ff1af8f17827ce029a47a938a07d806ef8
MD5 75dfb91706241bc2feef357d8b6b7b2e
BLAKE2b-256 38f2ea563dbdcc6c84096263a056225a2de23fc7b0e46c7d0ca68c8f146c2863

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 547660f676aedfab55713d3ed79f0d55345da12d783bc0e88e7a64afc5601fb3
MD5 9cda06b37e077eade70362e38e65b91a
BLAKE2b-256 9e5df3b0439e99e3287c1cab381d5055c91b3cd3e9e021645e596dbca87118da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 278b9939a9f7adcd3a4a53865034372c88e491be1b872fa8cd2db5e4deff3f41
MD5 39629d93f37dd7aa297b6414b7774f89
BLAKE2b-256 138a802977b7efaed4ed7ee1172448137da26aff555b176832e9eb7d6525dd10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 46880fc69a3d18e212e8c6a1c77c205b2db7b53278e63da96da798940284b94f
MD5 7851b6eeed77c1d89168239a25bed745
BLAKE2b-256 479adf35015a1ee801d40b3c9f725381acbd8094b8828b20faa5b92adfdb6bc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a50d9d84360c6d66af693641c7adf3e915686b9a28bc7a911bf1a4e4f67e1e65
MD5 7faa023074c07c08abed29a823af2ca1
BLAKE2b-256 1589a54d5d8bc850c242615ac220a945823ae8cc86efa71d45fad17ff673f191

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 12.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c73f9ac458efc8555cad3a18555f2c3f79305296c5cfea4b9e211311bb8de72a
MD5 a441542f2987b1b5d87c17a90ac7ae56
BLAKE2b-256 cc305170e96335878a74de7978ae0a688f513dc3877472b39ce36043c36289b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4576e445a4bca8458b6957c111f31aab12e1a884fa09313773cf3c8e89d9a92
MD5 9d8fb5092437b5954ca25f49281c514b
BLAKE2b-256 90cb9bef29bf572fd74dbae93d2f3d4a6ad06eabfd8f94329891c8e7b768e640

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc6678c2ac94af5fa1dd9550fea94cd10c84ee11c75b036d76888ac00d5ea24d
MD5 fd5f4025a41d8c0f8de92b5ed19195d7
BLAKE2b-256 51824108808b763f363cf8ea21700f48ed6690e7d96230d1fcf9050a4ac834af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b420b66753c6d16e9d61e522515cab1f7a60eef54af0ae77a104001a89da1b6
MD5 803668330bcc64ba07171a4baff71a53
BLAKE2b-256 ef1cbc210451a7696d38fdc932c44d32e1412bbc49b4a3be6cbedbe691831690

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 835f0c7fa1c7a669d8c9fed1c059e3f3767a62b83343637f6d3e7aa75c03dd20
MD5 ba6f98583ca53e70bb678d7edcda0559
BLAKE2b-256 e83d5acfbe4cd3626e9acfb204a700f0262fcb12f1a7f177dbf6b2832fbb865c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 46d71c75dd1a93ea63416edea9c5cc0fba3cfa666593045d5cc11fc64f50345a
MD5 811ce747c994803271d4c3d8c859ed3b
BLAKE2b-256 f858e5c31929da0598ba29bad75c402c82f56a173a61a77594155bf7a20281bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e9f324f00e2385c61d29fde7a392da82e2ca2d26ece9a92db577dd0f330339d2
MD5 55d3c3ace8bc93ef8e90d388c5c4d79a
BLAKE2b-256 966b6d36bb1f1b86fec76d26fd3e81a283fe5347218e84a891b6182f562766d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 12.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcfd1d01277a1ba4005e22fda9aa1f32aba3d1a9b94e1c09d7eb162e57042c53
MD5 dd89cec302c11c052c23d7849464e208
BLAKE2b-256 506e752bfd9fcbfda006619ff1937f2c2e945e4454dd22162116c9f4307baa44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4ee68e97db7b982c17dbdc5234d0338e352121e4949a71e8e0a03aa9a8a781b
MD5 9fe7fbf2414f7aaf50928ff72acd75ba
BLAKE2b-256 9943af67d11c55ee4e01981bcdec82ce5bf22100b348b7200771ef14a5acc969

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73a63bc089b976a89bc7e697123a51129a4cf80653b69072421c0e175aadfc7d
MD5 9d0cf8750799843c623b493455de20fd
BLAKE2b-256 050832c02ec5b29bc063963ae36eac4ec5a55d0429873e0ed5e3c580890f0b1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fda19b4c26510b4744e45d69b3b7085d2ee359fdbd7f93b9e3a7ad7d31363088
MD5 f7c0205349a4556e53a55f9ac2b4052f
BLAKE2b-256 b111ad4f1cd1b974760889e7d73631bd16c3cac35323b995d8b5de33588a8e32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 586f261e2b2dff3e2c824eaa99426bc62e02199147ec9d97d03299b0dece7d85
MD5 e07eb6794d08ea8c5d7e4dd69b18615d
BLAKE2b-256 29b40408e4a2c25c7ae95a9b3e5066307bb1a9df4d0e22b378c5f442b85ba318

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aaadbb4e7ed6007acaa6626b82f18afc1a82d62cd6dfa8710a107ffe94930302
MD5 a38d9a1c7274a5c81fb259d201fe5b08
BLAKE2b-256 6e321b50c08e2a2629561eeb78216e7ef754dbf835172c7b92d1ac5ec8069775

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a3326da8849a5141dc712fa7574b86dd91b7fc967c50b6aa2aac118b46080a9d
MD5 1a05b05e0606f5f95bf82bab9337d1ed
BLAKE2b-256 60093bc1608b216dd8b3e8244fc009b833ee752e38b7f8d9e559dc93622fcf2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 12.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b64f3232ea761d38f42c79d13c84e521d27a191645e010d33709e2ee445c9067
MD5 fe8d144731633b41e8dac30f917e58e2
BLAKE2b-256 ff9f10bf64c3b15d3b2ed54622f054c6461bec5d81dd127263c2e37ac1d885f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4249216124de6a1f7e899ee87ef100e8b0a6a05811b13139b335a7c9468b9976
MD5 160544ce5374910db135f8bbbaa96dc3
BLAKE2b-256 b63289f3fc87f08ab3972ad5e6ba3494ffc9369e677f4fc6e1f487638f6e4e2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d77b55feb0f1c0fb0b4421d1dd807f0648a1ed0e159f44a3fdd9f8b02a86347
MD5 37d79ed54761e269b1d472faf12fea60
BLAKE2b-256 864761b9a43983c12535b3040b25efe980a3a6276d1c6bb39430a65c6ee5be62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 babf1c2652ce624aa6451b4cee3d7e64a1069ade67922f11efdef041aeaabb14
MD5 35e5b6405f06ea05bcc631c59d0f1feb
BLAKE2b-256 6542db3cb086dd10848577ad9efaefc403c4c78691a3ef137b2930b657e0b324

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c104c99fee70de293348aa0a98c877637f63689a7ec6ccd73858ab0d805bee63
MD5 356ab5b9f161e0d769208fa09eeb00bc
BLAKE2b-256 e8439b84f34625f791b7cf70b4bb8c52359f57ffbb26e4c9f616b7bb6f38ce6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 696f1dcc8a1f3623b88287389cb13447962d3127f5cf923dadb30e12653db196
MD5 8f07f5636a31b7ccc11c6d0e20cc4666
BLAKE2b-256 c7b652994b9a005ac42836371c7f8a387fbed309ec08a09345f3a0844bbeb0e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 646b8ed1d9948703ab35b3b83473736f30e7073a3e01796279a6007bdf4ff8a1
MD5 5e872275f4bdd7aa5cb0da6ef116ed81
BLAKE2b-256 d052a143f5d77359cefd8314db15de08da7a11bb9bf29596fb843c83761f463a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 12.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef999a6a96f59fe5e44ee26c811abf5a820f9441641271e49cac4f2e403aaaaa
MD5 f232aa15367200b209a468f9dc6e8904
BLAKE2b-256 864ceb70a51ba529abec1059bb91d257433fd355a59b5271c60cf6ec77f2a269

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8f60a8b79c18de68382d61e4f886e836a13efa9ff382b34e2bf7a1fb3762ab0
MD5 934b9614835c8f1c0871113e8e73f9c9
BLAKE2b-256 f8191cad59805176ed9bb8a1a5bcced71e29e27fbccc2ff8125a013a1bcb9f2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 10.9 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c3389ae736010b6fd73ca2d2fec4497062587fb09ec25998c8ad1c4f034ce29
MD5 64a49a7fc9577357adc8717f0e2da955
BLAKE2b-256 691ab1635aa7e0a01a180d68ae6b6d90920a6c9098d304fd81744d3a54711cdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bashkit-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: CPython 3.9, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","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.7.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7acde20e81b24584de0f985cb1d4435323bf95c654d9a72912caf7d46146badd
MD5 0aa506f6936099aa6222d2c210f6b6ab
BLAKE2b-256 9fe7b77e34adc4f50d605a7f86a54d9fcdd2f1be6de678ea56434fc016631d60

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