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.0.tar.gz (5.4 MB view details)

Uploaded Source

Built Distributions

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

bolivar-1.6.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (22.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

bolivar-1.6.0-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.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bolivar-1.6.0-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.0-cp314-cp314t-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bolivar-1.6.0-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.0-cp314-cp314-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86-64

bolivar-1.6.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bolivar-1.6.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

bolivar-1.6.0-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.0-cp313-cp313t-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

bolivar-1.6.0-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.0-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

bolivar-1.6.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bolivar-1.6.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

bolivar-1.6.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl (21.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bolivar-1.6.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

bolivar-1.6.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bolivar-1.6.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

bolivar-1.6.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bolivar-1.6.0-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.0-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.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for bolivar-1.6.0.tar.gz
Algorithm Hash digest
SHA256 f8be772258bcd869c15665cad9b133df2b25fc56d112381762e2be6aefcaf175
MD5 e247b18e409ef09b7b51bf138df5787b
BLAKE2b-256 9c35d5fe12caa6d48e7e002eace2aa8aa5a022397fe85b9a89aa7b6cd8cd3441

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec52258c52c1e5b823c54c35fd4332eb8178e0339dafdbe734c691e7e8da010e
MD5 a7dc25314bdc3665fbee576964629bf2
BLAKE2b-256 8e4eb88e87047832b1b447e46a1000490393dfa6286a96f401d2cceea3323e50

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 611f96970692852d3db9ec43986cbd2dba145a983576c65b7011bb9c85e01552
MD5 9defaf6c7c204a01ddccd21f701be7cb
BLAKE2b-256 f09c91daa6462cafb52223a2ba34a6ef382f2bec4b60a3e3e944a2a1ed1067a2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d62b8ab3ad4051f914f22f85fdd49e29c3a843897515fb35b1ba0cd5a66b8b88
MD5 33f67d923a3f4252b1c90fa783d3b13c
BLAKE2b-256 6da07e48b32724b9c315d07147b8bebc81688a015d576f5460fa93153921824d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e43c62a51ef4a3c08608b96cd67cd3f00d9602dae1418098c9dded0d50cb19f2
MD5 6a2ad1ca351b67847f7357c99d1325e0
BLAKE2b-256 5d7df9f531b54031727e9e86301fcb6bda99b692bffadb44cb8e9720daea0770

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5d5501e5ea0e285d7e3cce37593cb24a2a1e20e61bb761710872c779d82a584
MD5 489b1ebbf32e9d70d3ee74d50f50db60
BLAKE2b-256 1b4af5a381a6d9ffcf18b0d1943b644df2f09f400eabf9f5e1fb8c71d78e8683

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c939d53d4bdbcb7e3542ff740ae680493875c3b89a81c1a1ba2250efecd0afdc
MD5 c245ac64d3dd6b2c6a5b8ff76e7e2b19
BLAKE2b-256 3b8eaa23346dadcf33e012ac7cf890ef352e0818e4b635f7ad3205c6323d7ae1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2313e28900404e7bac76bfdc86ada7f6113ccc74b053d2d3c35da1a53b126458
MD5 81ee525813b4910c46f6cc4b31823ebe
BLAKE2b-256 c4893bd3856b460476cfcef285fc872b90c22af6968cd56bb4707de42bd4a32c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

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

File hashes

Hashes for bolivar-1.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f8eb5dc4752a2b2248f06cb3dfb6f14fcca5addd1ff3f7dda13f70d9669dfa31
MD5 61f6953933c514e34fb41df6a5a28ca6
BLAKE2b-256 4077af7301320bbdb0fa7661b6ad0a746201f3322491528f28be71dae3f40d70

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a9a8a6b59d2427956f985cc9df54b39274b5f38d5e55ec17e637fc2df9d13a5
MD5 1115b5ac5076e7f56113b45829c9916b
BLAKE2b-256 1f9d855943f1d61211978536cf6cb8e697a85e002ba1e146f74c284d3ff417be

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be5a1a5ef522250f7998f37dfa4df154805e897fad88e572e71e300cd7f86da1
MD5 cebf3af2b792d89cf75d93dbd0744629
BLAKE2b-256 3fbbf90c03bae2be5584ea3f983a33686d2d7abf45f479d9770d26543bc7ded6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4ef7423a79793252eab831fdf7f2a423d01def35a937c920133f4d766a278b0
MD5 3a7ebc35c9bfa190155b668b6451da83
BLAKE2b-256 69fe14ef32349b9eebcabaeecef2d2ebb2c2f91530eeb657ecc007450bdf8e32

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 360c4e07480ccf44ec775da4287400e0d417e7c958e8ac7f9afb879f77b375e9
MD5 0d24290dd8f96c45ac952d5e3975b052
BLAKE2b-256 6cd8f22049bd3609655d447ec9e36521843386937e18c03f72adebfa9abff4af

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9171140ae39034930c4f2e37fbd5c46dfa20feb498316c2b200868c17f298fe
MD5 d2cfb6d4c33e57e5f74ea6d57ec79c1e
BLAKE2b-256 e51505edfdb7217f968d802328c1967eb6920516b3fc172582a9645eb927580f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dc175b3c6c319f960a292d6040e8e1db53f0062a9cd3bde29d9cdd8fc95ca383
MD5 9997a0be19b3b1e723a17f2f7de251ab
BLAKE2b-256 eae66947ed4c97f2f6d0a64247050c38539f84cbf6031bcd9a96d6596afdfc7d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1568fcf355f726015e7acb2137ca05d02014976b9f48560ba961b6e57e3678bf
MD5 d8591bdc9f4188679ea9aaa651cbb71c
BLAKE2b-256 2e249d736b32b6cd05544e89c118015913f16ebe68ca949275cce7af347cfbea

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1cabf0da87958e756d530c8b80ea87a20e39d137c5f01e64052f051e816f8db
MD5 7cadd1824d8b46d0044abb7ec700b514
BLAKE2b-256 101a0c4ed6819259e7b9f4054a6a3c9bdee4bc29456876a0a96a906f9b643c98

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0f243ac9aa79f1f79716b7f0ec07ed55b833f4ac9d6ff437739bc9ce1a74451
MD5 80c51aa3f01d223232c49511ada9c3d9
BLAKE2b-256 6b15c4050264cab54e018ed20a5da046c35dad7c6d0e585111ac1ae5a938ba33

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

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

File hashes

Hashes for bolivar-1.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 521163953b061bbfb201aab2e012e599275f3e37540ccfaa696c0a1c899b13ba
MD5 95076002b52ab5bcffe05f2f02a7f990
BLAKE2b-256 003ecaa63e2a0538555ec415cd303ae58ded72977f55ed86ae150110846768f9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3eab4c4e726ef7da9b7e6d26b97a1ecf85944f46c2a6d62c581b54cf788f9d1
MD5 7f1d63f2ba5651010f01ebbf2dc54813
BLAKE2b-256 f230f9f1ec096c3dfccb1c81ef4f2f9ab3371f0a93a5ab755dd5cf39e2a7bf88

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2e2336c0ea06562cac04afb8266b35aead8623de0932f030a1d3694afb1d187
MD5 4c147ae98b99001521f879883028fb11
BLAKE2b-256 7b9f2cf1b1c39f562fb4bebc45d6645c515d21963941cb1c835b3d925c89f2a6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f8416dd30c9c4978f096e2a8b13913ca3d2f3ea0c01a0df63622a2418699c91
MD5 12ab6f0cbcdb4c918d27d3dc03d8e40d
BLAKE2b-256 752e4776a51ff0d980706dba2f39e23eff7635dd729136c32c7244d9aa5ec665

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfa6c5fa432e4c3d772bbb033151a6696c39e79b2e00423bea2a430809d17d29
MD5 dd36d83b0de11e38fec386bb39e233cf
BLAKE2b-256 ace6f5fef6299e46ad14020eff7aeeeb353418ce489ca812c20cd2b3bfb0a781

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1bbe4a1bb2001684759cb23674fecda4683377d3487924320b7a9a1c9abdee6
MD5 150ccbb3357d19b26a7cd2113a13afd9
BLAKE2b-256 0be74d0f88dbdc31ec9f79ab5600c4316ab38b76af301ac0537d8951a0403b03

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28dd6f8d4dfec8ca4fb6d7c4af62f22dabfdfe9c788ef770682e4fc75c83f865
MD5 e7d483601bab8c1557a12ba165f0c4cb
BLAKE2b-256 0632c1c2bf8b65be33dd9d99e0fcd25897d50fabb6f7ab97a2f498a983738f61

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

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

File hashes

Hashes for bolivar-1.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e2b1d28709159077649bb800e255eee59c93a6f4ac51d0f3afc371be0a4b6ad4
MD5 d31e42612c9fadcbdbb75d620651bcdf
BLAKE2b-256 f87eccb451cbd70b218c0c898ac810dc8e6397a997c90413339fd5ee6012456a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80846dfae0681f045c3a83280b6cc88c030aeb65fca20eebffb013eda26a76ef
MD5 deeebf00ec6ad1b03a062c11702ab315
BLAKE2b-256 6ec9c4af14bbd2694b9543bfe7913dd420f7d1daeca3c7cea3e6f3a076649391

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbe978921d2fb0bce85ca4ac32ed0bedfeb9d71cbb2ff9f85f64bf16564f1f41
MD5 222ec4359864b2c26f55184f003d3183
BLAKE2b-256 3f4f7ec45e2cb01ba2421d6c7bd5624bd88611d5ec12e1b07857e4f9ea5c86fd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab5e50ca33065861c82b8a6c8c3dd6040c54e9d3580d350f86a1eb139f75d031
MD5 33271915dd090d6e6a8127ba68de077e
BLAKE2b-256 e9a6ea76dfecd223a6752200839767a08c519fb0ad754d34b9acc54ce0262150

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e848c074cf36aefd5bc07736991d2f636fc137d3a7c8ad324ca0e8a70b6c4ce8
MD5 a9f31fd5ef03d81120fa76f5094f494a
BLAKE2b-256 5e0abd8f469fc87afc9b5a0d4888c551502b459132983cc0ed7e8cbd9cfbc7b6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdb573b1ec3243f77c9404b7ca9f04d75b343f8f36aae63f8be90fc0d07e38e5
MD5 1bd39a0f54e227705412b05dcca345df
BLAKE2b-256 6cf2d201c1122782339cfb0a5d73226d8a8354cc8afd61ad4b54e5de2b440eb1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c66084c9940159e35d9050b89bc68541115a87e8933e622555e0cf416f3fc212
MD5 d79c7c6661c21b9f094988016b6ce45e
BLAKE2b-256 3bec7af7a32fc33552548034bf89812ed02ae1def605a6a555bc1cde0419b8c0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

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

File hashes

Hashes for bolivar-1.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 343829bbf272d38f270a190d934a0e7d4994db8d767b4668f4a8499638b2aaf9
MD5 d58dbdd94cf850eeb3c1804c03daa4de
BLAKE2b-256 16c4ea1d65c2a8ddd7fbc3a5cabe99f0b6164bc409d858821445ba0f0b1af864

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41294a0725b8ad8611e442220e1a0035b7188e385f1da985edec69f3089afec4
MD5 422fb6dff7079708803af4641ead325c
BLAKE2b-256 335e6624703d6f6ede3a9120bd78b41f68567766c8a7faee248792acf56d9042

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e86eb2e00e7da7734830bba59b9fc15a9a4f6c91cacbfbd28c4ec29da585eba
MD5 50b69f4d37b0c8de3446b23e25220af1
BLAKE2b-256 af27a24c5fd193ea074dc9e6a6823a37c050491c875fbf7df95f546f9412279f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db6f0e49fca9befb4eb465bd27dfa603a4b45881e4e4424de78970e2e7a411e6
MD5 be0488e157a1f7d05b42abf4762254aa
BLAKE2b-256 b3b7e0e7e394862e25179a3c2fff46b0c214f06f6e6de3673cb69f6dca5a9d91

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50a85660d47d1b9ae209ca4b6ed6a7d4829be5b9a8843e9816cf64480b49e59f
MD5 ef53158ba3ab4fc18355e46933fd517d
BLAKE2b-256 0020ccd8076f7606f643fe63c6ba9282282d1880339b417fd19340f14178536c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be38547872300d76c80a47e61a17b4d34bea2f9e3985cc254e507bccf04c0f2b
MD5 9c237bdd9fa5160e6ccdb4f4bc5aad2d
BLAKE2b-256 cdc91e4fc61e0ee6fe75938f01dc9a21aebe2d3a1983f188dae150a02724faf1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0564b892c1db815464e4c10b7da903170fe9310e5a8677d91bdac6281d22540a
MD5 a9b753df999648059764c93652143729
BLAKE2b-256 a92ebbe1ec2a4d05d0faefc56612fea8fb80d9a114a754adb9e34514407fdbf7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

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

File hashes

Hashes for bolivar-1.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8101196c821ec51ba2d5e26862a7e55569e32bf590b27be272b1da5a79d8204
MD5 11633c974cdb6fe2d6a6adb9d2f51c6c
BLAKE2b-256 3e006b80701ebc21db112e44cc1bdc3fff8a65f5ce5de85d7b6cab9531df9ec4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 697bcad1ade56ab893a8ebdf23cfde31c152d4e8fe7036a4efbbb9dba9734632
MD5 3c44a584ef397fc0483c7de78ee27992
BLAKE2b-256 353ab8263dc69e87d62267387234dc4ebcf48842cad19b52fabaac7ed835c181

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e871c5bd74e4d5775b46e187c8354114ee8d51148416789a31337eb04c5c307d
MD5 a9e26e31fc63b0fde7f85e5fe06db7d6
BLAKE2b-256 742dcaf1bc53db45a721d3b4af99135cb4d37030e671d65b1a1979331a824a64

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7469c1166fd274578b741b62466c8232ecb86e277da5ad8fbc2a44a2d889ca7
MD5 972d2f2fe610d8525e244fbd425acecb
BLAKE2b-256 85434139a16219433565e5954dc9f05ead03376aabf5996c809243f6e4cb4259

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86d87ecced61d6ca128fc4894d11442d9bae2d8a852152a338805229de4d2ed0
MD5 5a823881411dd35ce200b98b6df9c6a9
BLAKE2b-256 6c3a0cb86840955cd2593e9f3c64732f5c580b1c7ba07df8415357d4d8066134

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

File details

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

File metadata

File hashes

Hashes for bolivar-1.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4dd74c63f76e0ff96211dc1c42a7bfc89430ffea3a83f1762f16f5e34ee156d
MD5 118c9b2414e61de2dde2d9ff6b40f506
BLAKE2b-256 52f77b1c190f702d4256d3ba0a1b5bcacafba2c22da6598f069cad50b8dc0fc2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on harubi/bolivar

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page