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.DocumentOptions
import sa.ingenious.bolivar

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.DocumentOptions
import sa.ingenious.bolivar

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.DocumentOptions
import sa.ingenious.bolivar

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 (Python)

Run extraction off the main thread in Python while keeping the same pdfplumber API.

import pdfplumber

async with pdfplumber.open("doc.pdf") as pdf:
    for page in pdf.pages:
        for table in page.extract_tables():
            print(table)

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.1.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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (22.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bolivar-1.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (21.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bolivar-1.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (21.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bolivar-1.5.1-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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bolivar-1.5.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (21.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bolivar-1.5.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (21.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

bolivar-1.5.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bolivar-1.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

bolivar-1.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl (21.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bolivar-1.5.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

bolivar-1.5.1-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.1-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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

bolivar-1.5.1-cp314-cp314-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

bolivar-1.5.1-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.1-cp314-cp314-musllinux_1_2_i686.whl (21.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

bolivar-1.5.1-cp314-cp314-musllinux_1_2_aarch64.whl (21.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bolivar-1.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

bolivar-1.5.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

bolivar-1.5.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (21.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

bolivar-1.5.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (21.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

bolivar-1.5.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

bolivar-1.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

bolivar-1.5.1-cp314-cp314-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

bolivar-1.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

bolivar-1.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl (21.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

bolivar-1.5.1-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.1-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.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

bolivar-1.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

bolivar-1.5.1-cp313-cp313-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

bolivar-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

bolivar-1.5.1-cp313-cp313-musllinux_1_2_armv7l.whl (21.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bolivar-1.5.1-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.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

bolivar-1.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (21.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

bolivar-1.5.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (21.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

bolivar-1.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

bolivar-1.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

bolivar-1.5.1-cp313-cp313-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

bolivar-1.5.1-cp312-cp312-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

bolivar-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

bolivar-1.5.1-cp312-cp312-musllinux_1_2_armv7l.whl (21.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bolivar-1.5.1-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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

bolivar-1.5.1-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.1-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.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

bolivar-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bolivar-1.5.1-cp312-cp312-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

bolivar-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bolivar-1.5.1-cp311-cp311-musllinux_1_2_i686.whl (21.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

bolivar-1.5.1-cp311-cp311-musllinux_1_2_armv7l.whl (21.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

bolivar-1.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (21.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bolivar-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bolivar-1.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

bolivar-1.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (21.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

bolivar-1.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (21.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

bolivar-1.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

bolivar-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bolivar-1.5.1-cp311-cp311-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

bolivar-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (22.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bolivar-1.5.1-cp310-cp310-musllinux_1_2_i686.whl (21.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

bolivar-1.5.1-cp310-cp310-musllinux_1_2_aarch64.whl (21.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bolivar-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bolivar-1.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (22.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

bolivar-1.5.1-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.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (21.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

bolivar-1.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (21.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

bolivar-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bolivar-1.5.1-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.1.tar.gz.

File metadata

  • Download URL: bolivar-1.5.1.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.1.tar.gz
Algorithm Hash digest
SHA256 6c35fe445c22af2cdbf9e840995b2b4287bec6b4d047b31bbc176a27c8ae9af6
MD5 bfa4d0a832d14881e2dd4effa0f3d2f1
BLAKE2b-256 cfa45c526add1e0ccc115b75fe974fc2cab6c099eccecf062c0192586bc8f082

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1.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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b65ddc51b899651e3ebc8baa9f5c1051daa4bc462f83a710f00846c36d6ea37
MD5 a3b19d2dbde1ff97019bf752b106c55d
BLAKE2b-256 4d91742f3c53c208301ef2bdc2944f51902f4a660958dcffca3a63768af8f3cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a95c8678f631b91d874ff31ada30af1ebf3076b75e7bdfb6435c94b82ae9d256
MD5 362d44f3782fd1efe51ad371c47819e0
BLAKE2b-256 7f5e7281aa0b7669ddc6c91a1541e0a1d6acebf497a591e7a4ce699181326086

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 768cb2c55478c666cca3be378d4a79b81bde82d8a9254a421779a9f6691b98e5
MD5 0d8244e0097583b3bbaf73486375e825
BLAKE2b-256 734480369f97d5b8a3dfb73fa48157b4eb6d370681ecfb66cbdec3d0f41c40c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d5d1e1bab0c98f76af6aacd2704dbdf2eef85a6f391b62ee6a5015912061f94
MD5 c1ab6a273cbd40e78c52952730344c26
BLAKE2b-256 edfeff992a2488d834ea2a232b69127bf88472250498bfa1a0f1673a27371585

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 782db00b142f526c982674eb7ef5eda51523a6174b05d0f2e1a944262a6da987
MD5 4b89f27e98edde158b73c4ca408957ea
BLAKE2b-256 17d76561a47ed8669c3945d4c38334ab31bdf2598d9b59abd94c3896d8a2c38c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 17d8da6676558928b227836e631f1ad085f5e81bd990c156196601cc71eb261b
MD5 e54b9a6acb01be8e1acb79f3c4c1e55b
BLAKE2b-256 78afc59aae65056ae327eb68338ba463fbfc6bd5170711045a21f8d096ffeeca

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7226a9e3ca983bedc42377d47570ac9fe31a928426e86e2970b4c2fde96bc65f
MD5 0d16ce2a0f066f468529e13b42691cf8
BLAKE2b-256 7a1268b4ef093ac9e22e23ac3b5002e38271637062ac803d7271c08be0b339dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bbf1397e85b93103033aa2c245d97444f583f0ee4b2d87a2a375fd24520130e
MD5 cfc16db68e261a74594107540589d06a
BLAKE2b-256 a8e5d21b512d889edf7d7972e3e1015d3e37f3337cdbc5222c77de8767b36549

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 38d37bb31f9b4f88b59df82651fa2b76531be0ac3fd4195df92872813eb96c61
MD5 ca53e550e7426f97e80924a430b1bfaa
BLAKE2b-256 94e80fe32d0c6b32ffd802d9719ece603f30176fab1abafc3abb7b1d2359e716

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6144294845d6cf4159747646095806f77027140ad1abb096c78e1c94cdb3a924
MD5 0b2a7ae3d5921dee36a0f579371e80d7
BLAKE2b-256 3ae74c0078e16fd2aec0f1a40db3d371757b8c40d4b207bd5ea494b1dcae4440

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62162b23351fb03d259f3f2b83154ba54198b0a6cd6aec0093f2ad00562aeef9
MD5 95f18fc7b76254508887e84653548426
BLAKE2b-256 82b39f64c27c8f506ebed650f61112109d77fb77c5b9a7be0eab7c1954e584cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2841f3f75c8b8475ba4b8d890eccecac750d37c9fe810beb532b70152d850fa3
MD5 d1374a1b1e9e39227f0c3b60833930b1
BLAKE2b-256 97f431d72f976db0f8097fb4503fdef744d6e83f1a91e072812c79f499d46234

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9fca469511dab43099b8d394052d74da965ddf4d520eedbdef6d3c6560021db8
MD5 d10ddc276218ee933a5ecd7736e6bc2a
BLAKE2b-256 06c5b3888894adf9b218a7e8f5334b2113454d9366a70fd57e8f71fd5ce6c45a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e6ea304dfe2b73081d0427c1a8dc682f6b1d7f5dce0bff30a8776b089d7cf8f
MD5 c90a6e68effcf235762941c36ef70de0
BLAKE2b-256 4f968edd00fb74079d4bf6ab7ac03654ad43f2342635e1a3904cd9c2431dcbaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a798877caa2bbf865dc029f781ba608aa3d8bf0bcd60e54af8652947fd6f5d1
MD5 d3b2172c56fe2e68cafca7ff82e8024d
BLAKE2b-256 b2b7f707b4db1e79565f5ed3f638c9105a645f9580e7f2b2f9f1e48a4acc58fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a48aa9a2f633218b8298207b705ddbff513953f79ffdfaea363645a571492831
MD5 7fa63b0a29a6807ace410de99cd37d10
BLAKE2b-256 57ded34fdb9395225b41cd1f4d65fbc809a33eb342e5af0e36669609fe2cb28b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b06e432a6f77e489042254ec32b0ae90bc56269f0cb2635a3c0ee7f4d759cdb9
MD5 e8349ac402d5eb134594ed77dd8d97eb
BLAKE2b-256 0b6197ffc3959e0df6f9a125e9d49da16ff2999315c8daa8e5d8e35519923f3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a36106bbcd5d3ce3a96c418eda5cef95933e839216c405710b3f8548a5b5dee3
MD5 83d3e9313a905bc0c2422f2acabf5379
BLAKE2b-256 0f5fde25745e77fda7bdceb2f6bbc8efc0b8fa8161b25a8626c0235e1284e3ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: bolivar-1.5.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.5 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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 eba64a447c637ede439fc99c0d02d72faad5fdd0a9491ae00f9e95002d6f1e3a
MD5 265dcaf1430e5ba61ec761b447ecea18
BLAKE2b-256 495c881b6add9a40914f159f76679cd819eb6376f80a0ed305a68b1b4bed349b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bolivar-1.5.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4925ad58802aac2e19b1b04db0df4bf36f0d0f2150848721105ff127d01eb1c0
MD5 f3082e21e337642af97f5006ffb71001
BLAKE2b-256 3e049dd1359072ae8b1399dbdfc97a91ee99d83ccb9199dfc32ac3b59a33f22a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfbe5e87ec15f0c58e9210704f4aaa735dd8314e45cb0e54697c5a06806daa4b
MD5 b975ccc018a6296d06fb2c374edaeb40
BLAKE2b-256 c6bd67106086c650473885ab4e629def939dbdfead83e3f5d66a57b7a19e3edc

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6426f341e5df9edbb8483b29edfe67a51050757474cfac11e5950f63019e4f0
MD5 cfdd08dc747e7970eb6e568504690fd4
BLAKE2b-256 68a71a4c4b580f50b475f78649615dcffcd3972d66724f8f89fac404f9b4708a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b3dd06888a6ea051d6c5931e8ba469d0a8f07a699c8c107bf7533647db9a494
MD5 3df88094ef556afd3f80737ba59f3433
BLAKE2b-256 e2d7184a195ad9cbd2c02fa25f780304be14378b5525d144bff7fcebc7424060

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad57d5b7872d620f46efa34267adf65e49c89c4aa7e825a09655036aac690538
MD5 77418aed1656c5f89b2543f0e461b842
BLAKE2b-256 bb57f266b61efdeb10e25712598102bbf4ebc2bd4c0854667005d8b4e514017a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 529343119b0e3bfaddbc0a334873cfe41bc86fb5aeb17cabfdf96904815fbd63
MD5 4ec2e0930c07136a80f7c4f589fea9c1
BLAKE2b-256 1a3b01c620a674242d63e0c31b2a5a2549b900a5b41ae4a72664d635dd2f1505

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0dabc9eeee26a10405e6e5d05d9b98d2b108f80849800c571b8cebc3ed80fd98
MD5 7a291a945cdb2c53b4a5ded810de4817
BLAKE2b-256 ae8fcc1120175ace258dd0594059142c24dc68a8aaa5d50d7c5f6a03dd6bfec6

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f8e95137070582b1f4d3f4c4fb45ffc571afc810db60b31840b8b8f9865b554
MD5 4f5b61d27ba960b43a80133f4780bcce
BLAKE2b-256 0e1ae78723e6982f801bfbb2194662e85b2e7748cdc78e574a3d9a7964cb9044

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 700487ac4b9590181b6c75c038e59f0d9a99cb4da5cc408b4bae851cdd0325ee
MD5 62dff78e73118d8d18a08fa521d91c8f
BLAKE2b-256 5a1cb58a1309f5216b2f66db639d76afa0806750dcfa8151676e642de4514cee

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c056adb692d9770fc82e462dfc2a1e6b6653e78806d7a581af7623620a02b193
MD5 379ef4bc3e6821a8bf6476fd1b15b18e
BLAKE2b-256 2cbe4d4d72ae082d33639f642e4a9e93c575d30fe8636942e59b53c9d93cb03a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41f44e4bb8ae5ef5e3207ddf81f0716d1d4306a9f3aa812447926ac2c1647b93
MD5 cc01d7c1d3eff5a4615f71155a798fb0
BLAKE2b-256 d8a335f51d575dd167d1a68aff808a13e8672e5266542bb55b5b12e59c9568bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27f7e1dec9854b10d160523ee78792531724637e1aa7124e5d61c59e772b4a8e
MD5 4e7d9c9b9d035fb085748d74e3f82f65
BLAKE2b-256 1c200f507f76f9899f4004912eb92bdb2587aea7b23f1612a92c6e90adcb6ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f129951559c8322d7debfa27d18fbc724d76231c90c45ea46c4a432402a7994
MD5 b50c4ccc83ffd8e20cc1c27754db501d
BLAKE2b-256 9ff2bac555c9cb4415abd01c908a2da19fab83581f263e9f03b921dfbd38dbac

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d30cfe9df693c024a43c026df36993c2372a9e641ca976104216c95027c1f83f
MD5 7e0a936b5439ea4f94d0e013938b0059
BLAKE2b-256 6bd4c70a390252a4c468754d7b811bb3230ba5e20a165d794e21257e1356d235

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a48d46fdf7e04050e7d5a702a7505fa8ec529bc8cdd1888a93b184253430d68
MD5 f0ab40071538a7b05ab7eaecd0468298
BLAKE2b-256 4674deb5173b0e41aa6e75c1524de6aac6e06fa228e4235cbc9e27a6c43c3efe

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c43931a57e875cd5f0bdb9bbdfda0086c1ade8fced96d5b5ccc187acdd8a96d
MD5 90fc5797566a60aa2803cfe0ed91e3d9
BLAKE2b-256 32541e59d80f8695a02f7f03ed56c48532d2b0f83e5bd26576f31b70f08b921b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd94ae995615b9cdd0f5208f39d038cdb2733e40a601a6756c72976d8b461b26
MD5 82e53d4283d646ba4e0fb967bdad0e69
BLAKE2b-256 251c117bd44431361efc0a672e77b552148d97df193d13904bd4557871c876cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c971ee2a9aab9db2444950e39bb33d328b1023f467ec873e07a5ab9462b9982d
MD5 448b7e1354b3bed8ffef08d13062664d
BLAKE2b-256 3b76ff62e609cfdb6648abc5b72783b84fd0f75cbb139e96207471843d3ce738

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 646bd8c0b3b0c76fdae339d952a409bf309e11a0347064cd3281972901e02b23
MD5 4d785a932eff61f9eaa9c19e62dde3bb
BLAKE2b-256 365404d32afe467ec1dd8ff533b5cf59eeb24690f659f9ce08c2d36a459be629

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 82f76147b5a14a5fe5a33aca4f409463470e96d955f84e1a42cc5204d511b387
MD5 8d9bc3a20cbbd1126510b9e2d1b4d5e1
BLAKE2b-256 41ccca1e7a231c3b4438d1342a8e34b98386417cf49f0d2ad2a38f70c8ca1637

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f1250b75c26496c26c204fdefbbbc3d7452b34a353404aa6f996f77475e6550
MD5 2de32154da8b7b9701e80a2eabcc4a5a
BLAKE2b-256 176e0ff1d6ff020994fa75e39a41d204babc8dfbbb45db6db5905121ad79d32f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: bolivar-1.5.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.5 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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ccb900de9553e42d36ac050fde5ab7ac8bbdf37bb16ccb432d0b674516ceb4da
MD5 a281e741d9e68a82fd26473289893d25
BLAKE2b-256 2508d5dde510f4b4fba978634481e6df4427092fdcd0191eb5cf4c3eb8064f40

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bolivar-1.5.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 119862684181bd947c4582b5d487733af1028057ed63b6dd3db879fef3d7c9f7
MD5 c3aaad70746ace10ae60e00f9d4d1aef
BLAKE2b-256 4ddcf6514bb3fdeb5f137663a1d93408e4fb499b747ad4bb9c343420f4441b53

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: bolivar-1.5.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 87fd9e07ee373ad2fb4ce605a56c65100883b9857575bb9ce4a1a6dfe4e83304
MD5 7616bc443b53c1989e57739e3b1f54f3
BLAKE2b-256 948d9f86a6f88c1c5f6a24d6e5396397cebf3c51588a8343a561562f0832296b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce428b5fb30bc8197b79f27698e34afe9bc5eb9f6f463ea75187f0ee1abb6448
MD5 9e10bba3741a4490744125bb55dc84c7
BLAKE2b-256 082a9195349cc95dc2509e50a2b90d9968e1efda95e7ab7a83ccda925e919905

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31d1857b0b509fd4b3be43a2f49c3f9e03b2bf27a1258a5e2185e11fd05fa69a
MD5 ecfe7b19f5241d2ed9fb62331e4e3cd9
BLAKE2b-256 7925a466cd38ff84c09f34493c9c4343ecb68680efaadc75e4b68648f170d690

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 934ae68fa861621f3e0e85d8dbec8f8399128f63988e8f62e100a6e921cafa47
MD5 ab93b1064837248f63d4bf7e5ca9e998
BLAKE2b-256 5e8002000a937b328699b019e71d5fa657242b39c084621d626b2e47ed5b7a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58a7f2906e4824742e8c12de9a975566133b98d95b1419e7be23400b945c30e8
MD5 c06d97755c385c147071665a6772b66f
BLAKE2b-256 54c61ab943b5823e55991841bc65aa47f38c939a0a941b5050960b379419aee7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba9ed4e5673b6cf505e3c48c355c067b4015e5add621613f73288232bfc918d1
MD5 f53c178ecb6077c5788eb062bc165dbb
BLAKE2b-256 d4e942279d90a6fe5603f654da0cf1b2e30374130a83ef429ec2f79168575834

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f37e3813b8761c8b43f6b363e02d43ef5e2d7d61082274760edb678f30c3462a
MD5 fb2aaf1e7e3a588e18e1b4bead191717
BLAKE2b-256 96c0862776561de88c6621f8738171cff14d2873261027973d15dcb332eecf15

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec1dbeeff637520f7ee73024705c6c26bf70f6c0425c424bb8d499bc1aa4a58e
MD5 ffb42d60fefd255f80db62e17de0ad99
BLAKE2b-256 0bfa167d602714f78e5468031107fffe5ae25cdc05f674e4ecc9e3f3ddb3fa68

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 210f0d99a576dbfecf360dbd2d3f1c74a99edc7277f992701cb469ab41e515b3
MD5 20518b45b66530658d0c7e617023e9c7
BLAKE2b-256 e991a3f4798ebdc2df73dbbbafd0ea70eb6a0666a57cbd0f6e243ace29239a5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da5bae8a1ac9d4e941dc13e0f7ddc51a766a755c2afd2c8d2aca77fedd87b234
MD5 ef8c6427aedaada0ac87cf515a9ecd3f
BLAKE2b-256 6e92022cc1cced48e0053725f91e4054b0c7f82dd466a4df0749a37813255195

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f642b8710a42d5c6fbe1b844cfd548a37c788921b36e3e680abb3a9d84a58aa
MD5 b54ea192bfaebf37928eade511daa372
BLAKE2b-256 dc34de0d4d8151eb338299180242632226def62b78d3982b006725b47e700a69

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 899c1585c13bf6c8848c320df8e2f91846485a4b4bdebbd3f498e2f26cbe694f
MD5 f003c55eea2f190f7c7f957b0912fd74
BLAKE2b-256 6000f4b2210d9531054a8fbeb11a00173e7e8b28ad18b8fd17269bde322e5d11

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39785df3856eb2d6c35366994b379010cb11dcac8c1a3c94d8558f41b0c8fd3d
MD5 34d3f15ef99c90d400e0572e052e3e5c
BLAKE2b-256 2ad71b0f68fc564a84b0436d40f2516d94fd195032400b85b3a524cbd96b3fa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: bolivar-1.5.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.5 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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 52bf15b9dc386e5db3b8f10d7ef496751e892a3f04854ec3510afc8dae67c84b
MD5 a6a0cd549c3db0e36d8988c971a967f4
BLAKE2b-256 4b08b0b053ad1172ecaca00d496a841be6f55da306cfef5343922c5449c449e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bolivar-1.5.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bcc11e07390c0832629763127b97406e386ff513b8e38e7dd35b857984990824
MD5 563b3dd4e659b69b96b93859896af139
BLAKE2b-256 95e52997234ff7642c6eb6da3292b7a5e26de813c513d21557fd60329bdfee08

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d58b327dd7870a63e66d2a77052d9875686a49bdac6de2bda681edebb7eada59
MD5 7e94f983aa5f393ed9e3e08bcd1db741
BLAKE2b-256 c6943e4308975198bf13e36364698018d1b6b2445117c68f0ec4dc514f2b644f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a1d52f8d44ddd297893099a324d5202c43cc187c29b716a779d442294d3f4e2d
MD5 d65f82061d2df998dc98bc3c60441539
BLAKE2b-256 1f4d207851e8270fd3ddeae1cbcd2ea9f93cdcafab97041f4fd0244debeedaa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7035b5baeaabf2fcb9ef3a5b5a287f9813c4579293973365925418158fadd913
MD5 072303d63d01ff3e5e11e15aa24331fd
BLAKE2b-256 478337f12e4e3791c761dc654f32cee6bacd360e2255bde0e847fcd04d190487

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5199cc41a2eda108d975b9cb541f6849cf7d578de79422f2465e967c34276c6f
MD5 2899b37006f055db28c5b175179989f7
BLAKE2b-256 4d8503fc6306d0832ebc8e6bc1b525d082182f1441a2269cfec69903f6448dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45dbe889c6d329a66201fcc02f988a649d5351cb22146c66886b2d34f3777635
MD5 800454803513a79123228d40a6e65d26
BLAKE2b-256 7d82d31c13069354c8bec634be5e97a213f79057d2fd26676c164e305bc9c8e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e55035413506695493ac784975e6750033eee67b1465f7075faecd0ecea8165
MD5 433c7c045e80e76a851998d6814815d6
BLAKE2b-256 ceb16ff27f6d0c51e4480d8061255f9cb3778b443a60c18ea14117008103b1c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a683e1a15c4c90ad1e7730a33be634ff6d2af4bd51bc524ef41ebb31d21551fd
MD5 27e397f4cf59e70b047dc1398d6d7ae0
BLAKE2b-256 c62072042062d85716aa012dd5e0f553874e722bc1ae8085a43d3bbe40997cb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41fd7da8068dc31f8d0efdbf5d527909002b3392e4c7e911558668d874015572
MD5 1f322ea1d3f133ff6224a496fa6cf4a0
BLAKE2b-256 a7228b45edb3ed3ae7faeccf0aa470002b1ce49296e6710076ad5bb6e5e8b147

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0475f41109c6b404bc51334caa12f0fb6ee1e1382dee1bf70c3eed0b2fede3b9
MD5 5a89b96a16d2aafe8b4c41610e83e18b
BLAKE2b-256 d1542d17903e0cfcea56e5cb48739ef0ca5cf506697257c2796e4c5c887387ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b85b84753992a6b5bc0c95206b18d48afec190812458f67dadc159953b6bc908
MD5 26fe61e95f50022afa643c68f69bbe04
BLAKE2b-256 d8417dd8aaa3ea02d8d3fbae92df8e2acf4b66c253b4f790b7d66b23a8641286

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0b55b01c7245272094798dbb0fa7afe690ea2c6040c32c4c2939ad091e31e7e
MD5 eaca69cb9dd42c26f9577c437ae42fad
BLAKE2b-256 04fbf7647ded63c24844d638ff8845131ea5ca91fffc9b898b389e33b45b7e72

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf70443882db78fbdeec5c4290757ee1823eef3d8665bb326cf797c35aae2d49
MD5 258715b93232f9500140f6c4bb70ec17
BLAKE2b-256 460af289a135d0152610946deaa4bd9fbce4a3250bcbc2c31bcf3c32e1726db5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bolivar-1.5.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f8ffbc3a557da34b4c2f0e9814bd282580c2a9cba0b216f6b53afc2694a061d9
MD5 ba5f6f017193b64a84cbc9d5e2a3e6f1
BLAKE2b-256 90e0db46986ab85f0a8a17f7458eed6650cde9a48a6855121da6bf633e04509d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54f5733fca4fda17a893f742b5f0ccd85c9c5d5b6cd47aea045e3d5c767d3429
MD5 eef62aefd1ab608155a4da2e1ce75ce5
BLAKE2b-256 2f1bddd9511fc7ecf9d345e1cd74ed3ce356e1933714baf9fadbdf099d593e33

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e5f16efad4ea02ab5f84f275b9da69e774dd06957bfeac7683aeacba51ad071
MD5 fb81554c235472c45c347713156c2f76
BLAKE2b-256 bcfc7f56fa4111c6e9753462ee532277b9f1f924befe4b95338a026555896996

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e249efb133c06e13b1d5881af3da96d61f230d2cf7d259344bdf212b5b0d48bb
MD5 07b4352ea5890ad29f00cfadf867864b
BLAKE2b-256 da72ae8277fb4747f77a66d72d81ffaac210a82e99f5932d84a3ea759c614170

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e761b8084d8f70199cc5dfe3b29a7aed28f30d96be548b3a5a2781a2b07df427
MD5 798a03346d471cfaf4cfb77cdb2b044b
BLAKE2b-256 e98234d4799777d86ed3d94f14d1f1e46454e9302c17b09cc28d74f30a7615e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2331a8598111e186a6a4ab75eb5e151553d8d8ff52c513d0036369b5c1cfdbaf
MD5 268f906e3ca43b2720f9cb94af0b667c
BLAKE2b-256 2062020de65d056be2523c5fa826a401894beb1bab7586672d79313d5a142825

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 662c7375fb864fe1a29996987bf600fa132d58282f058a30a846232c7a748fa5
MD5 cbd8882a164e16f57d0af98f960d26ad
BLAKE2b-256 d7d56d92242ffe40a557d4a9e77bd264450c6869e779aa327cfd4fa6dfdb4cbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e03d8f35598bb70bcd42d9ad32f23c4c6d0c70561c558e226bc92c92f61875f1
MD5 3bbe9463548a09a8d57a0a9af07bb73e
BLAKE2b-256 96cccc087083e68196ac642c913fb5819bee10cf6031f29c6e915d9409eedd0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2347439574151dcc416e9f0bd590c0f03e99d3a4bffd85cc1b9261f3652ffd4d
MD5 8e50e7d075d9ab43e9dbd1eb8733b3b5
BLAKE2b-256 df528dff5d99f6d1597dd27363406bbe5e946c16b35bf756cbdaae5fc3fb637d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4827caabb6eb37d86cb198ca938e98493e0f09acadff4b795ea49d31cb778f47
MD5 ba71470cb0ea463e7f224691b2dfbc66
BLAKE2b-256 f6df05478b36b3c5d6a472b294f30bef9961a6ece3d170f09c05bb412ee2cd91

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40829b55965b940bc11c8cee3f5812e56d637af9561948787a3ec48bb7fd2671
MD5 3c415a1c24f44b3c65ff17a1fe2f22c3
BLAKE2b-256 8e0dfcbfc5c6f4db2d8bd5843d54821b4e825949e51fdf84d4aeebf1255e4312

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d16b84f3dbc1ad9f07cc8eb830fd0dbc320f04731d4edf5104dc3d3ad6ee9417
MD5 3de5068032b7cafbec48ad9b022589f6
BLAKE2b-256 005f41c8aedb1505e22005463069846f5dab3df522fd2f9ec1eea5344da850a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3fd0d476e40bb96fe30dfa288d06eb65cc3e3e572f420a2d2bc620ccc8c740b3
MD5 abab03e2ad109be8e09f67ee05b64acb
BLAKE2b-256 d5790c17368ecb77965fd28107e92ebb813068069eac8f949603c08f4a7d5b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: bolivar-1.5.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bcd0cead1d00524af62589a320a4569d7edb070fad52d82bada2eb440fbdb158
MD5 0e1fa4c1a23648d483ac9de7c80d225f
BLAKE2b-256 74aa7e15e6694ce1102a2f33e077b91f76f9795020653856b10f88a2d822402e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13572d1492828ae7715510b17088fccf28329861035f4a2431ce0ac8e412c15d
MD5 26be2f27bc1b431e7223267141769b06
BLAKE2b-256 255205ce7534d5c4705dc89bbafc643ae93519a58342883af52fda1f5b7be3ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1fe36cd8ad6b327d71bad145a859fd0e456eee35854975ec9f390ef0c1f3dd2
MD5 8f65f95c118273f4d9dd74089b37980c
BLAKE2b-256 e0f068e70f1d7a6927ac92cd7465e17971dd97c5e158d89afe1e6258a85edd3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68c3c1d1a5ba459cef77d10f74ae3643170a645edbfc1d6215d6899a7a445a09
MD5 5a5c3c122d1f5d2e5f1caf12753d4da4
BLAKE2b-256 1528e3d2f9901418246cf29c617ecec21643e1665d89e31061227e67735713d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 638c0ded49c6e9d642684d83ebc62cf17dae7924c5287f3e9f15840f3fc47f22
MD5 0ce1b7bb9690bc1b8753e4f63debe1d5
BLAKE2b-256 aed69505a9f1f55b4a559bfc7516c9b35a562db11b98e26343914766284d5d65

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dd688857b08ecc89b99884d186456175facc4d805f9ea53835ef5da2f7af3c4
MD5 d981747bccd5d93a6acb09cbb4ec8516
BLAKE2b-256 08067fef2e820d08ce5e3b4d73a576baf1fb61a7bd07e63f40f766cd81b63ea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0ed3971b31f5eeac8a7e219b03558d3e4202c794828bb6d2bd3eba165de24a3
MD5 816a90b98f9d2fb20085775b5ea8a81f
BLAKE2b-256 e747d6f831e4c9f8e93050c56e495d21f05e9d587b993e511e273b32313664a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a34c38f9742bb07b0f0304628b8b36a5224fc78a73e88be0cc817ea80dce782
MD5 ec814a55e30f550a09c4df3edd917c44
BLAKE2b-256 2c8fdae4e5858ad618401c59f48e563b5f8c3c0fd3f83878269ae52abccd3f49

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c2485dd23994e65b129928be220eb75fc5066274164a48b5d337dc67529d6b1f
MD5 2785986d181f5e0631f5c79309f1acf8
BLAKE2b-256 2d31a6b1cb9c95cfcef7a129b9a388d9a9fcea64071b9cf0e44c9810ac27d46a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b800d2a871582f536342c22ab864577a366dfa46f201a096d2b5f135ad0dfcf
MD5 8d02735d4e1fb3f2904e3b9ee344efab
BLAKE2b-256 bc0621c9b8d348263340d7824b2041ed0aa66fee5b2aec06dbbb2293be6d1fcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b3905d8a9086c8d168f53d6cfd5814e6eaebaa12f1532da0a153af5ce1fe0f0
MD5 0d963954a1e78ca889dfc198bee83493
BLAKE2b-256 19c48d065c3c9a500d1f36fcf23e91f9c9b749a65e04d5d7f07cef1ca67845c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bolivar-1.5.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 976055231bc4932dc297999800cce2db15ac436003418f8d9966aabc09cea0f7
MD5 8a2ad6fc23631cd1dd2f7e3847239cce
BLAKE2b-256 813815f61090c0f38ac2232f6f1cb19d7cf35f8459dd22f7839449986885351d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bolivar-1.5.1-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