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.6.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.6.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (22.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bolivar-1.6.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bolivar-1.6.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bolivar-1.6.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bolivar-1.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl (22.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

bolivar-1.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

bolivar-1.6.1-cp314-cp314-musllinux_1_2_x86_64.whl (22.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

bolivar-1.6.1-cp314-cp314-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bolivar-1.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

bolivar-1.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

bolivar-1.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl (22.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

bolivar-1.6.1-cp313-cp313t-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

bolivar-1.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

bolivar-1.6.1-cp313-cp313-musllinux_1_2_x86_64.whl (22.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bolivar-1.6.1-cp313-cp313-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bolivar-1.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bolivar-1.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

bolivar-1.6.1-cp312-cp312-musllinux_1_2_x86_64.whl (22.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bolivar-1.6.1-cp312-cp312-musllinux_1_2_aarch64.whl (21.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bolivar-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bolivar-1.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

bolivar-1.6.1-cp311-cp311-musllinux_1_2_x86_64.whl (22.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bolivar-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bolivar-1.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

bolivar-1.6.1-cp311-cp311-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

bolivar-1.6.1-cp310-cp310-musllinux_1_2_x86_64.whl (22.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bolivar-1.6.1-cp310-cp310-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bolivar-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bolivar-1.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bolivar-1.6.1-cp310-cp310-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: bolivar-1.6.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.6.1.tar.gz
Algorithm Hash digest
SHA256 e2f05bb43d4974ef1d194b58a6feb03cd4816b6f7e95fddc4a7a9a95f90d64db
MD5 149a9efd573665da906df986f7e7a0a5
BLAKE2b-256 bcc49192219c1b4baa34122eb1f4e377b5f99a02228365370327bac3d4ac92f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df06005eb40cb2d3623e26fa898819ebb355e8c8bb853807553babad4e52cc07
MD5 fef4bf4003ec172430c6e88b5b1300fb
BLAKE2b-256 7ae6345f331aee2cd3585ae576952e2d1f18bebed51b131bfda95e984db3ef3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c0b1e0732ca2296308792912dc26f9e7130fc8868da193e37786203065a0f6b
MD5 a02e5a2440aa3fe940461cc14e9fcb89
BLAKE2b-256 bfb890be8f7a62510054fa25e567087db010fc62c294c539d9007199f1c40d11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23df5ad46c994ea00409c60631f278c0cc4f4be8730c57b75350ecca7ac53f4c
MD5 cfa19cad6bfb921b24793f4ae8f8b3ed
BLAKE2b-256 11a827d9ed468ccd02572f144fb58720a5baf406fcdc059ada62324547047f60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aec30f0d55f6227198904bacb1e2c6a000d2732b3ccea088c7a8a27aac3749db
MD5 3e43e6bcaedb5d100c95dbea11421056
BLAKE2b-256 26772ca568272b4cc31dcf6039b6656b51780b3f3f7414070037cd3a406fded5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8817bbdeea7e4f1e2c3a8b1f469ba6c71e084185b328708d3606814d7d2154d0
MD5 50d0e765741dffe918d8cde741930925
BLAKE2b-256 c09845bc6b7d804fb69b5009a13238ddf89bfae3773bd4f37f2edfef9a845d63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2748cae68c7b4690ad502399f670446aca07e3b126a37d0f50bf3f21c203c1ed
MD5 96679a1f5e8227e6d7b7ba0a77d85c35
BLAKE2b-256 62548e80e965e70298af97b6f61aaa5088ccb20e2bf7b3153c72102fdf7610a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1925af877014b698d4acecf16f95e97dd79b05b017767a3d9eecce5167dbb47
MD5 ce07330ef245b9ac1865ba7fba41faea
BLAKE2b-256 41c2d4a6da23737504b0829329463f0cbd3e1a82dab95c02c1cd53a23f89bf5f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.6.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.6.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dc4dff865e037881db685685bc7a626b40f8c5a67ea66d7ffbf15c383805302b
MD5 b5a285d155ec44f5c57c40d551d5f292
BLAKE2b-256 0af771e5b1638da39aedd6b79114c5e2cdff2bee5a85ddc7718dca04bb914989

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb660fcec2de3c873c76c1263378862edc8ed3549d791c77b82e57cbf0212441
MD5 88aba2d14ee79c271891618466f9e80c
BLAKE2b-256 26c814527dd2e51ae4e5fe9064622ac8c095dc23ffa4f241ee51b9d10fabda5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e587b424a1a21a9a15b35c6f7302a19f697847fdfee2918ea8f52d9b86163896
MD5 4959c63765edb3aab3bf29c3a83f3ea1
BLAKE2b-256 c83a0f38ee34b6f1113e2f899947e27bf4398f1fdc1320464e69956c4f661559

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e613f069565c4a4eb65a24399083e332371851fdea9919930848b69b5af7d5e3
MD5 411ad536f3b103b7321791124d15cfcd
BLAKE2b-256 76a21356f31ffc0fc0557aada5279fbf841f8de90db791290d3d6c0c07092245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7be19bc28854f12e6439f9f68f96d75c11abab0bfd4448c4226794441b394ceb
MD5 475ce70b62232c80a3e6f10fef72b40f
BLAKE2b-256 8566110207132f61980f81a0d19c9641acddea96065b27e777d9046c54e80271

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 653ce9c1a9fc02eb228e984a9aac80a471b99f2305f9e13d14ebde1557404dc6
MD5 6ec9301b360c069868dd05b8382558e2
BLAKE2b-256 e823e1317fb8a4547d29047e572cdbf97f173c0dc32a42a7c36c71f2605feed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 11e7045fe620956265bf730d13b5b2094209fe5721a8a83d8de0be13c54eab47
MD5 b7515d9d0516fb8f2583bc2f90e34746
BLAKE2b-256 c7ec80083fdf0b4575d017af6ee30f700fb43473bd5a9826cbeeb29ffc587dab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 742840dc24c1ba62c13cdec0d78f504c9c732cc503b6811474ae86e9cdabde3c
MD5 1af4a8e03cd67a3873584bc800e34dbb
BLAKE2b-256 3a1547b8adc1ffd170104afde9e44b85b02f41e410e1e88b98ea0ca228d1472f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bbcd0a67e64346bdc1ec26cd34ba2750e4b92a2b97bda2fa8b3233a06050949
MD5 0d08e5996e522e21885bba13d4e94e00
BLAKE2b-256 8749dc62748155d113795184310602c67f6e3faa754ee6cb9f9db00fcc2a3998

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 805c6722cc01fce3a4fb2cb29e7297f29349891e1cef5d829490a02bd4ac7d90
MD5 c493c5ade90c25fa0436f20ddbb54add
BLAKE2b-256 9b2d06ef006d5f52068a5760d8fa20876babceec54275574940faa0b4263f113

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.6.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.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0c1c481ee87c6bec711f85d094b3702feaa6a23ca12205a5b539380a610f88aa
MD5 7af3105df879e7fb5342c0bfaa843311
BLAKE2b-256 e032c2e83893bb093ffb2cf13822c930bcfc1a10b71bd96b8e94505f96cb5589

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e281b99790be336eac0d11f79f7b285025ebea3eb538acde5cb3fb8ccada0fd
MD5 5db19f5b656c9cb68744aedb86508513
BLAKE2b-256 2e284116a41274a4ea7463bb25d393d341e9e885541b3a4a4f3a39e5bd706827

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0303c42abfb5cb215992fa2bce688348c29c4f7cb5c0ae09f19ac6d1f626f98
MD5 3fbf17048f26cfc4f7c452ec2ea7dbea
BLAKE2b-256 a2ceeca0763d033883319ec0d17e6e0d45b70141ba48bd0b36c95c4d05dfa0ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c85386aefa226a6aa03331582da0c67009482d9821e14573432922a0ffd88d19
MD5 057fa4a9da37eb9aaa50b5b036507d62
BLAKE2b-256 8e9a4f99905b62f3d47e1becaec867798ef8e7957e1d32e8da0baefbdd8b1f56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0801b9a936fedd74ec5c283dacca61d522acf468eca6cab309dc3ee7b97d2e23
MD5 872c83958840289684820b30c3ecd8a3
BLAKE2b-256 dbb6c3ec712250b1e645b0477ae21c6f75007634ecbf317e27fba348849145ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c3ffd54a40b844a99fea24a871e382dc7b63b22fd70c03d39ede1c3f75f804a
MD5 904d1fa6d650800a24463f06b84da90d
BLAKE2b-256 bb986b3a717dbb804c39032ee7677b69d094fbd33cb66c11be7363559dd9a7e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bba36ab02d6e4823e1bdd14961e7891af12e66e8be9a52ed024094c0ba3d1d3d
MD5 a2f914e01a63eed41cc4b1480a65c363
BLAKE2b-256 eb34d1bc30255f9f65a77b6660c1a64c57fe29adf16d79f754c093c733707c77

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.6.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.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1d44c1d3c83603cc876d188268137dcae2f89062605908de218056aceaa0c9e5
MD5 dd601521753a44bc49c6e148d5f30b20
BLAKE2b-256 9ad50938a5b5dfc4c15a6ff8f34de5528d7b6bf567398048e39f430a0cc4e922

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0330ab7cd14d9e0c841f1311faf1cd997276333225e85284fa9eb4dbaf46e562
MD5 21245a74fec7cafbd7dc605d0b5ed261
BLAKE2b-256 02b018049de8689e56b54986937b316d2480d03d07ab32be136e934a1cc51422

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d07e75ddeac34d95f5efe1f6d0e98f4b39daaee1ef3895d854a6e5ed51db46d
MD5 3f4703b9ef9cfa410f5ef7e5b9c2bb69
BLAKE2b-256 84331d0d90c488ae69768d5274026cd3dc70b9a51ef784c9e0be880e43bd9ad0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35034cc15fcbdfa580af619dbfd243f7ddf0abb5bca8db964c6a026e2955024f
MD5 ca75e893bc5d0a5c2702dd70b2061a96
BLAKE2b-256 053b38066743e03adf2eba8ad621d552610b5331fc3f10f0bd6a4029ccce4caf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d299f7b7ef34ba9753ffd4e670a895229e374178da3ff56ddcd53fb85a52ca1f
MD5 ac20d02eb70f3352258c10424dd75c08
BLAKE2b-256 11edb3e2500a981e3376649737bac8381b89dc960220b2822f35e0603c106fc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd48addd55041eb7f21c699e8c4b86854d8df49c2b6e28ba0c63cce379042b78
MD5 895fb7d95d8259c17f293bcfd7bb93b2
BLAKE2b-256 f8bb2934a1f685c63ed1e3ab2f2e21320ed176a3f023a043859cdbc1c9129231

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e740f372d496f52a93871a89d43485aaef116115e33f6ae8fcbf816539dbebb3
MD5 a2e9d57e2b78bd80314ed9114e1c952e
BLAKE2b-256 fe76e0779d46a234c897956ab5aa8a874366a0e0b09f553f2b162e48e6ed881a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.6.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.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0bb12b4b02478f1eb9690c07802feccf45f704868124b38f63379c5347b8aee7
MD5 53e60af62e234ac30733241def1ca376
BLAKE2b-256 b7f786fb6f844df51403b3f0af32bb1027a81d7d602f2cca221468c2dff20fb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f40651bc62b082121a3e34cf07a8fcac7fba4c200c13ff8dc1f79904b92d618
MD5 7720c0995e07c9eceeb12dae11877842
BLAKE2b-256 50ecac61ac5694347ff1c09ac5afccd449957993ba7f8a64fe33d83fb174a7cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d3b06e66cadc52c4486ef22d1ea4a266db6902ffd4752404e0e54b11c27e2de
MD5 7cef7dac15a1cf20589bcccee21b3c68
BLAKE2b-256 8a241e2c3308a2f4acc0cb14986319e1cd436387467db5e37f9f7ff7658d4aba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d921e16675322e2b4fe17b619c6dcb7b97fa58111f96d719c3c19351ee2da13f
MD5 26caf6f5e6f802baf43bd5672148ba30
BLAKE2b-256 91242e0f872a93fdb933fbd710f32891526d68ceaef3253ec3a8d85b8dcca78c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c2195d41215ee63c2ab037f785032dac877e07f7ca809dd880aa9517823c9b4
MD5 7810540d0cfbe37dbf3c7d3c02b630a6
BLAKE2b-256 c9930864e6b0adca180240ea36ca0a489d33341fff785af9838b81cdd7a86609

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d31a03c78befe5b7c41a99f0f526ea02e02f5831ec9afa04b3757478318853ef
MD5 567f1a90c8f8800c165f57a4802481fc
BLAKE2b-256 1e1f87b0e2d654b4c2ecb8fc3de055eb6704735bf18d0be43396e965d22456a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76a61f31caf7b4b4d7d27d01921faaa4280fbcde61ce97b354036ce92a8ed4b1
MD5 0a9c4bdadbd3814971802aff6def0a59
BLAKE2b-256 6adc22df63ac504b3d112408fc497518235c1f2c94d3ef945900c5183a8385e1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.6.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.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 54bb6125e4e0147deb92326f211c280abc57931170b0c7b9a5eac40be9dcf0a8
MD5 1afb5a44bb6340ab11f09abbbd17e70f
BLAKE2b-256 477fa82a6b55ca9d699a722fc8b60d0ae9d337ebfcce6fbaa6f61cd8dda3e686

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b813ae1171ba1006a609772faa744f104a539a4b90e861166f4255d1dafaa69a
MD5 ef749c07feb45c55ccd9211a5b1cbe28
BLAKE2b-256 e534ad12ac85c6eb880ef61f50ca43a5a9b11dba42e1219ec9347d5243fd993f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47b8d696979ca84c7acc656cce33ea49c4539239d5d1ad7f3a52739422e3106b
MD5 babfcf163e32c2bcefc0fa012069ddcc
BLAKE2b-256 11db88224c936dbf9583949c8155d187bfd84545ad50e560bcf207c7ff1e4d55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5f48c0c2057d40fc4b71084be9f0827fd3c6b55b1f7a2ba4aa17b271f01de33
MD5 de08292becf1f23975432ad8e1d4b5ef
BLAKE2b-256 da48834aca30922b21ddfef3acd1e4678a835c2fb1fd166126ab14665c5fe1ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18f33b610c3427fb6a934a74822a19cacd0ba91ba63cc268774e8e857183ee81
MD5 38446b58b3e50cf71103723f1643f640
BLAKE2b-256 a3438354121092c85dc312a610b9b391836a26459bcd11f5f9cd66884845ec6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.6.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1cf13314dbe225572597c636d6c30bdfc7da5120212842d31ff9c6bab33d64d5
MD5 6fa64d0b1d82fa595c26dbecdcc1d7bb
BLAKE2b-256 a1233ed0c904cc7767bd05e60af384448fecad1d8d73e76548933dba51c04865

See more details on using hashes here.

Provenance

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