Skip to main content

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")
sa.ingenious/bolivar {:mvn/version "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. JVM and Rust APIs follow the same pattern with their respective conventions.

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.pdf.Document;
import sa.ingenious.pdf.DocumentOptions;

var options = DocumentOptions.builder()
    .maxPages(1)
    .layout(layout -> layout.lineMargin(0.5).wordMargin(0.1))
    .build();

String text = Document.extractText("doc.pdf", options);
import sa.ingenious.pdf.extractText

val text = extractText("doc.pdf") {
    maxPages = 1
    layout {
        lineMargin = 0.5
        wordMargin = 0.1
    }
}
(require '[sa.ingenious.pdf :as pdf])

(def text (pdf/extract-text "doc.pdf"))
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.pdf.Document;
import sa.ingenious.pdf.DocumentOptions;

var options = DocumentOptions.builder().pages(1, 2).build();
try (Document doc = Document.open("doc.pdf", options)) {
    for (var table : doc.extractTables()) {
        System.out.println(table.rowCount() + "x" + table.columnCount());
    }
}
import sa.ingenious.pdf.openDocument

val doc = openDocument("doc.pdf") {
    pages(1, 2)
}
doc.use {
    for (table in it.extractTables()) {
        println("${table.rowCount}x${table.columnCount}")
    }
}
(require '[sa.ingenious.pdf :as pdf])

(with-open [doc (pdf/open "doc.pdf" {:pages [1 2]})]
  (doseq [table (pdf/tables doc)]
    (println (:row-count table) "x" (:column-count table))))
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.pdf.Document;
import sa.ingenious.pdf.DocumentOptions;

var options = DocumentOptions.builder().maxPages(3).build();
try (Document doc = Document.open("doc.pdf", options)) {
    for (var page : doc.extractPageSummaries()) {
        System.out.println(page.pageNumber() + ": " + page.text().substring(0, Math.min(80, page.text().length())));
    }
}
import sa.ingenious.pdf.openDocument

val doc = openDocument("doc.pdf") {
    maxPages = 3
}
doc.use {
    for (page in it.extractPageSummaries()) {
        println("${page.pageNumber}: ${page.text.take(80)}")
    }
}
(require '[sa.ingenious.pdf :as pdf])

(with-open [doc (pdf/open "doc.pdf" {:max-pages 3})]
  (doseq [page (pdf/page-summaries doc)]
    (println (:page-number page) (subs (:text page) 0 (min 80 (count (:text page)))))))
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

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.8.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.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (22.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bolivar-1.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bolivar-1.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bolivar-1.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bolivar-1.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl (22.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

bolivar-1.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bolivar-1.8.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

bolivar-1.8.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

bolivar-1.8.0-cp314-cp314-musllinux_1_2_x86_64.whl (22.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

bolivar-1.8.0-cp314-cp314-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bolivar-1.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

bolivar-1.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

bolivar-1.8.0-cp314-cp314-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

bolivar-1.8.0-cp313-cp313-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86-64

bolivar-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl (22.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bolivar-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bolivar-1.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bolivar-1.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

bolivar-1.8.0-cp313-cp313-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

bolivar-1.8.0-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

bolivar-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl (22.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bolivar-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bolivar-1.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bolivar-1.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

bolivar-1.8.0-cp312-cp312-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

bolivar-1.8.0-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86-64

bolivar-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl (22.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bolivar-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bolivar-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bolivar-1.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

bolivar-1.8.0-cp310-cp310-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10Windows x86-64

bolivar-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl (22.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bolivar-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bolivar-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bolivar-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bolivar-1.8.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.8.0.tar.gz.

File metadata

  • Download URL: bolivar-1.8.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.12

File hashes

Hashes for bolivar-1.8.0.tar.gz
Algorithm Hash digest
SHA256 298c25ff9f17ec1b66a625b2f04eeea73a681cda83bc8754c943a9d7d907f185
MD5 0cb90191fda8b8746ff2d8a214c9e293
BLAKE2b-256 2f2eaabad5e1204b9fd7d55dd88e86ee02df3c1b14dc42be0035e0e4452e44b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e15cef388288c155471e3237750318f1ce6d1fde9965a4007b4696f0da11d9c
MD5 ff2fb8d1ca7a06fc3604ccc40a445bc2
BLAKE2b-256 013b372ebf1078bfea6852f6bb68d6da990d041ef1ddec906f79ea3c9b5e2e80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 488e1f8aa69827979558ef134706fe5a5f4ebd9ccda61228230974670c24fd4c
MD5 dd7a0dd10c236480b04de4ae510a54fa
BLAKE2b-256 90f3f8fa3c9402906ca8013c1708292fa094d6955f57b401b3edae6a19bac30e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab8fc1fbecf60db6a23c7b15130cbe7a829c9cd1d6b80c943e83a3de65268f06
MD5 a309b4fd55aaef795d8ca66bd02fe68e
BLAKE2b-256 7e4e9e6634dbda1ca5ce9224335fe96a1fb19beb5652419069dc131f2d9ac22c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f56d4a0194cbb5f243bd274d63f78bd3d6dafa2e2914a8fb9e94d3119d59297c
MD5 67e94dfc21e909743a00891a4652b2fa
BLAKE2b-256 83d057666ad2e3b1bd886e3910229d22ddfe4e1f5fd8576cb1add78b817328aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b79ee5ee818087259e92013897e7dc56c339fba853cd476e4257805b6084c64
MD5 0d0ccd7d2af7b63c9ff4f13c53f6d81d
BLAKE2b-256 6fddf9f751a617cfd8cfc95637e55f59a0ac0ff031d1f6367ee89a3ff88c6dce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bd2fe78810d173cf037e551969923e78be5847fc15c9a3e346df1956a7caac8
MD5 d89ae73b9de681cb90f0f79dc9ed8108
BLAKE2b-256 db501ae0e81deaeab85e8cbf544f0628ab8cef2af5b312ee29fd5d919c536f8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5baf17ea3be00fa9f32103f3621fceda93e150dce10742447c0fbb08a52c2fd7
MD5 92bd8df26079ce40219c0203a7151996
BLAKE2b-256 dd9415e36001227597574682dfa431ee0a545892ab74155320a15ebfb5834284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f8130ecf49d1e5ebfe2ea99f438df0b2523f7167ba3acfe68cb2e42d889706d
MD5 1a731ba3117c2ee2d27d82b43f486e4b
BLAKE2b-256 6d10e4c884d93b0536b6e2d34ab1cfce81824ddaa29d2f693bab9da9433d31e9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.8.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.12

File hashes

Hashes for bolivar-1.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 60098e44dfe72dde79efb64318616726d6d721c7d0f2a8173b259705b0c6339e
MD5 5a6283b0cb2080d121e9c48e3fbca1fb
BLAKE2b-256 17621efda86b79ae51cc5ed3d17b952e7f121ee2e154cb15e49505264ebce6e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 228aefb61915c16f91486c0a255ed4fd2d14c908ca5edf778b8917b5e527c7cb
MD5 bea26ca27e18821b7e2b7f1d9f13d7b1
BLAKE2b-256 8a111cae1daba53a51596a0fcff9045db1a330ff9d750262df569b424e14968c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29bc3b57844d3247d1c02b9aacbfdcc243d155ebda5d0a6004870737edfe2d97
MD5 7360fe53385a7209f13a8cabda4e6604
BLAKE2b-256 e6d20ca2c76a447684ca51e42ae9a61921bcb13e8ba6dcb6d07f641cde866d67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbc28f4a6fa33ce6e17cedf58a96b79b51b646bbc5247e96c1dc31962e7eb662
MD5 7b14a88ffc13578b5fa4df7edc7ca8e7
BLAKE2b-256 4e900ba6e10f085d0d980b15e5b38b0148cf2c18563f7fd7edb01a4229db078e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ed9d324c2410c43cf243738f988cad4f191b685ac613eb3d89ba50c7ac331e3
MD5 0ccb8860972dfa6c34905859ab51a82c
BLAKE2b-256 84fa901b1fafc0de85b05a4fbe2f7cd17724bc99672cffd360aa2a88f44c537f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bbe5d1b6f9523201a545c1aad0513302d2c80f006a5c663b984a249d0ffb92e
MD5 24ebdbb12338f7ca4d6f8d6d45237248
BLAKE2b-256 617fcef7bde10c300577abe1389e0b5ee3751e347c1793aeab457a87e652f815

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 404fa32f02bd23119a19b8dc616514e1f3aedc678f64e38a6297ff05376a2674
MD5 a74c56d09b0c60e48b06a21bc4f60bd2
BLAKE2b-256 e02379e1b03261a7078f91cca9c07d0063b67aa663885aeeb01bf186dc11ec14

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for bolivar-1.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8b0f365e4f8276324347030566d675e019d2f7bd66bc0d562698d4e8828e288b
MD5 8063b04c17a32f3bcf273d4ceb335d60
BLAKE2b-256 16d5ea1c6e80f461daeda16428be86a45dace56cd4fabb6d63de359a4d6627a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ec849d7bfe2c5d96a9c530f71c60dfbbd0fcaea675dde010af51fa324ab7106
MD5 be3156811fff20217476f3f662069c86
BLAKE2b-256 6ec0786db252c2b185d3defed6e9a19e11e63b7d3313aa0acd89a561a0e857ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a45d64d7f1bdbbd485243ba4aa78d2e60627a79e2fe82568f6c02fe92917451
MD5 67ec3333f32b46e8ef8ea720bfc79310
BLAKE2b-256 f72b0d622147ebcc3dadb592e2f6eff1bf2fa8f0a6c27a5d48ec876803bbd316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d1e0570661693ebad714a21e9f316f08473f2f034aae0b49486851eedfeec37
MD5 4dc21f19cb64f774dceb3c1dd73dad43
BLAKE2b-256 ec1d32f9b207770a316aa37e49278b8a3127cc27900a19ed4b5389289cfd1f0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce2246d59c9a9da127f2bd269162fe9de9683caf418742c4ceaf9c354d3eccff
MD5 2c328d43722258e977952bc43e1fc430
BLAKE2b-256 53eacd72a8020dc17f0cd78b9696d42408abe4b982d6b27b026b3456ce460963

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72aeaa36b0692efba7673116304ad9616a7859d9bb61f7a342cbb6323bde7f0e
MD5 da1162e730b4183f411cb1969616de7e
BLAKE2b-256 316cab5c383735f4a3b4850d57457632cf98218984f675d5857df2fc1f12dbe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e6e9a87347095c7d86d79bfac848634b4cf99be1abff525436e75161297e1b0e
MD5 ca84623aa21ecb0f7ed3a10e61e04c9f
BLAKE2b-256 a33f88fa040d56b068101e8180d4261f29ce8c7e849bea37fe94de59ae720765

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for bolivar-1.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b57354aa491919e488f84127fb44176897fffcba14ce0947c23afaa9a7fd8a9
MD5 8201beb8a1a868746eb2cbd6ce56a318
BLAKE2b-256 9f53c1c70c5773f0659d54b2d08d4376018b7e223791fc74ed0c373618ffd5ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b830848990fa34f96414222591789c79908c6e6178b4eed336ff32f38fe8ae1c
MD5 b12424f1ce31b789ce33bb8261011ef1
BLAKE2b-256 9b8403514c2f37e0feb60896a2f2ca0a22fda1cab5f75aff125d863aba6bd370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c676761b258bf37fdbafa228e189b063fa32c56864b84b006524c6333f2c13ee
MD5 8e75153ce9852950d704d098264054d1
BLAKE2b-256 2273b0265af165afa7e916e154082ac14a87589691e313255a0a130972c19e73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cf826d572b078682459f701f61608f54eb14a0e2e2525218c675f2bc3fb4e72
MD5 b3902bf814422fe94cf9feb3fc619da7
BLAKE2b-256 4589f33aa79eca15e758cf298ab0f335e8f0fbf31ce2eedfc884ce02318f6bed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 538070e9833f14c759d02abdb63993260753efe823e5e0a9ed0084a999b1400c
MD5 3b5ffaa540e95a1cc9093253456b74a4
BLAKE2b-256 bf1315773afc6ed36c7317843540eb1f702143099fc5573124774056bee44557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31ea335cb173fe250dd9d97648d9909aa02ff39e404dcb6653bf7a3cefc4deb3
MD5 1fd490c24fed2a5b0d34be4bdb3dc44f
BLAKE2b-256 0806e59c0a8575d5fbd5be60c3b295d50f67ab1c4ee621f88bf25e301d56cb62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9359f177601eb14e54f1f82522f5bfc187179b1788775d4d13dc112f26a4917
MD5 ccfe0dcf60c764d3aafe256bf131188d
BLAKE2b-256 f694b2fc659952ae2d8e2ae4d207a2bd99df5022da0528c5fa78320b523fbbbe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for bolivar-1.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 59ebb555a577ffd4ce77cc24f4d8b69e6d068dfd964f24add51b4cc4c4eccbe3
MD5 2d0dbb518790786b7061aec149e89a4a
BLAKE2b-256 7491c2446b1d937c17242137a72671d1d096a0bfb1159da86979e8764a4ed4dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb8a84ba90452c9e9344d15c42e43e1ab2bae36588c30f2b9ff853554cf067ff
MD5 83b01267cf1a8a59804c603c34ff7612
BLAKE2b-256 11e390663af77f93612effa282d68333f6447f93e9a1c0989f4fd3d2101b9a00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24c1af34dd321925ef76f283c8fc36da88858dbb5e7be7a4e967e4cb6a4baf0e
MD5 11f3e0303c4326310ada2c79c3a9024c
BLAKE2b-256 30c2ee43b6d15aa55906b853cccacd17658aeeff26c105015749dd4446dce78e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df4d913f522753cf5417189b71bc1d9cc512e6c339b4569a6b3f8e7eaca00ed6
MD5 b93b799c867c3c823c52b9f58e15dc36
BLAKE2b-256 84e0f937b5b7b54d187ad1985f0b423e391b63619826d8e92357c3ed075e4e2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7918bd15464a6ba0562d819d2c6743a234c2e7d94be6b05c8e93017a3487c9d
MD5 6ff65f9eb5d899f1c3ac7fac1cbc76e5
BLAKE2b-256 ad05bf6af2900f344a00f48c1b3b85b3310fb23dc6bac0bbd696b5b05a5b4f07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8a29e06b39082f64aaa501d209d152bab0c0100f2c94885bac0ef92cd602037
MD5 2b1dae93187a0803227197d59105c215
BLAKE2b-256 fd659dd6a8e95b386c1011544b0e15646be55255cf01539fe60a6596b08a64fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de0d873ebef82ea8a0bcca3e08ee888d1d373ae076abe9103297d758a5ee714d
MD5 f13af52332c64e808c0eaf05c89238d4
BLAKE2b-256 aa0b24647d6a5d9013a471785a94db9a12bb2eac716b9232bec961d850e9681f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for bolivar-1.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 15537282d03d611bdcc530e86ba857f1875d3e12c52684413db2cdc55650075e
MD5 142d59a5cd1f2e4e58629b85967e9f43
BLAKE2b-256 92319c3ba577f427aa46f61f46e7095a24e7deca6bcae8660f758e1b9b241b66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de9c2c441379f4309d0541efe495deffb6f256c371eea2a53ea6357862f17b68
MD5 6db8f92cdf7bf00654b9d14a59708048
BLAKE2b-256 0a3997a363893b03a33ef8a9dc3bd57077c4ea2bc60f62a69e8f1d6f1eb55356

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e1df4aced00250c2a22e8801ee1b9e885b6975f0a3cf6eb9bb59f3a733bd946
MD5 49487c253d0a44df6192b589fa8fda1c
BLAKE2b-256 65ac0cd27d93c60acbcb0036aae23992050d970f6b80039c9cb4248e1a56b948

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f568f36b0a8464a151644fb2805abe329c84f67adf2e1f34126c2f917c1aef6
MD5 91d48405f70f9eeed26b4e73c856f895
BLAKE2b-256 3e3f0b23db57e2d89bd278cd1ef69af9245c467f1d81f3d6400ca7f6071dbd4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 377c5795936ce37be014044f4dd85454f752dc531b13dd600f1160b502b44aa7
MD5 4b771f11f30ca0d7ed3fbb54e744ee57
BLAKE2b-256 19598e7a7d48b9b395a6008d70ca37d3c52cad322aa6491ddf52742a2b58393b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.8.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da2a64e27082030a9c8ef60843cea32b63cddbfc310fef7dd160eda4eb3fb380
MD5 7884ccf54813c55eb79d9af5898f0bac
BLAKE2b-256 7693e69c9e2ba8d61e163266b320e69e3e7b7e25dc8ba65b76d30ad00d7a5937

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

2.2.1

15 files

2.2.0

15 files

2.1.0

15 files

2.0.0

15 files

1.9.3

15 files

1.9.2

15 files

1.9.1

15 files

This release

1.8.0 This release

43 files

1.7.0

45 files

1.6.1

45 files

1.6.0

45 files

1.5.2

45 files

1.5.1

95 files

1.5.0

95 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page