Skip to main content

BarFlow

A fast Python progress bar library with a C++ core. Cross-platform — first-class on Windows, macOS, and Linux. Built to beat tqdm, rich.progress, and alive-progress on cold import, per-iteration overhead, peak it/s, memory footprint, tail latency, multi-bar throughput, and first-frame latency — simultaneously.

import barflow

# Fastest: `for _ in progress:` runs at 160+ M it/s — faster than
# a bare `for _ in range(n): pass` because Py_None is immortal.
with barflow.Progress(total=n, desc="Crunching") as p:
    for _ in p:
        do_work()

# When you also need the iterated values:
for x in barflow.track(range(1_000_000), desc="Working"):
    ...

# Event-driven / manual:
with barflow.Progress(total=n, desc="Streaming") as p:
    for chunk in data:
        process(chunk)
        p.advance(len(chunk))

Benchmarks

Numbers below are from benchmarks/bench.py on Windows 11 / Python 3.13 / N = 20,000,000 iterations (5 runs per data point, best wall time for rate measurements, min CPU time for CPU measurements). Baseline bare for _ in range(n): pass is 145.75 M it/s (6.9 ns/iter, 140.6 ms of CPU). Raw output lives in benchmarks/bench_raw.md; methodology and platform notes are in benchmarks/results.md.

Headline

Axis BarFlow tqdm rich alive-progress
Cold import (ms) 1.21 72.27 74.96 30.12
Overhead, for _ in p: (ns/iter) 0.0 7.4 471.9 384.9
Overhead, track(...) (ns/iter) 3.0 7.4 471.9 384.9
Peak it/s, display off 160.8 M 70.2 M 2.1 M 2.6 M
Peak it/s, display on 101.8 M 19.6 M 2.1 M 2.1 M
Python heap peak (1 M iters) 486 B 298 KB 661 KB 3.4 MB
Tail latency p99.9 (ns) 100 200 2,200 2,200
First-frame latency (µs) 32 97 921 n/a
Multi-bar, 4 tasks (M it/s) 43.9 M 8.8 M 2.2 M n/a
Metadata churn (M it/s) 29.6 M 6.6 M 2.0 M 1.9 M
Total CPU, display on (ms for 20 M) 188 953 9,297 9,391

