Skip to main content

Fast PDF content extraction, written in Rust with Python bindings

Project description

bolivar

Fast PDF text and table extraction. Written in Rust, drop-in compatible with pdfminer and pdfplumber.

Install

pip install bolivar
implementation("sa.ingenious:bolivar:1.2.0")
[dependencies]
bolivar-core = "1.2"

Extract text

Pull all text from a PDF in one call. The pdfplumber interface opens the file and iterates pages; the pdfminer interface returns the full text directly. Kotlin and Rust follow the same pattern with their respective APIs.

import pdfplumber

with pdfplumber.open("doc.pdf") as pdf:
    for page in pdf.pages:
        print(page.extract_text())
from pdfminer.high_level import extract_text

text = extract_text("doc.pdf")
import sa.ingenious.bolivar.Bolivar
import sa.ingenious.bolivar.DocumentOptions

val doc = Bolivar.open("doc.pdf", DocumentOptions {
    maxPages = 1
    layout {
        lineMargin = 0.5
        wordMargin = 0.1
    }
})
val text = doc.extractText()
use bolivar_core::high_level::extract_text;

fn main() -> bolivar_core::Result<()> {
    let data = std::fs::read("doc.pdf")?;
    let text = extract_text(&data, None)?;
    println!("{text}");
    Ok(())
}

Extract tables

Detect and extract tabular data from each page. Bolivar returns structured tables with row and column counts, bounding boxes, and cell text so you can inspect or export them without manual parsing.

import pdfplumber

with pdfplumber.open("doc.pdf") as pdf:
    for page in pdf.pages:
        for table in page.extract_tables():
            print(table)
import sa.ingenious.bolivar.Bolivar
import sa.ingenious.bolivar.DocumentOptions

val doc = Bolivar.open("doc.pdf", DocumentOptions {
    pages(1, 2)
})
val tables = doc.extractTables()
for (table in tables) {
    println("${table.rowCount}x${table.columnCount}")
}
use bolivar_core::high_level::{extract_tables_with_document, ExtractOptions};
use bolivar_core::pdfdocument::PDFDocument;
use bolivar_core::table::TableSettings;

fn main() -> bolivar_core::Result<()> {
    let data = std::fs::read("doc.pdf")?;
    let doc = PDFDocument::new(&data, "")?;
    let tables = extract_tables_with_document(
        &doc,
        ExtractOptions::default(),
        &TableSettings::default(),
    )?;
    Ok(())
}

Iterate pages

Walk through pages one at a time to read metadata like page number, dimensions, and a text preview. This is useful when you need to locate content across a large document before extracting specific pages.

import pdfplumber

with pdfplumber.open("doc.pdf") as pdf:
    for page in pdf.pages:
        print(page.page_number, page.width, page.height)
from pdfminer.high_level import extract_pages

for page in extract_pages("doc.pdf"):
    print(page.pageid, page.width, page.height)
import sa.ingenious.bolivar.Bolivar
import sa.ingenious.bolivar.DocumentOptions

val doc = Bolivar.open("doc.pdf", DocumentOptions {
    maxPages = 3
})
val pages = doc.extractPageSummaries()
for (page in pages) {
    println("${page.pageNumber}: ${page.text.take(80)}")
}
use bolivar_core::high_level::extract_pages;

fn main() -> bolivar_core::Result<()> {
    let data = std::fs::read("doc.pdf")?;
    for page in extract_pages(&data, None)? {
        let page = page?;
        println!("{}", page.pageid);
    }
    Ok(())
}

Async

Run extraction off the main thread. Kotlin offers both coroutine suspend functions and Java-compatible CompletableFuture so you can choose whichever fits your concurrency model.

import pdfplumber

async with pdfplumber.open("doc.pdf") as pdf:
    for page in pdf.pages:
        for table in page.extract_tables():
            print(table)
import kotlinx.coroutines.runBlocking
import sa.ingenious.bolivar.Bolivar
import sa.ingenious.bolivar.DocumentOptions

runBlocking {
    val doc = Bolivar.open("doc.pdf", DocumentOptions {
        pages(1, 2)
    })
    val tables = doc.extractTablesAsync()
    println(tables.size)
}
import sa.ingenious.bolivar.Bolivar
import sa.ingenious.bolivar.DocumentOptions
import sa.ingenious.bolivar.Table
import java.util.concurrent.CompletableFuture

val doc = Bolivar.open("doc.pdf", DocumentOptions {
    pages(1, 2)
})
val future: CompletableFuture<List<Table>> = doc.extractTablesFuture()
val tables = future.get()

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

bolivar-1.5.0.tar.gz (5.4 MB view details)

Uploaded Source

Built Distributions

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

bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (22.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (21.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (21.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (21.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (21.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (21.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bolivar-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl (22.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

bolivar-1.5.0-cp314-cp314t-musllinux_1_2_i686.whl (21.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

bolivar-1.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl (21.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

bolivar-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bolivar-1.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

bolivar-1.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (21.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

bolivar-1.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

bolivar-1.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

bolivar-1.5.0-cp314-cp314-win_arm64.whl (2.6 MB view details)

Uploaded CPython 3.14Windows ARM64

bolivar-1.5.0-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

bolivar-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

bolivar-1.5.0-cp314-cp314-musllinux_1_2_i686.whl (21.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

bolivar-1.5.0-cp314-cp314-musllinux_1_2_armv7l.whl (21.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

bolivar-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bolivar-1.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

bolivar-1.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

bolivar-1.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (21.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

bolivar-1.5.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (21.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

bolivar-1.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

bolivar-1.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

bolivar-1.5.0-cp314-cp314-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bolivar-1.5.0-cp314-cp314-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

bolivar-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl (22.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

bolivar-1.5.0-cp313-cp313t-musllinux_1_2_i686.whl (21.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

bolivar-1.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl (21.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

bolivar-1.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

bolivar-1.5.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

bolivar-1.5.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (21.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

bolivar-1.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

bolivar-1.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

bolivar-1.5.0-cp313-cp313-win_arm64.whl (2.6 MB view details)

Uploaded CPython 3.13Windows ARM64

bolivar-1.5.0-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

bolivar-1.5.0-cp313-cp313-win32.whl (2.6 MB view details)

Uploaded CPython 3.13Windows x86

bolivar-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (22.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bolivar-1.5.0-cp313-cp313-musllinux_1_2_i686.whl (21.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

bolivar-1.5.0-cp313-cp313-musllinux_1_2_armv7l.whl (21.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

bolivar-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bolivar-1.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bolivar-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

bolivar-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (21.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

bolivar-1.5.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (21.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

bolivar-1.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

bolivar-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

bolivar-1.5.0-cp313-cp313-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bolivar-1.5.0-cp313-cp313-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

bolivar-1.5.0-cp312-cp312-win_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows ARM64

bolivar-1.5.0-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

bolivar-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (22.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bolivar-1.5.0-cp312-cp312-musllinux_1_2_i686.whl (21.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

bolivar-1.5.0-cp312-cp312-musllinux_1_2_armv7l.whl (21.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

bolivar-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bolivar-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bolivar-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

bolivar-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (21.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

bolivar-1.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (21.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

bolivar-1.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

bolivar-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bolivar-1.5.0-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bolivar-1.5.0-cp312-cp312-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

bolivar-1.5.0-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

bolivar-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (22.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bolivar-1.5.0-cp311-cp311-musllinux_1_2_i686.whl (21.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

bolivar-1.5.0-cp311-cp311-musllinux_1_2_armv7l.whl (21.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

bolivar-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bolivar-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bolivar-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

bolivar-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (21.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

bolivar-1.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (21.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

bolivar-1.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

bolivar-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bolivar-1.5.0-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bolivar-1.5.0-cp311-cp311-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

bolivar-1.5.0-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

bolivar-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (22.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bolivar-1.5.0-cp310-cp310-musllinux_1_2_i686.whl (21.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

bolivar-1.5.0-cp310-cp310-musllinux_1_2_armv7l.whl (21.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

bolivar-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bolivar-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bolivar-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

bolivar-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (21.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

bolivar-1.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (21.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

bolivar-1.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

bolivar-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bolivar-1.5.0-cp310-cp310-macosx_10_12_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file bolivar-1.5.0.tar.gz.

File metadata

  • Download URL: bolivar-1.5.0.tar.gz
  • Upload date:
  • Size: 5.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bolivar-1.5.0.tar.gz
Algorithm Hash digest
SHA256 3900beb6f22a9f8c379760e84cbdef03935e43bbfede7fadab7ab6dc81bc4f43
MD5 216b5ee8c6a6ad54185306e6790305fe
BLAKE2b-256 1e16b0dc82145fc7dc3c5db233be1ffa0d458e4c73684461c89dfcffaf3bd299

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0.tar.gz:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f3ceba8cd3259af904abb01fc4f1d3cbce9b963f17ab615cef0337f20781a8e
MD5 4c8bceab114453ff861bdac5c01ac730
BLAKE2b-256 4212afcf31489bfcd69f89690800420fbef5717c52445f6ed0da9d759bb78cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27fa3003c9454320c03a0155d1cb00ab4bae788611d9fc40b0abff547af274a1
MD5 2d52616ff586116cecfd6831016ec91a
BLAKE2b-256 01ad0f76c20a7becac182fd56ed44756ceea8ec831479a2381b8be83d46953e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6dca5594b7d0142242dbc2901abe7e50fef684942f630d9839f3edea63906193
MD5 c84dc4333ba58b61f7799bbec26394ff
BLAKE2b-256 8b51bf1107d8d46bce13f8f1c4a4d50bbab8f23523a6df3fae3877e41a4b9ba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 077c729a0472e515ad729297e1e445dc47c5d310d50c382a208d9fd4713ccf3c
MD5 4130e54a889a9777716452c1659adfe6
BLAKE2b-256 9d57f05dca43d0aa49944f811f8649314a1205c10f9af44c9e335ac9aa511e0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea0a214832b8ba1d69a4239030d887c2f4120c0aa430ece580f72faa008667a5
MD5 d4c405f99a8c7d3f429b4b1696f3e09a
BLAKE2b-256 289a317e2381fa1a69b45839b744a192b745c17b1970cd4b8915ec17e2f40b2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 200c0cde7e1050b0fc1121c8cca3ee97e80509cd4b9e4cea6e5e83ee05abd41e
MD5 43ba86d0293164aaaea9b551ef6dcfb1
BLAKE2b-256 22fa0400669d784bafa59027122e0f949f88e51f6bd959386555046e9c3fa46a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 799c8a7d39d7970756b4a61cd926e4d1fa7d7d4b4fc8a01224dbd994c359b558
MD5 1fcc9b9cf4496ad6fbb8ae1e10d742ee
BLAKE2b-256 4d11e6275fc173b856990208509d60ddce4dfc03808a36e33bc7ea667c294353

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3df757714c58663b6b1fbc039b7f061f033c35ab24281ed95fcb0fa80cde3978
MD5 3f5ed0705bf644348a33a24fb2b3d7ae
BLAKE2b-256 8bf9a9f2930e0312ba12b3a716c3d3c6526cb050f6aa0fbc47970e409d740f4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb11271457afd3992aaf2b6ad471d8cccbef0d271e9bc28edb304d338391ae6a
MD5 87c1bf78ea950cb600f6a1caef0f1871
BLAKE2b-256 8422f47738d246db3329e6659baf501d1f063427e9d76ed3fb6babb16246ca13

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e778cb3d09b00b3343df1eee7da821ce4fd6888916a72b38205dc6d0343a862e
MD5 63db65150b8663316c507a77251e982f
BLAKE2b-256 317cbf95fc3c0074860c3dc00b7e9b10a88276ed6dabdf22e7734ad0bb8099f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce1c1cb8dac4c5cebe1bc6e04df7b510ce9d1b3fc45b7b23f457f587aba222c8
MD5 6f7aa77d107f48447e18b37fa3c343a3
BLAKE2b-256 7ea1a0458e6da753d402fef4edd3610b5346704d9198f27c6f61311f0f013714

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fbfbe811aedef8f729268cb50c974c6ed9a98e827d2c478c92f89748c0cdfc10
MD5 3fd7b00a2bdec5e8f54afdc58321c48f
BLAKE2b-256 2fc9e9c5630c5e11e1ebc7b3c40ae6230f944e74ba9af10813fbd563362479cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b7c46d053e395d411afb48a34e210f8367d2dcfaa2f56925442de4304c49e79
MD5 8a3a3343c41969e3d2f4a526e2cae5ae
BLAKE2b-256 8d09633aa8f70ab7a3e5a556ce3a7b8a69b2331b594b8c1e051125687389b899

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 608be602ea83312d6f1cde802bdde30e7664e3b22079d239cf0bc0dc6e27ee54
MD5 c998af3d53444d861732465fcc3616ca
BLAKE2b-256 9d7b1a05268b48016e560359b5ab633995e89c630d05636fd025286ef18f4cf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 463b23824619c189d8a9545e402810f8ca44cf8bf5e055799941619f606b411e
MD5 8075a565b6dfead829ad6232d49da383
BLAKE2b-256 4a9d24f1d0a55474ff5ee9be0aa7e0ce522d10f5ee24c3c64e9d2f4b489b71a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b5fec234d5fe94a5ae633d8901032446d7b2103d1afb8b0798c08c8040f5406
MD5 2381eb02f4bb48c5ea3e09227558f95a
BLAKE2b-256 48bb1a38496a297566246226edcb97a9a3af7db05ba3b8b4cd3d2c61427ec3e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27855f8febf2771ae36ad8781533d3f2371040c25e590777b98ed573e927b4b9
MD5 9c3f012e97091d21bed854b9da207e72
BLAKE2b-256 b866d11ed47d06cdf5d754f000fcb6da03235d9b3a6a9c9f5bd862f8a988e36a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17f301a0967e4fa5a89c169340663fbca7aa1a1bf9db1aad6eedd92c4abda969
MD5 8e9c72ed71ee4e49f21d22ef078bef7a
BLAKE2b-256 2d1946f5c18f2733ba486f3ae4c8ed44f020ff2d5765d03255dc88441eb427d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: bolivar-1.5.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9d5bf640639169026c2515057f86b6dd8ea7cdafc2f6e46ce6caada358e692ac
MD5 bcb20aa9795ab500111b424a76f914bf
BLAKE2b-256 74bad9c0abf8f785f7ec61ed23d1919c1eb00cd88c05332d3a1f517548ae0170

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-win_arm64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bolivar-1.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e9b201b2e87344c97598593127b546e5b6bdc26903123ef8b5354d6c32282d6e
MD5 cef4a436f3fdaec849485dba5224d358
BLAKE2b-256 115a0e660fd89fef436604e5c2d7fe54a9142eb39cd98d8dd98fa844178354d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4db432f7b2057f3aa107daa801dd2ba33f2dd4236317e1448dbbbb44f6141e45
MD5 787ed18bc97af74fa260cba624520610
BLAKE2b-256 7d780c9dd6f1a9fbc047d03e8e17fe3bbd31abb86cabe3ca6b455fa2c100526c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 214929dd6e0437e7c408b56a170f0f7ca4557b87ad1ab2903f320ef7316d14c1
MD5 00f13deb71d465684fab0d18da786d81
BLAKE2b-256 da8936d37789778e5862fd9e7830cae71d3cbe2b02a79438071741800f7f1652

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f0832ed637e7dc16d38e81092b0a12ac29f79057718a9c95c80dc35a7e7725f7
MD5 8ddf53e732958be850b764ce99edeaff
BLAKE2b-256 eead0c2dc7834ea94e6d2faf23a241e83c0752b9914e4e04cb8fbc6960ac0624

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fe2983b5d666770327225e343819ac5f9ce1414efb399bbfe2f06992dbd8429
MD5 e6a80c7b20b56b1a27ebbfed28367428
BLAKE2b-256 4ca591402bfada7ba6b4d8bca1dd8cbdbb20b48166fefea6a36ded143848d456

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea35614f36b97010546b1b13ebd17a72c3f6a5aa8e6d4e07e2639a80b3cfc066
MD5 4648969a11e57fbaa83c9a2edc0b5c5d
BLAKE2b-256 494b27b620cb18f4dce92216f4fcb8adb5bd3a79c90767501b6c9a5a487ccf20

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0389f0f820a77aa109357c17d4dd261f757a8f7a8e061a06a54bee30bea0a75d
MD5 41080508b96df63a1b9ae0a17463ebd3
BLAKE2b-256 1932c60e47e0208a6b6154e424072551c336974f7cc929a60f6d283aa885ebb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1773313ceabbbf80f6130f63ed33c79d54e5fc6b697f5bbc81d47f3cdcc40a94
MD5 859dbb92c3ed8683b4dab792dccdf90e
BLAKE2b-256 978442d0f2064159438c15007fae2ba907dba80bc3086765fda79f5bfb6867ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb1ff7d8465242e7b2ff01141c823aa91a3b41d7ab92563ac5d78b07c72c6828
MD5 5783cf226adc0ba04b7dc434bf1c3eb5
BLAKE2b-256 7514e3c6b632bc7bf85c7c580de6748eedecb3cac66dc20f7581fce1e697f9f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85bf66812d5d0a6d95a0c45bd9dd26951f03ad49c6b4eb9a523c0fb8f79b5bd6
MD5 c1011904ef2ab40c205cca895bb6882b
BLAKE2b-256 8aa3c1a0388e7bdbd89db553921fab153d4568cbb7ca8de4c0bf902712357028

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4efe0496c9d668927b5eedd619f9ff07d1c9535f33eed1e8bace045c50d9bd9
MD5 5a40564a29e84e39b4bb5e0f81baf4b4
BLAKE2b-256 74c9a7967861c83be08f93ec5f6937277799d7c013874080b3608f2553437484

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c891cb1d98c5fe7174567184daad603eaa78a0e41af84ba8dd8bbb6a39f7c30
MD5 523e268efa8438f7abd8a569108127da
BLAKE2b-256 0894b3141140f1cd0d03dac4ef04225ef52981f46c8293c7e5187a92f47308cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d430d70c95995d5866dafb3e19f3e921aa33c530783aeeb15e1fe7f25db600b6
MD5 fa6cb49eb5705fa5fd52e78664891a9d
BLAKE2b-256 007e97e3b932200da420a4d52ffa9d28ccbf02f5a9c81b519cf0d39d08d642fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20c874963c15e6b08092b72f5b7448572d46746402800de1ac957d956f0bcca1
MD5 1dba932d358bebfcd16fb3db8c6ec7ec
BLAKE2b-256 1593ccf5813a1190c6bb2ed468c816df6b3e9f6fa890eb4745bce18cc11850e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1eeb342c21523784b4dd79e02a0492d5c2de14abb72dd28e3288803ef11dcc6
MD5 e582d9973ff5d396348e734d38983f3f
BLAKE2b-256 24c703553207aac4d2b01dc73b0dcb4614d103807aa81a835141e67e698e28ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea5acb81d8cc66e7cc7d7df25d264b6b544bd76dca45565b5aa38f86ff0cfa55
MD5 6e4aa47a0d4c07cfe46e6ee522ace5f4
BLAKE2b-256 c1c0e917967a79799b83da8a3278904a6261af6570a5e6072ae15f92871a094a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21d035d884158b3b97aefd510db2df3ef8d165f8d8e4eea04eabca43ce85fe34
MD5 2edb27bd55adbf603de21cd21766e4a9
BLAKE2b-256 0351c50d58ba2e18d38e49588f3a3fa9f40689552e5484b6447532a687cee323

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c103194a34921e7113cd008367a319479c6c8f42898bb0713f0a0a1ec38b5ec
MD5 505e645720282c39f622a3fe171ccc8e
BLAKE2b-256 d2b8a295e6ea8dfcf7bfbe72f2310295bd8d198fec5d9cb61dd57424dd7ae419

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69d857f01ed7e0edfbba98c61e7a8f95757b1b61a6ffe3f64700c0a552c2a8cb
MD5 0ab7f564c5d9e2b0d2a9f4957d1b6acf
BLAKE2b-256 a9bae2447dae1e3948efc4ca7e1dc1036101d59f99ef6a1d77e638141621d87a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6d9edc1cf326545f65d2cdd49780737067699165f7a52b77704e546362cdea2
MD5 0e5a432e3c3afe6e9846c4c8974c9d04
BLAKE2b-256 3eca68c94cfeef8f651057c4e267a7a52214f55b1d9cdfb6f30a32324fa69ee6

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9409c9739e6f7c270f63629ccf992dc6911d120650ec4b5401c44358f77f0470
MD5 5f171f551f0c057e01adb45f7c4b67b1
BLAKE2b-256 5c6f1430a848141b4510c00c24743e3ea7b73bd5f9766a7fdf6be2f0bb888b69

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: bolivar-1.5.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a1b39c4c3e4895558b75f6870592662a9ae7d4e4cbf7645450dd3c39f599a5da
MD5 a8b8cfedb669bed7d326b984c0b26a36
BLAKE2b-256 fb3fc9cd5a96ecf96835f3f541878a2d1053906dbe88eacdfa266723462db44d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-win_arm64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bolivar-1.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7befa26bb6c25c01a1adbe280cd3e4fd07d986a47253c0f163ab535f10a838e0
MD5 5f56087fb2f0cb22a4dec5af3ab557bb
BLAKE2b-256 22be7ebb073942661521f40fe290b5b76ed9f8137d6df8589fef7c389b248dcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: bolivar-1.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e6001a900909226768194b230fb83e251a7dbeff173b0204452d632ab01ffac6
MD5 b01f5f4d6030bd919909dd8eb5156925
BLAKE2b-256 f550ee193c1986e27349afa8d8a98a74529f64a8d15e97fa8b3f8535176393ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-win32.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9196556ecd2e34d0b88cd2cab0aa753e9c68fbc4f99021586a9d78d79c5bcf16
MD5 6fc945d169a51e313392506bf3bc4723
BLAKE2b-256 87497333489dd0e89e29ce72556ddee712a55ad64f9da1f94ced3818d81f5103

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf19b5673e8c9321a5f4956cd46905077db5f03b7893e911205ee610e523a611
MD5 bf7721401bdad52f2d487e8a39a97604
BLAKE2b-256 1cb8950b0d33376f38e2dd5aa58ba7c6c5e09749544d7f00cb1b6dde03d3c89e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f9ba2496d88ff4d81fa05c7bfad46b4ce173448f8757dac666b3a82ae5753083
MD5 e8927a045bb2343260bf507e3d58b432
BLAKE2b-256 83ce117362cd103fb73a6b7aada234a1f8c8b7ba8c84b619bf32c71feb10c1b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 354e163426a6924774e7ca71e373773c3dd76fd7d2c6c9f13b72ff7dfb08d9ed
MD5 c50ed339c86d323bb37e2466b3c2bcb2
BLAKE2b-256 27fb7ad511747fd8268b74bbc06210d0f134ddb8f2b5d6b6c3d875ebea819916

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec620d82098dfa0bb9a456169cfb5fb35a939bd3a95cb941cc6cbcce7b1a764c
MD5 1ed42a3aebae7aa8953a8264c40433db
BLAKE2b-256 6681fe58ae724486f2b5e68d564e1b342a706e42fceeaf57e8361eba992f6e11

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 402239783235a46d44f3be1c5f5b6aaf2b8f74cf7a9e8bfaf274772e0059676b
MD5 a3c9993cd06c9f40cadbb896edba6e99
BLAKE2b-256 2079cb52e1d3013b0029c1c0949b2ce07a8706e589716b8c48ee1fef223cd33d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e22552132f8992eabfa26971115aacd943bf6e14ecf76e80b0eab45428db422c
MD5 de2cf5e87b9aecf3e3b206d1091d8198
BLAKE2b-256 55ec54ba4259cda80147d648382f691c1ea469d1ad3076e740cc7d57d669c91d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32a81799b481c61422a6d5a3e9f7cbafd38d8159e2520ec0fde3c35069739c22
MD5 a30d050359d8f22fb99ab301ee3af8cc
BLAKE2b-256 85aa6139a2bde48205534a888cdfdb874cff1a38464c078bb2513bcc647f1175

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 485a74a734d59a85f7e24c1b9744d666a049677e758faa00a735d7a2cf652d08
MD5 05f835f16437156f2e626dec44f6e999
BLAKE2b-256 4080e9a04068d5c53e5b936a32bb19a91329e976704921d551df1badbe560163

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c920ab868ec8495018e7f58f00b73563ee4adca2563935e86e24d5f794ec7397
MD5 ed76ff6cff13c4516fa1d5d67a1fc223
BLAKE2b-256 9241a850462248f0e8e435daa87dc20b4839a41b56edfed1d78e3bead61425ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eafcaa5f00eff2a64098fd212575435b8ac5b784cc7f92c60233d43514451cdc
MD5 26df6ddbe659277cfbba5dafb68c3610
BLAKE2b-256 98d8b108dc1ec8f912de3801df989b124ad5946c15d5ff1b9626a0ed06760e06

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52629b9e323b373e67075510eaf201bf50fe9fc16e19b98c9f89a6f15b86840e
MD5 d0e2a06c362dd23a3156be602ab2ef31
BLAKE2b-256 969df555d2b62e067fc6da193f5d7205144493d877144ded2449fcac0af1679b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: bolivar-1.5.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 63ace2b01c46a1b31c1c5e43caeb8eee9752a101b883a22ab953245ddc316c9f
MD5 cfeef8db1cdca9ef137056e876c0a293
BLAKE2b-256 11e1b177176e4b32526405c4315820ba38575767307abaac75fca40a28f848c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-win_arm64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bolivar-1.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f27708af2f62a9b915e6403ea9de273fdc3e68e85e7242b00872e0be1527bd49
MD5 7691c8f8ff215ea8a7989a4f91f36c8d
BLAKE2b-256 d7bb8c3ec25f7f81466150023246f50d927e9032d24395a0498ca74a29614340

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c328d5adcef6a7b32d0c064d2975f2e45da3dedfc89abb9dec63d2b54eb7b9c2
MD5 ce85ba7373e6e96e524cd4a59e4f7c74
BLAKE2b-256 e1bde92784058b3629d94e3116a079433dd0eea2d4378c136caf4fdb376b2a55

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a993965089247fa474724805d988c40cd797a468fda0453ceb372c38160a79c
MD5 af98b15b8ee8f2fdc2c4dfc4ad34eff8
BLAKE2b-256 29423d0ed19fbed6ede50f423788f94af35a6eb58427014991675fb6bcd783f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b55a447f67b7517dd818bd34a946b74cf3fa8cb4604b2cd789a2de7e3d4f4ac
MD5 439673247e5d327989ccdf0babfa5042
BLAKE2b-256 5939c5c8e8ae0af37c65382cae959465951ad47fca5d15a9c872b7d772934fbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 495cf4800fd465eb9b2326d9c8afb1c0781aa9948e76d0db193fcc1a556ee168
MD5 5bdd89d405fb49d7630524e761f5f665
BLAKE2b-256 e34eebd1b7694bd7ddcd5ef4226467c698835e15a02642aa7a56e03a60cd2709

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 223cf41376cf2665549e8f3c921d5ba58193224af5b18a333eac391b51376b5a
MD5 50cec6920d485120d0985871e4c5c726
BLAKE2b-256 6ccd871fff19840bb9ce3e4958b602b50a198a3370be08cf1c0d76bc4f1bddf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47f93c4d38e8eb32ee68e207fd9a1921f7ffde688db6fb59ca0736c6f179a4fc
MD5 ce34070e155d94eef2931294539c3b13
BLAKE2b-256 8cae6aaefc2d6fea2cd28dd73f07a4cfa9915ecf1cf97296243dcc50beb9aa26

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae3baa5888dd43f61d04f9186f327c810602da8f811d9f54a12a416e31c03f3a
MD5 a1212cfdcec607b9607c27d1930f2eee
BLAKE2b-256 284633f7e359d9f2b84d6d51f24f328c8fc4f7b79b127abb92b99a49d442c170

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06d046737ce5052dc4c8cb7c96be8f620aa9e4c5cb7fadd80be73edece1d39ad
MD5 a29d5e920813e9426c753a11072c3a72
BLAKE2b-256 fe0507f9fcde83aa9b7b15215acdbefe9dabbeb54b61b38e3776f3dd9feac112

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0dc75330713572392aafdc71a628d8bede6196e102edf8228970ddbf9b88e14f
MD5 a7dcabac604aed47a02e219a812f1d82
BLAKE2b-256 2527b36835ee2c253ef32ed8d74b2dfb9124a3ababb2184e5dbd6e3f3a24b0f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fc7a69566d226cbf2c58d755dc2488ceaa059834835a7e205edf800e67551e8
MD5 0e073f1866d4b858dd8fd8d76b0d1526
BLAKE2b-256 a551a0af0c2c98792c57c37b2d5a7d53058694adada249d2cf47e54a729bf0b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72b3ce17029e34580020990696278aa4ab85a9b866b2e66338e625a5c6198199
MD5 0fa89d96359363708e90a68f5428e379
BLAKE2b-256 f080f0ee787516064afbbe4ed688f3a80d76772e07973719c5abd6f8a265587e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec364c61d47c1d856ec7f976780c7b9f9ebacddb778d5f9e0548deeb1e3041f0
MD5 bbd677f608869c422897bec61ca9d04b
BLAKE2b-256 d5530d3b7e4caddf6f06fbb2b95cc4efed3051251c2f741b4f7f75c59c74f2af

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bolivar-1.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 65dd0ccde11a161b61b1937a940e4156d551bb16fb945adf8f149ac6837da168
MD5 f5e6ab909a299a37e87326c6e38b4992
BLAKE2b-256 8a20b0748ec1dce32f3a15a08a7178bdf5f288d114a3f32a676f09f1262c648f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0130b58af89a3cad0acf325b438c349b63361fe7b91c446ce24521e33272f43
MD5 09ed37afd10032b8436a9db688c8b40f
BLAKE2b-256 d9a368981a847942ef1a7871d03f0f7b4c588e7a4579cfa5a711ad5ca9f60589

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 630611d95b88a87b413c58b48e003ed29d1dbd64ce835e50bbc87d739dcdb583
MD5 a53fffb362ecd3bdc01463e9786610c6
BLAKE2b-256 259a13779f58eb1e088329b25a24da3cbafa66218ba09dc3214b4601d35df829

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f8796cb310a18b71ad7f8ac601cb0ede2470c834aefdf50fcff66db9d44cfb5
MD5 175e6fa6649a77d4e51f86f88cbb3ebe
BLAKE2b-256 788a122ecd883cb7a55c6a9d3b3ec2023130730e23ce2abdd6185d6f881b3bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e627b8a3ab1ad333d45d14a8e886d6f34bf171d9517a9c666a3350effc948ad5
MD5 bff1f7820963485744ad944379157abb
BLAKE2b-256 fbd6d9c2039b88b7d0a19e786cd35d5e356ab472e7765cba9d653654f1c7ce00

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02750b747aa9aad73cb2c3e0c54092694050a612b24835f9aa3e8c751e183bee
MD5 6ce25ddbc34fa8c2db2adbc690b0fa05
BLAKE2b-256 00930c5c7fa889159e9477cb1f3b198213f9f8cfb732ef138fbddf6e1027c48f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 14bbca0912584b75f92a40b75a1d1814fb53553c2ab012800c65b02745e56d84
MD5 dbbbad75f7bb22e3551c70a71709319b
BLAKE2b-256 d49a749b318297fc88581c62f3c2df0ab37a628b09928e00790ece531863acc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8147340426e4b2f242b589a5f02f890958e9027c795de1395a3172d46162e7d
MD5 5be4eec732753e6799ad2f4666b16f01
BLAKE2b-256 882764fda9a519e0083277680808cf8d4bf07bc4cce5bba026a596e2ecaa8ada

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c51362662b88529f3e973489474b9d795c68ef7369dc9d76f19f846aa124ce10
MD5 8923c63efd767c2bb7c43c6356ccf5bc
BLAKE2b-256 cfe9f629f2843467eb15b02117f6af6cb960ed4f959498938496529550a0b164

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26e52179e5d40ba8aac936523b4a5d332a26bf1857d08aca1980e10e98fb6b03
MD5 74ee103baea9f59c3c25d106b3f13180
BLAKE2b-256 3bfb7ff18ca5514b51cc3f6d72454a295e63a7a66dd8e890d991c8cf1c13777d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24ac0df49984746efdbf88fefb8606d43103d22b7a465fa3683720f33b28378c
MD5 a8c69d479ddf5f7aecfb4fc0856a5b7c
BLAKE2b-256 f84abca614a7cc4dad3be327de2d33959c5ccdff918c8991976dbb9618060fce

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59328dee46c931a31b2a2aa08da00ff3dc6edb59ea7bc91ebe097a52b9da9ff8
MD5 4c6447f7ac87beb0c208e67541f53bec
BLAKE2b-256 e04a3bf9253af5bd1ebfb7f50b3564775d89121fde58f05db7da002f17f7ecb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2690f4df7a2e613ce68c65a24350946c281256dc9b6c8bba376ed8f93a2a6d57
MD5 829770e0c9926b1494c6d5227373c97a
BLAKE2b-256 df95420f080beb1bcd624a7228374ce1506d12f829482651dd898d8f6e06fb2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: bolivar-1.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bolivar-1.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 79fba59d29f6f44e9fc34e6ad69dab67e54a48a0dc27fffb32d4dc2782955780
MD5 8615e1dbbf48a393dc9a1120c7bc8675
BLAKE2b-256 5e9695676ad1d16d708e692e35ab4cf3b20c3e47ba11b1a02ad57616173b7d8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b6f885efcf3df5ced0ae59536418010242fd3aa6c0a4108b677f055924bc460
MD5 52d328d081130fd0fe0c06c9c0ea3c91
BLAKE2b-256 2b26aa67b759aea3caf841552b024e3d2e678b7d8f18108a42c7690076138c57

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 274d0c650a69db94104bf011e934d4b30042861440016920a985e667d170aefb
MD5 70a3f29b4de5639a2cbd8cdf77c935b5
BLAKE2b-256 f625025c66033002fc91395c928a50bd29a994738fc8ab52a2d82bb1f8b512f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4f9478f4fda9cbbad7a640c14422e7d544d8a20d251428f251c1d9bb7ff6f90
MD5 4289e2e3c327ef6407cd4bba23b2464f
BLAKE2b-256 e6a5f002ee4f0fd89b2e8d742e08572ce7a25cfb744d0d723b12fc116e5e1cc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92a44ffd324187469c5b3ec085a5bff2b6281bf07c36403f0658753e812a7034
MD5 d0f6ec58f33e9baee3fa8c46da9b9e58
BLAKE2b-256 3b406d7c2c40cc958fb169992a07c44bd28f7ec13b3abd927b3987139db780cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0aee7476aee9642aa61e826493072f87601331215135cdaa7741adb2a298b493
MD5 546bb813b5e2d7d00619ef84f8935a65
BLAKE2b-256 dd667461a8632b49c3cbe80a209e27e704fddc14f7331b29eccf1649aae3bc55

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0f329f40161cbf9654da1bd433cbcffbca3d62a0ab23a845a8bacd03a5f9ca5
MD5 3391edd6f48b020e92317c9751cfda66
BLAKE2b-256 c8d0839ab9fb9636b4b2c1721d96aefa27e651eab812e5eea5209a865625d00e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64807499b9ca0c4d4b7327087aa178f294c12b644f072801e843f5065f15ae7f
MD5 fb2dd9f7eb833104f975dd236c26b76f
BLAKE2b-256 643e1efe78c273f74b90fc97090b9476a66d5d4800afd2eb6f6e1b3572adb366

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 679615979df29151868021712e20d5cd7d4b653d474942ce92612d8c0d87c251
MD5 ea7e7e180fc0fd1f4d0829fcebe88307
BLAKE2b-256 26a14b814ef754da6fc29da37adba67f457c56f1d49fcb351499116de31a13a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0198f562fdba7254f1a496023ae38e4e7cd038cfdf1dc4a2d69cb1e79b05f0d3
MD5 a12fff4aa0cd080327c6ec2bf99398ca
BLAKE2b-256 41870e03cb027e41ee4880b7fe50dff81aab3df61b1ccf86d329a94a46f2ec78

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd142145b3403002ab4a9101998bad0a629dac6933cd28b369ec955a18fcda0e
MD5 258b18a8124682ecf9b1d16381e70d2e
BLAKE2b-256 a7039bead6707fb2b9298947f2a4c8e41eda7812aa2c22ece33946a0f4eed0e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on harubi/bolivar

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

File details

Details for the file bolivar-1.5.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 325d1453ab835058fd0d91e4d2393d8ce53e396365781c8208ca416bf8c72d60
MD5 b4cea9321e3a775abbba33a5a6ac83bb
BLAKE2b-256 9b12109754ccd2016c96ad2718fd245f1db8936a227fe8e5ecd72293fc4f47e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on harubi/bolivar

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

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