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

Uploaded PyPymusllinux: musl 1.2+ x86-64

bolivar-1.5.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (21.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bolivar-1.5.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bolivar-1.5.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bolivar-1.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

bolivar-1.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl (21.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bolivar-1.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

bolivar-1.5.2-cp314-cp314-musllinux_1_2_x86_64.whl (22.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

bolivar-1.5.2-cp314-cp314-musllinux_1_2_aarch64.whl (21.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bolivar-1.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

bolivar-1.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

bolivar-1.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

bolivar-1.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl (21.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

bolivar-1.5.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

bolivar-1.5.2-cp313-cp313-musllinux_1_2_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bolivar-1.5.2-cp313-cp313-musllinux_1_2_aarch64.whl (21.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bolivar-1.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bolivar-1.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

bolivar-1.5.2-cp312-cp312-musllinux_1_2_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bolivar-1.5.2-cp312-cp312-musllinux_1_2_aarch64.whl (21.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bolivar-1.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bolivar-1.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

bolivar-1.5.2-cp311-cp311-musllinux_1_2_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bolivar-1.5.2-cp311-cp311-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bolivar-1.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bolivar-1.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

bolivar-1.5.2-cp310-cp310-musllinux_1_2_x86_64.whl (22.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bolivar-1.5.2-cp310-cp310-musllinux_1_2_aarch64.whl (21.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bolivar-1.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bolivar-1.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bolivar-1.5.2-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.2.tar.gz.

File metadata

  • Download URL: bolivar-1.5.2.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.2.tar.gz
Algorithm Hash digest
SHA256 3b888eece18bc07c06c37143b013dc37629395a0b2e26369906f04392df4433f
MD5 088f1f460c8a6dab04d31eb0c4f6b733
BLAKE2b-256 6a66f02813c47b895e82370aa2cdc3017f375141126a85974dd73b4a29574350

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d407cfa661923851434fa806ed5499aae412adac9e142303dd74b409e2af642
MD5 892724cc228e19587233a04908deb124
BLAKE2b-256 21f8722c8c492482ef650be8497a0d69ffcaec024fe40ef0f1f19175fc1b32fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 637523f827940a85bb6c9212a6185f3f353d4c6b3927bcbfc6e02a31fee1206b
MD5 34e1fa44c5c306c02dfae320688e42c1
BLAKE2b-256 5b453290ecd3ce0206dc9461c30170f697bbcbfcc874a0239383468258db60b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd0211849ff01ca89a896693c1dd6611fe0debca05a26738b5e8a0bcca001a42
MD5 642b851f8b04e29d872d6e3da2b39ffb
BLAKE2b-256 42167afb6c63cd6435c39eb624a482d5c13f68d2fc668791f4bfdde58c2ec6a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ec99ee9785fd1a61ce66d43df183275ab77bec06ba6c424e4f2411c6c32b4f4
MD5 415adb762f3ef9028a0a219d928760e0
BLAKE2b-256 3b34726c57722b4939a73e753005b240ba2ff93b7f9fa1fcd59164c051c01ab6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b77bd0d5a5ded91af56ae615906a492b2a3adb630f2982262ad08cc97fe296b4
MD5 063ffd09bcfe5deb46111961a4904d94
BLAKE2b-256 fb8ca09bbc87200e4024d5d06d79f56f48810c30aa41ff52a9815ef43667145c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52bf552f3998f15f79fc53930a579c2363c465193a0b8fc318f5bfe8892bdef2
MD5 78ddaf3719f43e2b7f8d36dfa97ea0c2
BLAKE2b-256 5ebe8886043f87ed191317f982b8ab881457e1401beef2927f753112c0e0abe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e66b545012a074f155551d50552692cacffdf0227c4e517a60135ed5f96967f7
MD5 fa1bdd1a184ccd6d4bc3ef317cff8747
BLAKE2b-256 5cfa288e44e631f5ec66c3560342f00015e3da73f8dd2041bd8cd930346f1b28

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.5.2-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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b24b406d8e8dea9c31ba40138fed99f0cfe6f0858de23d3e681d96e136382e50
MD5 f8572cca2f07d8c37e66b17186f8fcb4
BLAKE2b-256 2dc22edbd51e1a141db30672e3253ceaf1ddcd1a0ca83e00cbf67fa001a3cd64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca126403eee32f91b74148ed53fe0c0163dce6c25b912f27343813a9dcdc898f
MD5 a2019e60fb29e783cd853fe829bed208
BLAKE2b-256 da6ce24f5316b2325af0e2771cbd8ad0f8b072cfd50cd9c1b85ffdd7e705a7b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bbc5249a84ded7b18a6003c11225398a5419e7c0d65e9b9f0cf915e2fa92f78
MD5 f779aa7a7c3457eea1f8d4773533413e
BLAKE2b-256 2bc803c820bb9314034ebc32b9d94c492e872f235bb079d0a432854b57f8ec62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d8cd1f77b3b3dfd1a369bf1229aace5ebde76cb8aeeb003f9280c66ab4e9474
MD5 2e3a4a0522e087ee145d47e3145d92c2
BLAKE2b-256 811191da3d4e396dc6157c2348d6565cd537bd0e09ae4e5ee5b0696b0990bba6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58e12e6bc144f9030336e4754d043383cdedc940ee5e14ae2fe06514552eec66
MD5 867d2396821d4789e87689c3afcd2ec5
BLAKE2b-256 58803821a9c3c5b1b9cadc7aa84412d7cf6b0ad3adf5145c22759a21b956ec47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8146e93a94622492f3ee73fbac25728830d0531dac25bbd182c0bc52a110f4fd
MD5 181fd4a5286bd2d626bbc47d067b74a0
BLAKE2b-256 d4779278dff2e19bff45ebe8a15e42d8a2ac5e48e2586baf1919933218c16785

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 889c9d84d925fed13652f104f04fbf5de7122e4292307d44bd9974a610c56c0a
MD5 c1ed16d9aa5d00bdd7349d3ac801e9b8
BLAKE2b-256 48ebf623322f7e33e878c4053fe7fd501e72102365746c17c98c883363b97b59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6c09b3eb9ad60551193490cb8fc84378489da1f14c290704a25c1e7ef561f32
MD5 7c11a18b4eeb377ef5847f74f44112c3
BLAKE2b-256 17498e44a3fafb84beccb5370e3a4800c7cfe3c3c48fb72f58b3d700b6915ff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d39d94bc31bdccc491e5f9b6f9c12c47551754a79a411302330dc771f0021f4a
MD5 dc418a5a75153143ff1a4b9f0b34920b
BLAKE2b-256 efc7e429f6def98e2727b79b02927605f2b259f97c6c0c189974d1724c0e67e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01107f6bef1e269ef4fe86fdac71bb30a1087c49dbab2d6d9739e3db6a612e81
MD5 71c169ee3cfacf7831d9c104f1cc2e00
BLAKE2b-256 a9ced2c344a0bf8192419502584c6dd554f88bbe81d204cacc33ff37791894d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.5.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 09bdcf5bec50bcb30a82dd99d5d839d6dc0e48a1eb4b1219173068b026a52b28
MD5 cc619a87476673644af736b856df90e3
BLAKE2b-256 b946f8f895b16addbe9d3e774afadec33258e39fe4799e985a1775750074328e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9b01f6a4015b45a0c4135cc03509954de08687fc4fccc723262bacb9c766910
MD5 0957bcb713b8c4596a62d99c6a5fad09
BLAKE2b-256 e890435268ddfde3571410e3861bbfd901b3c4d86b030e3cdf20628ab902028b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 915629c7aae78153d8829a410ead3e9ae10ca8aba790bbc9f96eef1975c739d1
MD5 dc73fae74c2cca62852b0d1c22e16a49
BLAKE2b-256 fe8df31f3855f881f3cb95b9ede102a7302db6ca0d4a871db47446d2fc1472a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdc61ee49f1e01199b35abdf05ceeb71f848fb59719255ada308c6520b6a8e03
MD5 e93bd4389fa1bfa65e77c52f2058950e
BLAKE2b-256 fdded95ff384b398af28c05688fa2ba691c5d0268890251760a205b1cf956ac0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6ed9253a9cffae42ede898bd0d8df0fb9c96702bd285839556f685690a27b76
MD5 7151898fb5bebf74918cd0eec5c08ddb
BLAKE2b-256 c4533110c52160a78074ac8665cbfa8cf0e4cbea797030a63aac0f634256d7a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc777054fbcdaba15939ee96b431045bfb7381654bfa1d237724706afa4803a7
MD5 04c9743365b48dbef4f1478a1ea0973a
BLAKE2b-256 992129646fbdcca857722d99d82f0fc8b9fa19e575b6adafab25e5d3fdaff831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1699a311de8418c43737d603bcb4770501d42ce488ce8b4561c3fc6cee44b18
MD5 49e0cd1a16253fb3513e31ce1612fc27
BLAKE2b-256 e4640eb02743414e7d3fddebbe338dc8f6021793ab9611f44a075ef1ccbb33e5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.5.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 601a40e207229414c6a62c8682c0df62e84fc66b07b1823395a52be0b1d311c2
MD5 a5b9b46e8cd7ca8b75e2311477d6891a
BLAKE2b-256 425844b26a7b94cb86356fd0d3b1c0de1f2431e492cb30a8586481f1d2a76955

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ca4f4ece4bb1016955a23529435cf97184115520e6b60793a8de544626bf089
MD5 51dc6248349c0a6ffdf47388b3c0b3ca
BLAKE2b-256 8ba1293c62353b5067d60cff1bad529f44fa585bb1678a958201253bd92d3c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4023d7d63c7f55e918df90f3e1ed0403edcb2d7c395f15f5fb0c8811d727b0ff
MD5 de53bbe81bd4d0e576ad29b92c641d33
BLAKE2b-256 77efbe3824de72d8b9801f15661cbfac3be2833461d25c7badc78b9cc0ac2824

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcc4b7d3fe0e9912977db5f182ee48c952b34e25f1e8254b3f5598e113bc9c0f
MD5 4e4dbd13e0e96ad6c25d28268d92d1fc
BLAKE2b-256 34964dc56c1a38d67bc55f7040af4fb63b8b1a3208eef985b62d3b661061d3a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e26890f576ec46b2a2a12fbdc446420149f4d1be07b084cc04c624088c05ac69
MD5 57e9c2eb3911e0976f20b62630ceb2e2
BLAKE2b-256 ec5391e5cc8f73d93555ea88e72d23b3d947db05567b15ca96c0b3920035a36b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51e480d18dc0d95b415f5fe2c02075f8abe7b04ca583d6e90387c0be44512045
MD5 b238e819ef5123a3b2dc7e37de62d91f
BLAKE2b-256 f41d97b1eb3b1e6a3228bc33f51080ac6b7301cfcb2155ca802a4c597560cfd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab7bb2bcc14b5389e97007739c5125e03cfab6537942aa8ccb91529050c76ca6
MD5 babe77c4c608490afd8fa8d5d5bb51a7
BLAKE2b-256 2d9727adeeac59425056f718e3ab77b41d274151f9a3adc2258aab3c59808a30

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.5.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8a29b81a5159f50b0f2e4f142e78dc3d8fe385b6700739ae32371573cde0eea7
MD5 9fd090f24951d1e33fe804d42b0eb58c
BLAKE2b-256 a09ac637704926b24574bd7d96312ab8754f11b9b069ca88cd5b35c1b55b87e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02c5562c82d92742d6bd2ad5e0ee9215ece7664d555c0950f2008d784243d63d
MD5 b3e4bb4b9d8c76e92f8093ab6e575a49
BLAKE2b-256 3f920f9c0acdcb462b06bf6f417fae3706ef5d1e5b48badfdfebb9b7021ff336

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df701775a386be345a48d217312fd16e559bd346ff4013a1ff1954f9404c7c5b
MD5 1691650d89f62bf0051c7a720de9d26d
BLAKE2b-256 758498062c34217ad78dad36cf597afedbfd849aab6be3444e94c0393a87bd7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbbc6d135d1b53d2c583b93e56f0960d7a7da3bb0bb41075daadc5f78b017aff
MD5 c22e2bd9d5904699f280541562d4bb03
BLAKE2b-256 81191445729bac9778f86b8e3bbd1b85df05a3218aca864504c14396ffb54976

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57506f92f5ed7ab1c963460621f4a35e065e768e6a0b5d8ff5a23cb41cbd7006
MD5 f8a72b655d6945f1bf06962b7bf151dc
BLAKE2b-256 340a2f417f7a45a46708f352d204cc2a8fc13ba04c448ac5f5e98707010ee783

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbcc2b7cfa0371f7088995cb229fddb7adf1bca12570ec97142fbbc30c864821
MD5 0b381de2bdeb97213c10fff43693045f
BLAKE2b-256 404c00c1dd1d64441da14b35f2171ef65b1b1336001fc6b2eaf703edecacbd75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ecb99e628646ad439298feb01ac93b00a674918501bd404c90facdcca5ae396
MD5 294c66fb75ae5c3572b396250ca96a9d
BLAKE2b-256 db72b2a5bbab27819b415aede5fe0875ed896fe863f5487593f8bcf756cad3ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.5.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6591f6f73c06788dc2a08ceebf355ab6cf4a8bb21a43afe974ac97b3f71ab3d0
MD5 f94f46f06f36b5709531f3dca6867bd3
BLAKE2b-256 8483e76206597664a746cf6ae8c08aac1ca86d19437007eb0694d65de6ca2f80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 809ffa02a2b29b7df161abfa7b35ef6f26f7cbddbab39c14a86e8b385119d5ff
MD5 1a60727b325b3464af1892579aead7cd
BLAKE2b-256 dfaf6637c57d92d199ac2ad2d438b7d4f569a4fabced0f309c9ede3ac2756ec0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43ecb0451472faa19af579bb70dc878a2a1cfe663cd45ab744b957f8ce0c4fa0
MD5 9ea67197bb0f2e8f40cb1f9057ca7777
BLAKE2b-256 bad774cb0f93ef260087e100be8607c7d0b621a118a3f95f22eb605a9084a9b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ee4f60891978bdaa10ac859a56f3c72724c30115f30702c45fda6876d064675
MD5 147d3e81db02100941bab06acf7b477b
BLAKE2b-256 fd38be1877da56798935538425bbc4a0fdc2710b7d1359cdf53242d7a568626f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ea5fba9db57df3fcc0324647dfe4512428654e759d42780383b20e0d143eef5
MD5 a8bc00cb8f4abbd2b29ac83828e8365c
BLAKE2b-256 79ab142e9d93b9d2fd4775944bb69a3e89695a98798162c643138e8ca9145cb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.5.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 435c4a6f1eaec86fe4e287256fa53241b7f830bedbe7ed3fa39a9d9fd61c76e6
MD5 75e41ecc359597914c90954dc93e24f9
BLAKE2b-256 b93f3e9263479bf0e7a535408f528412837604c41165ef0c4d79081ec7cf0d63

See more details on using hashes here.

Provenance

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