BarFlow wins on every axis — 25–62× faster cold import, zero measurable overhead on its iteration fast path (faster than a bare for _ in range(n) because Py_None is immortal on 3.12+ and skips the store-cycle refcount work that range's small-int yields incur), 5.2× display-on throughput vs tqdm, ~50× vs rich / alive, 600×+ less Python heap peak, 2× tighter tail latency, 3× faster first-frame paint than tqdm, and ~50× less CPU than rich / alive over 20 M iterations. The sub-1.0 CPU/wall ratio reflects the decoupled render thread: it wakes on a 50 ms timeout, formats into a preallocated buffer, and spends most of its life parked on a condition variable, so the producer loop never pays for rendering inline.

Import startup (median, baseline-subtracted, 11 runs)

Library Cold import (ms) vs BarFlow
barflow 1.21
alive 30.12 25×
tqdm 72.27 60×
rich 74.96 62×

Measured by timing python -c "from <lib> import ..." in a subprocess and subtracting a bare-interpreter baseline (python -c "pass"), so the number is just the work the library does at import time. BarFlow's module graph is deliberately lazy: themes, columns, style, spinners, hooks, and aio are all resolved on first attribute access via __getattr__, so the cold import only pays for the C extension load and an __init__.py that does nothing but expose Progress, Tracker, and track.

No-display hot path — pure per-tick overhead

Display is disabled (disable=True where the library supports it) so we measure the cost of advancing the counter, not rendering. ns/iter is over the bare for-loop baseline.

Variant M it/s ns/iter over baseline
barflow-iter 160.76 0.0
barflow-track 101.13 3.0
tqdm 70.23 7.4
barflow-tick 65.39 8.4
alive 2.55 384.9
rich 2.09 471.9
  • barflow-iter is for _ in p: — BarFlow's Progress type implements the iteration protocol directly, so FOR_ITER dispatches tp_iternext without the CPython vectorcall trampoline. The iternext body is three x86 instructions (load, fetch_add, return Py_None), and Py_None's immortal refcount on 3.12+ means the loop's STORE_FAST _ is free. Net result: below the bare for-loop baseline, because a range-driven loop still does refcount work on its cached small-int yields.
  • barflow-track is the for x in barflow.track(iterable): wrapper, used when you also need the yielded values.
  • barflow-tick is the manual Progress.tick() call from Python, which pays the full CPython vectorcall dispatch overhead per call. Use the iteration protocol above when you don't have a source iterable.

Display on — throughput with a live renderer

Comparator libraries write into an io.StringIO sink with force_terminal=True so no real console I/O is measured. BarFlow writes to its native Windows console path (no sink parameter), which makes the comparison conservatively worse for BarFlow.

Library M it/s vs BarFlow
barflow 101.76
tqdm 19.57 5.20×
rich 2.11 48×
alive-progress 2.09 49×

BarFlow's render loop emits delta frames: each column's previously-rendered bytes are cached, and on the next frame the render thread emits \x1b[<n>C (cursor-right) over unchanged spans instead of re-writing the bytes. On a real TTY this cuts bytes-written per frame by roughly 60% for the default layout; the sink-based benchmark above does not exercise the delta path, so the number you see is the lower bound — real terminals get more.

Memory footprint

Library tracemalloc peak RSS import RSS run
barflow 486 B 236 KB 192 KB
tqdm 298 KB 6.83 MB 992 KB
rich 661 KB 6.58 MB 1.77 MB
alive-progress 3.41 MB 1.64 MB 3.79 MB

tracemalloc peak is the high-water mark of the Python heap over a 1 M-iteration run (bench_memory.py). BarFlow's ~500 bytes is effectively one Progress object's shell — the counter, output buffer, render thread, and render scratch all live in C-owned storage that tracemalloc cannot see. Competitors allocate hundreds of KB to several MB of Python objects per run.

Tail latency (per-iter distribution, display on)

Library p50 p90 p99 p99.9 max
barflow 100 ns 100 ns 100 ns 100 ns 7.80 µs
tqdm 100 ns 200 ns 200 ns 200 ns 28.00 µs
rich 500 ns 600 ns 800 ns 2.20 µs 153.20 µs
alive-progress 500 ns 600 ns 700 ns 2.20 µs 138.00 µs

Per-iter timestamps recorded with perf_counter_ns() across 100 K iterations; bench_tail_latency.py. BarFlow is the only library whose p99.9 does not diverge from its p50 — the render thread never spills work onto the producer, so there is no jitter source to create tail spikes.

First-frame latency (__enter__ to first byte)

Library median min p90
barflow 32 µs 28 µs 41 µs
tqdm 97 µs 93 µs 109 µs
rich 921 µs 845 µs 1.05 ms

BarFlow paints a synchronous first frame on Progress.__enter__ before the render thread takes over, eliminating the 50 ms "blank bar" window that would otherwise be visible for short-lived jobs. Measured by bench_first_frame.py.

Multi-bar throughput (4 concurrent tasks)

Library wall time aggregate
barflow 22.8 ms 43.9 M it/s
tqdm 114.1 ms 8.8 M it/s
rich 465.8 ms 2.2 M it/s
alive-progress skipped (no clean multi-task API)

4 tasks × 250 K ticks each, driven round-robin from one thread (bench_multibar.py). BarFlow stays lock-free — every task has its own cache-line-padded counter, and the render thread walks the task vector under a mutex that the single-task hot path never touches. The multi-task update(task_id, n) does take that mutex to resolve the task pointer, but holds the GIL across it — skipping the per-call thread-state save/restore — whenever no CallbackColumn is present, which is the only case where the render thread needs the GIL while holding the lock. (bench_multibar.py numbers above are a pinned Python 3.13 run; the GIL-held path's speedup is larger on 3.14, where GIL save/restore costs more.)

Metadata churn (description updated every 1 K iters)

Library wall time it/s
barflow 33.8 ms 29.6 M
tqdm 152.4 ms 6.6 M
rich 514.1 ms 2.0 M
alive-progress 526.9 ms 1.9 M

1 M ticks, set_description called every 1000 ticks with a pre-generated 40-char string (bench_metadata_churn.py). BarFlow exposes set_description(str) and set_task_description(task_id, str) that briefly acquire the render mutex to swap the description; the lock-free tick hot path is unaffected.

CPU cost — render thread counted

time.process_time() sums user+system time across every thread of the process (Windows GetProcessTimes, Linux CLOCK_PROCESS_CPUTIME_ID, macOS task_info), so a background render thread cannot hide from this measurement.

Library Mode CPU ms (best of 5) Extra ns/iter CPU / wall
barflow display-off 187.5 2.3 0.96
barflow display-on 187.5 2.3 0.96
tqdm display-off 265.6 6.2 0.93
tqdm display-on 953.1 40.6 0.95
alive-progress display-off 7,671.9 376.6 0.98
alive-progress display-on 9,390.6 462.5 0.98
rich display-off 9,437.5 464.8 0.96
rich display-on 9,296.9 457.8 0.98

Two things stand out:

  1. BarFlow's CPU cost is identical whether the display is on or off. Turning the bar on adds no measurable per-iter CPU because the render thread wakes on a 50 ms condition-variable timeout and spends the rest of its life parked. The producer loop sees the same hot path in both modes.
  2. tqdm's CPU grows 3.6× when the display turns on (266 → 953 ms), because rendering runs inline on the producer thread. Rich and alive-progress sit near ~50× BarFlow's CPU cost in both modes — they pay hundreds of nanoseconds of dict/lock work per advance() call before any rendering happens.

Caveats / reproducibility

  • Numbers are from a single Windows 11 box; absolute values will differ on Linux / macOS but the ratios are stable in repeated runs. Re-run python benchmarks/bench.py --n 20000000 --runs 5 to reproduce the main table, and python benchmarks/bench_*.py for each extra axis (tail latency, memory, first-frame, multi-bar, metadata churn).
  • tqdm is run with mininterval=0.05 (matching BarFlow's default) rather than its out-of-box 0.10, so the comparison isolates per-render work from render frequency instead of giving tqdm a free 2× render-skip advantage.
  • time.process_time() resolution is ~15 ms on Windows, so the smallest CPU numbers (barflow: 187 ms) sit only ~12 ticks above noise floor. Differences against tqdm (5×) and rich/alive (~50×) are well outside that window.
  • Display-on throughput is measured against an io.StringIO sink, which skips Windows console latency. On a real TTY, BarFlow's delta-render (cursor-advance over unchanged column spans) gives it additional headroom that the StringIO harness cannot see.

Install

pip install barflow

Wheels are published for Windows (AMD64), Linux (x86_64, aarch64), and macOS (x86_64, arm64) for CPython 3.10 through 3.14, including the free-threaded cp313t / cp314t builds.

Features

  • Zero-overhead iteration. for _ in progress: runs at 160+ M it/s — below the bare for _ in range(n) baseline, because FOR_ITER dispatches directly to tp_iternext (no vectorcall trampoline) and Py_None is immortal on 3.12+ (no refcount work on STORE_FAST).
  • C++ hot path. tick, advance, and Tracker's iter-next are single std::atomic::fetch_add calls with no locks and no Python-level bookkeeping. Task counters are cache-line padded so the render thread's reads never false-share with producer writes.
  • Decoupled renderer. A background thread wakes on a 50 ms condition-variable timeout and formats into a preallocated buffer. The producer never blocks.
  • Delta-render. The render loop caches each column's previous bytes and emits \x1b[<n>C cursor-advance over unchanged spans instead of rewriting the frame. Roughly 60% fewer bytes written per frame on the default layout.
  • Synchronous first frame. Progress.__enter__ paints one frame inline before the render thread takes over, so short-lived jobs don't see the 50 ms blank-bar window.
  • Native console I/O on every OS. Windows: unconditional ENABLE_VIRTUAL_TERMINAL_PROCESSING, UTF-16 transcoded WriteConsoleW chunked at 32 KB, legacy-console fallback, no colorama dependency, and a reusable wscratch transcoding buffer so steady-state frames are zero-alloc. POSIX (macOS/Linux): native ANSI write(2) to fd 2 with TIOCGWINSZ width detection. Same rendering core behind a thin platform shim.
  • Multi-task + columns. 11 built-in column types (description/bar/percent/count/rate/elapsed/eta/spinner/text/postfix — all in C++ — plus a Python-rendered callback column), rich-style column API, themes, ANSI cursor stacking for nested bars. Progress.set_description(str) and set_task_description(task_id, str) expose metadata churn without touching the lock-free hot path.
  • tqdm-shaped ergonomics. reset(task_id, total) restarts a bar for reuse across phases; set_postfix(loss=…, acc=…) adds a live trailing annotation (the default layout carries it invisibly until set); unit="B", unit_scale=True, unit_divisor=1024 humanizes counts/rate for byte transfers (1.50M/4.10M, … B/s); smoothing=0.3 swaps the whole-run average rate for an EMA that tracks current speed; leave=False clears the bar on completion. Progress.total / .elapsed read task 0, and list(track(range(n))) preallocates via __length_hint__.
  • More tqdm/rich parity. barflow.wrap_file(fileobj, total=…) / wrapattr meter a stream's byte throughput (read/write) through a transparent proxy; initial= resumes a partially-done job (shown but excluded from the rate); set_visible(task_id, bool) hides/shows a task's row while it keeps counting; delay= suppresses the bar until it has run longer than N seconds; disable=None auto-disables when stderr is not a TTY (so piped/redirected runs stay clean).
  • Spinner DSL. Compositional factories (frame / scrolling / bouncing / alongside / sequential) compile to precomputed frame tables at __enter__.
  • print() interception. capture_output=True reroutes sys.stdout through write_above() so user prints appear above live bars without tearing.
  • asyncio. barflow.aio.atrack(aiter) wraps async iterables.
  • Tiny cold import. import barflow is ~1.2 ms (baseline-subtracted median) — 25–62× faster than the alternatives. All non-core submodules (themes, columns, spinners, style, hooks, aio) are lazy-loaded via PEP 562 __getattr__.
  • Sub-kilobyte Python heap. Peak tracemalloc usage across a 1 M-iteration run is ~500 bytes, vs 300 KB (tqdm), 660 KB (rich), and 3.4 MB (alive-progress).

Usage

import barflow
from barflow.columns import (
    SpinnerColumn, DescriptionColumn, BarColumn, PercentColumn,
    CountColumn, RateColumn, EtaColumn,
)

# Simplest form — when you need the iterated values
for x in barflow.track(range(1000), desc="task"):
    ...

# Fastest form — when you just need a counter
with barflow.Progress(total=1000, desc="task") as p:
    for _ in p:
        do_work()

# Custom columns
with barflow.Progress(
    SpinnerColumn(name="dots"), " ",
    DescriptionColumn(), " ",
    BarColumn(width=40, color="magenta"), " ",
    PercentColumn(), "  ",
    CountColumn(), " | ", EtaColumn(),
    total=1000, desc="build",
) as p:
    for _ in range(1000):
        p.tick()

# Named theme
with barflow.Progress(theme="classic", total=1000) as p:
    ...

# Multi-task
with barflow.Progress(theme="classic") as p:
    dl = p.add_task(total=100, desc="download")
    ex = p.add_task(total=100, desc="extract")
    for i in range(100):
        p.update(dl, 1)
        p.update(ex, 1)

# Live prints during a bar
with barflow.Progress(total=100, capture_output=True) as p:
    for i in range(100):
        if i % 10 == 0:
            print(f"checkpoint {i}")   # appears above the bar
        p.tick()

# Byte transfer — humanized count/rate, EMA-smoothed speed
with barflow.Progress(total=4_100 * 1024, desc="download.iso",
                      unit="B", unit_scale=True, unit_divisor=1024,
                      smoothing=0.3) as p:
    while not done:
        chunk = recv()
        p.advance(len(chunk))       # renders 1.50M/4.10M … 3.2M B/s

# Training loop — reuse one bar across epochs, live metrics
with barflow.Progress(total=steps, smoothing=0.4) as p:
    for epoch in range(epochs):
        p.reset(total=steps)                       # restart counter + timers
        p.set_description(f"epoch {epoch}")
        for step in range(steps):
            p.advance(1)
            p.set_postfix(loss=loss, acc=acc)      # … loss=0.031, acc=0.98

# asyncio
import asyncio, barflow.aio as aio
async def main():
    async for x in aio.atrack(some_async_iter(), total=1000):
        ...
asyncio.run(main())

Design

See docs/DESIGN.md for the full architecture: atomic hot path, background render thread, column pipeline, Windows console handling, and the benchmarks methodology.

Build from source

Requires Visual Studio 2022+ (Windows) or GCC/Clang + Python headers (POSIX) and Python ≥ 3.10.

# Windows
build.bat

# POSIX
python -m pip install -e .

License

MIT. See LICENSE.

Download files

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

Source Distribution

barflow-0.5.1.tar.gz (154.7 kB view details)

Uploaded Source

Built Distributions

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

barflow-0.5.1-cp314-cp314t-win_arm64.whl (125.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

barflow-0.5.1-cp314-cp314t-win_amd64.whl (127.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

barflow-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

barflow-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

barflow-0.5.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (561.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

barflow-0.5.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (545.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

barflow-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl (119.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

barflow-0.5.1-cp314-cp314t-macosx_10_15_x86_64.whl (121.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

barflow-0.5.1-cp314-cp314-win_arm64.whl (124.8 kB view details)

Uploaded CPython 3.14Windows ARM64

barflow-0.5.1-cp314-cp314-win_amd64.whl (127.2 kB view details)

Uploaded CPython 3.14Windows x86-64

barflow-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

barflow-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

barflow-0.5.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (550.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

barflow-0.5.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (536.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

barflow-0.5.1-cp314-cp314-macosx_11_0_arm64.whl (119.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

barflow-0.5.1-cp314-cp314-macosx_10_15_x86_64.whl (120.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

barflow-0.5.1-cp313-cp313t-win_arm64.whl (123.7 kB view details)

Uploaded CPython 3.13tWindows ARM64

barflow-0.5.1-cp313-cp313t-win_amd64.whl (126.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

barflow-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

barflow-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

barflow-0.5.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (561.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

barflow-0.5.1-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (545.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

barflow-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl (119.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

barflow-0.5.1-cp313-cp313t-macosx_10_15_x86_64.whl (121.5 kB view details)

Uploaded CPython 3.13tmacOS 10.15+ x86-64

barflow-0.5.1-cp313-cp313-win_arm64.whl (123.3 kB view details)

Uploaded CPython 3.13Windows ARM64

barflow-0.5.1-cp313-cp313-win_amd64.whl (125.6 kB view details)

Uploaded CPython 3.13Windows x86-64

barflow-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

barflow-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

barflow-0.5.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (550.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

barflow-0.5.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (536.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

barflow-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (119.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

barflow-0.5.1-cp313-cp313-macosx_10_15_x86_64.whl (120.8 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

barflow-0.5.1-cp312-cp312-win_arm64.whl (123.3 kB view details)

Uploaded CPython 3.12Windows ARM64

barflow-0.5.1-cp312-cp312-win_amd64.whl (125.6 kB view details)

Uploaded CPython 3.12Windows x86-64

barflow-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

barflow-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

barflow-0.5.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (550.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

barflow-0.5.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (536.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

barflow-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (119.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

barflow-0.5.1-cp312-cp312-macosx_10_15_x86_64.whl (120.8 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

barflow-0.5.1-cp311-cp311-win_arm64.whl (123.1 kB view details)

Uploaded CPython 3.11Windows ARM64

barflow-0.5.1-cp311-cp311-win_amd64.whl (125.4 kB view details)

Uploaded CPython 3.11Windows x86-64

barflow-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

barflow-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

barflow-0.5.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (548.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

barflow-0.5.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (535.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

barflow-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (118.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

barflow-0.5.1-cp311-cp311-macosx_10_15_x86_64.whl (120.6 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

barflow-0.5.1-cp310-cp310-win_amd64.whl (125.5 kB view details)

Uploaded CPython 3.10Windows x86-64

barflow-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

barflow-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

barflow-0.5.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (547.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

barflow-0.5.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (534.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

barflow-0.5.1-cp310-cp310-macosx_11_0_arm64.whl (119.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

barflow-0.5.1-cp310-cp310-macosx_10_15_x86_64.whl (120.8 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

File details

Details for the file barflow-0.5.1.tar.gz.

File metadata

  • Download URL: barflow-0.5.1.tar.gz
  • Upload date:
  • Size: 154.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1.tar.gz
Algorithm Hash digest
SHA256 f37989c7ac5f4082cb00193b2989647a4c2f16dfd9d39e6aee8b5f5f77bf9c1e
MD5 6b35a7a4055bb71f5f58a0050393b719
BLAKE2b-256 383eb6c1c052cbfd34f20f876d5a2c5910330e0cdd325d9e7d2711bed13d574e

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1.tar.gz:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 125.1 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 36a847b48d326207a2a305c675ce45481d413c68817e809d7bd95555254d0174
MD5 7464c5facf59402169f045ef765121a6
BLAKE2b-256 c9aa55be3c5255972626714ffbe488337a9c04ccb573eef33d956cf6ca702f3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314t-win_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 127.9 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 85d0d9d304461d7dd8efd5fb6834e9579ee5a404426887896d3814f9f6fee0c5
MD5 1b520023b5c342d533321c0b8ec0c8fa
BLAKE2b-256 265062adead1b9b32632be48873e9d74bcc5cd116b215789896db0567d7b3137

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 366b349291f7e6a55d26eea0b15a7fedee8bdb1ccb714731336c8c7541b7788f
MD5 a03f7eb8e712aba4f116c9cd3f1fffd8
BLAKE2b-256 cb502783147ffcf21dc15666794896b5e78080eb58518af30c3018f39b795ee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e9bd56b228003dc4345fb4d3ee40bce154614df4b26a957359d353791f650b4
MD5 45e66eb6ff53fb008c14302c890261da
BLAKE2b-256 ecefd1cc3e87d55c9b2a4385d5e2d7f694eba248f32ce5083d9ecc773f39d038

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7899202182862d99d33c11f9cb91a98df6ae2fe69b607933dfa60a1aed1de239
MD5 f8615c5b37c849507113daa0740ed1a4
BLAKE2b-256 e6fb1323d014116bbda3b035f81556612b188583b63b57f42ab263405a6c26bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3855de3739c2d197edd09c18882a45b93fd7fe42011fe768d1dfe4def9049c51
MD5 71ca305e52b43b7bd002c32900c02daf
BLAKE2b-256 7e2f01eae35fdae1a9cf746be1c56eda999b24fa405abc5e67b777bf068d8c8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5604646f8745aa3c5455fa466b0e74583479377a6d7cd0f352944fb911f5f0b2
MD5 c5635c25f128a1e9078d329eef1bdbea
BLAKE2b-256 c7452c6214579682c0b219dba6f3c162e39d108e6ac3ac01435c1b631ab8d6a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 52bc9d45b2131db922ae0d5da342e43f9e2f66f723e1f4b878a76d8e68b6cf04
MD5 35205ecc3c944c5ec0e3cc0a57a5271a
BLAKE2b-256 d7e81dac2a96a7fcf2d8a19777695d167785a9d35ebba4d65224db0462ab5523

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 124.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9abe8e41f60da230ec2063da3cd5b4a2ff1958821143fa8ce8b31411ecac3a9f
MD5 d4c05201b5be6aba91f54f01acca4aee
BLAKE2b-256 e6a55ca1cbb753582c35c0616d7d026a476176f61654cafff9638b216f8c8d0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314-win_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 127.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4fb8971a767854863985f03385b4ec5bb7b84720887f6a77a530c0fa13cdab17
MD5 38d4ad8ff57d1eebbd64776b9832b486
BLAKE2b-256 33ffd448fbf451b866e4f887c351b5c6353f1c7a982966c18c29967419827404

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a62b36f1315a395f3eba4cbce9aeae4b2d12af7e22f6f321b27d10208bfdb35
MD5 1e9c56534f10f7f28c5304c02346a0bb
BLAKE2b-256 d8104bdd0f3d81697518bb81ee2af397df8ee14e1cb2ad956b71fc40baf74bcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b89ee909dff4df11ad0764f5b13d3bba7cfb4d3ccf9dfb5906602e642c5f708
MD5 a2b3452ec3a2b582e40a6159fb4b0e9c
BLAKE2b-256 8a04730e66e18634bd10e7118140147e4330861718befd0d368910c7aeae8305

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a119579511ada5772e9f0c1deb385c2604605288aa8e3315ae89b4cfc3135efc
MD5 8c06abe90bfb05d64dd6870bcfa4f624
BLAKE2b-256 5c3b94ff9177b8e0b5af352f7a397769da4266f373d85b486e9783beb422d7f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc9df4bf31333d2d77cf82b8361ab4aa14065cc834f1bd52457c7b76efe8539c
MD5 5c8dfbd35887b0b993780fc7e849b02b
BLAKE2b-256 c5a08a38dcf9c108c36d3839ef2ecd19826f3640df5fa067fdc27bf41c9cec55

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ddcf365d4e299584cef0d24014651b97d8cb27812550173349a90745291725f
MD5 a19bb8febfa32f27f310c85b3d4c4a06
BLAKE2b-256 a24d6554d59f60731b0f7be40b1a3fc1b52d25e5f6b4a2b8ed2afe1ca68e15c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7519a9934d970d0ad368a605305c52468db107d0e7a09fbff17761b2495c8cd9
MD5 1fae3811f0e100e68eae8e1cce8e891e
BLAKE2b-256 2a13aa0de4a27f4c327359868d88108a91fbd0a088f727bdee2cbca5ecde2a1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 123.7 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 2fae905afa04e9e81f5665e7af9d5ac8dac4d3e650776097b8163398370e387f
MD5 cda0b97231c0b0a0ebc0fffd4713f71e
BLAKE2b-256 bff40377952e3c08d34088619ff74d05b0252bb5905f3735251fd3448a8c27d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313t-win_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 126.3 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 05fa033dc2db234f0d319bdefb9190e00635cdd76835e4053b0ef3fb4bf71cbf
MD5 518d2d1ad1329e1e3f6053b20abd1b5d
BLAKE2b-256 5875cdf5572ba73469a4adb8f67bb5b021285fcd506607d2eec4747362236ced

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313t-win_amd64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98fe2d2221f028330a4c86da9d772177d8788a92eebaf29f64e6be3861da77a6
MD5 43b88c038f5628774e09cfbe45ab3a33
BLAKE2b-256 1b797508cd905fcb4af52a5955b58c3010abb20fb987c5a053601b9ded0d66dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 597386866f56efa8255d5db287ce20221a0a264f116fd0fce2f5b395f60fcb0c
MD5 3c7f2fbde5ee3da66b0a0578240cd46e
BLAKE2b-256 b4b2d043d75dc2463d8ebd07e936b455fd93d39d53e9f9d57b61a0af3ad993c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b367fdf93df46617c94c396492c11553ec1c7690428c3d4ea147ae50d7afd6f
MD5 083db22043978ff591ad200edd2d0a19
BLAKE2b-256 d1d30acdde27fb648545f61bf8a52d8ff13f20c02a669456da90386998dcd4c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d178a198fa65bb24df2cc96794081863b7f014ca09eff2b68f674691ef3defc2
MD5 062ada04add55cf4fa5ddb712847d60c
BLAKE2b-256 2da069295162955d3387b330afe0cf1ba42f8021ca65f04065fd1c64dc881db0

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed23f9e7da053560c5e91b7460b1844cd5b075b55b787d840f03c83128f1a18d
MD5 6f1d4390386d830d805a2bc80e641fb6
BLAKE2b-256 83ddb32d966b8b055baeaa9c85d235e65d7420884b2d0d3266439caa000b1744

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 96ff773e426dd98f59094dea8b660222a9cd33a6355a4ee04978c83d2c807eba
MD5 3560a059c39f442df37a44caa1a69a05
BLAKE2b-256 f9ead0649eff8da8822abb519a3e5850b28ffd73f373735fa32e88e710517832

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 123.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 985b1782f2eb014551154ebef0046b7310b935a5de8360ef056f0dec35c4b6a8
MD5 f86b8a9d369a460d7b93904e7544efc6
BLAKE2b-256 da5d21a58cadeda2067e099eaf2f68b9b988041c556ec2210f3482f56875e4e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313-win_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 125.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5aab603f0c680158141587dd934c00e87c9338a22fb3bd8bef80576b7c5ef5dc
MD5 b5b7b8ca486e0b838fc13e460aefa8ee
BLAKE2b-256 7b90504ce37ffb071f61c18b06f372ab1e10f56570eacc43e2f1f3e201f2e782

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6e987cd06e352dc045f53077d8cb3578e9d88d31687fb5699ab1cab520d5348
MD5 37ad81182fc9cb2aa87184c0a5cda959
BLAKE2b-256 6edbb7ed30135bb6474ea4b0ffcd27379d0b06f397f8027c642b5fc535b7ce9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6855f90ab891ca0901cc3100094860088b7a379e00867078003a9d6d145a91b5
MD5 81e89e3504d783519c6ed4ead4eb11e1
BLAKE2b-256 9e661257cbee476d476d4de0ebc639456486315b1c51a90d20272d776ec393c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79e95939497c4838a06362a38782f82a8d1b6ade49a57efb72265fdfd31476ec
MD5 90799fd38df86db9c588ecf63bf4c92b
BLAKE2b-256 19f631d8916f5e8078a0948ddad0cc276bd68d509036abedd24ac01094362296

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d19f77bf821888a2f979a3870e5b362ea79e4a066edfb895649cfacf12a301b
MD5 55a49ee92fa24faea933dd41f9aa2d04
BLAKE2b-256 a7c20901de5ec3adc189078b7c5742580a7aab303d4fbb038d301d1bc2fc1691

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 181fd358d3183f8040ca42823a49ba61ee74323e911ce9a8ebd5eb08a426b3c2
MD5 3b570e10dc21d8e76f0691c8ff41e347
BLAKE2b-256 31c3fe0fff5c7ee192f11305053a5d3fe7f1ab5847c6e90f14624395ca54622a

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 23779613c4368db7e13b44a22609d45b86e35e3eda8fc50a0db0e2525837ca0b
MD5 68900f55d220961be7bb8634c0e450fa
BLAKE2b-256 93fc8e36c19500ab91711b4fdf818edb48b61c43d791aff3c3628c941f7f292f

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 123.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 71c774985c17a351167b59fcd2edb4c6a98e16e85c35289c3bbf9a7ad62e5fc5
MD5 04d2d5436ff5f074d0899ff8f96ef6b8
BLAKE2b-256 00cbca28b83fe9803b98f02afd72705d35b6b6e26d14c9d50b356f9ed49b6e6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp312-cp312-win_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 125.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ce201a5361d623316bb6657aceb83ef797f7f64bdbf41274da6bb37b42fe791
MD5 473fbebd76362aa3a08a7838b131805f
BLAKE2b-256 822d91d32b8c057b5106898106dd866fd546c3f88781f605bfc920d598b4b247

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ba183a2e3b49d5c895e47e2c143686dd42a79bdea3e4345a9c522adbd6e1680
MD5 ecf3be08048a230b4515ea6111ce0715
BLAKE2b-256 fa614a7d046f4105727bd09d09dee0d4b7691dbb2813a06e486ff341878484f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce0f6a0e033049aa8fa2281b3e37b621ef3695643a9ba1bb71d81f5dc42c954c
MD5 aaf56e6781a33ccaef6a1e4a7f28f7ea
BLAKE2b-256 f660de098e805fe055ff19ea9496b2229650eea743355ad54b3cbcd4ea62f004

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9076bf0f96b707e85d7c41bb334a52dcee5ce9f2aecbfd1dc3edef8f9820a10c
MD5 02c3ac55cdaedd0cb3a431eec226d30a
BLAKE2b-256 a7c956ad02e8613265225fd2950cfb22af12757564535a44f7b3699adfbd0264

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0d98ce930bdfe62b1cb761c23afed986307162ae72bb02691806a7dd99643c9
MD5 d56255eee23235153a2ec2a6e6201b04
BLAKE2b-256 cb5f89e44526d63e2f229cb58f01ba98d359a9de21a255ea8ee1db3f8fd94545

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bc4f056182a2a6e153b8b833ecba72d467fbff509baa5f3a818018f69600ca5
MD5 8eb2b4a6ccbc402b516832a86f9b35d0
BLAKE2b-256 a87e9a000e9b651495162d7ecdb33980a74762e48caa576d8b90869fc2a5fef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5d0ff6fdb993cd58b28758ab742b6360b0c2014996381640526126c8238a4ce3
MD5 faf69041dcde00879767ed38fe237c19
BLAKE2b-256 88bfed614ef0326f2053350589346079897c3009e82596c75b664f2babc52bf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 123.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 110451d7c3a2be9ae620750d127da219f5c1f20eaeaaaf8e300954c901a2326a
MD5 a8647e26381c146f97ae972445cf1924
BLAKE2b-256 f7dab4626691c87fad1f3a04649f84de393e5ee7068f25430d993ec46eb39533

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp311-cp311-win_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 125.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fa4af3d42dec66298df872f0552729e218b0e4ee2fab59f0a366a9e5ebf8066b
MD5 6ae499ce13186cfd8b4efb9608c94d69
BLAKE2b-256 a3a64ab59688e4834916e8854624cacb8ff246d9bdf0506c7289e1ce00a52b63

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d99c7bd262db6e55659dfcf3380a118734ebd6f0ccadc5934c00c30112085a63
MD5 ace820ad1f7c5d1d64cdb3bc40d7ef6b
BLAKE2b-256 844fc62584ffc62d6c2cb36dc535d1e62c4f6294c164ad8382dcde10bbc241bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7937c2aeccea4073994165db18f414964b944ce94441f62ed03bf824b395d41
MD5 763387adb245db419ec62c03f1ad7740
BLAKE2b-256 3f0b992f0823ca08f2915c4f4a6d68af7badf6328e1990f8c966bc811cc71c64

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e158498f00cc8a68db0ff5c9023c0a33f7e0b84afbfcaecc66de4e043ca0150a
MD5 41141851f4c2d07a21c27d874ea81ca9
BLAKE2b-256 a97807c77ac4bb878d5b8929806475fb4e85c9efbb82fa023c17cf04c1d9c184

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4dcc45062ef0c07004ad3f34399420503c9c1359618ad7d349c608d3fe267ba4
MD5 5cf0c931064c8125095ce12734b02391
BLAKE2b-256 dd079cc0000cb90a0f49f1334775537b3c5e98a8c70abba01627accada0d57f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d810f9952840a2bf4090633af8158119360bdc6c8fac48afbcc381f06d23eddf
MD5 25e97397802299426364bf1016452660
BLAKE2b-256 fceaa36f587ce01826065cc07c5d64f28567d37d6abd510f36735eba50616180

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 28e3de85083b93e48f0765a0e39baeba7d7c394433d9254c3b753858a5af88e9
MD5 73ef17700dcae58d93bf98bbce2c7734
BLAKE2b-256 d9470d996b7eb8ba86d22f0626508c39fad7cd91f04f6efb88462683705fd75c

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: barflow-0.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 125.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for barflow-0.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 671ed24dcfff13e7e566cbb9c94d5fcf80f6532b27ab09250fe4d93c8815cdbe
MD5 4fe97236bc567f78196eeec96b08fcbf
BLAKE2b-256 04ac72e4e95cc0d9fc6f6e7ba9a02f0fd9727d0d882cb7ebd052b243acb53f62

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a5304b9f4472c21b99cb38581dd17a8f7efa870c285b442a364b55e38e6b942
MD5 66e8933f9df2cf05c7318abbae4b205b
BLAKE2b-256 23dc723e1c981e23619ded97f74ce58d286662f5926ecaa4769d0eb23d86da70

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 031ffac499625a0cb67f7316567248827a78e3821bf1557a2defbc408caf238b
MD5 5ba56c4a76a7e1fe53b26ec2af505745
BLAKE2b-256 6f205b4f2b643e1ed2251cba30f747ec18c1a8458ff54c940e97e2c1936390ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a957eb98b07adb64757f3eb10c9327a6fea0fed667d6bb034471c57fea6dfbb
MD5 d89684083fba4a0af6ecf717ef4819e1
BLAKE2b-256 9d606c8d3c4328d183f7f17ff09b8105eca564cc04fa36483d872fedf2e3bf0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4710ffe86c114278498a7ba22d56330eaf2913c7f7ed4d7d44aa1d647a6823d8
MD5 a1d39738c5859b5e442848a17f1ba651
BLAKE2b-256 fbbaa635d5a82bea7cf7dadc8bb57c075c4c073c655ab8ebe2fbe204897906dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f6c1aa5f75e836dec03078135d913aef283087bb958e9e3537291ab31f67cb8
MD5 0b889e80af227106e6ea7efe762b8378
BLAKE2b-256 55b66edb5cc72459a6f1429939b190e979081107ddd747b76cfaf6c51ed207ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file barflow-0.5.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for barflow-0.5.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d98577ff2abbc0fba518db9a5ba17240f9466ab845f21626120282985ead1472
MD5 9b1e0b9578f8268531fb7c360d40dcf0
BLAKE2b-256 75f9737f8ff468bbd00335d4075bff6590a0e3b080717f3aa7eedbf4cffc3c47

See more details on using hashes here.

Provenance

The following attestation bundles were made for barflow-0.5.1-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on NevermindNilas/barflow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.5.1 This release

56 files

0.5.0

56 files

0.4.1

50 files

0.4.0

50 files

0.3.1

50 files

0.3.0

50 files

0.2.3

50 files

0.2.2

29 files

0.2.1

29 files

0.2.0

15 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page