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")
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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

bolivar-1.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (22.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bolivar-1.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bolivar-1.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bolivar-1.7.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.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

bolivar-1.7.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.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

bolivar-1.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl (22.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

bolivar-1.7.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.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

bolivar-1.7.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.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

bolivar-1.7.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.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bolivar-1.7.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.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

bolivar-1.7.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.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bolivar-1.7.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.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bolivar-1.7.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.7.0.tar.gz.

File metadata

  • Download URL: bolivar-1.7.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.7.0.tar.gz
Algorithm Hash digest
SHA256 d9be310210f6e5e77bc4e5da2e5560f612596f62ea20f3ab1818ed4dafe0898e
MD5 687048deb022ab180cbdde8526404c36
BLAKE2b-256 d6245830c4d399ca1caeb8d1908d3b6a9311a8dd828ad6719cb19dbb1d61c7a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8b419c994b0aacad41a17bad5b9611323df3845ada9570e6a7222304568ee4e
MD5 bafb38a5e6a7e64fbf7cbc69673c7116
BLAKE2b-256 0dd2f14d2c091ffcf5701374a82a5b459d599fb1c332c933dffc30aef00dcf76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4780ebc20d347647ef0181adfab8aa8f5c5016674de12085c53f30ce666e419d
MD5 cc337681d0e2000edb713d3ea680e707
BLAKE2b-256 aaefd7217d7b38a38e8b3afd29197db3e7c44ee515f86869a734cbdb3fc072de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc02d241fad90012b22c771fd88d92b5ac98e9c9f79c84864342f7c7fa7ff106
MD5 5b9bf34d55e9b32a10288bf54f8ceb0b
BLAKE2b-256 ad8fa4e45995588440e3f35a2ddae7e3dd7fa202e6101d60703b1846a699d169

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70e8a98cdeb628f75ff56e2e15dc8890864f2ea6b3d492b894b133ebbe020b41
MD5 d8c3aeb57ee5dc331aefac9437aed2b4
BLAKE2b-256 5ad7d2cd0ecf4ec5c296c70dcc9bd05fd143d64bb1dcc3f6ba9d7038dd6fad82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9a2952e2a53bb0a5e752e6759e1c81d053aee330d934d8ea260cae55df35f28
MD5 5addae787ab5d8ee70d7bf901e105fec
BLAKE2b-256 cdd19a2832361e98189f4366a0cc8f0c78c8060bed09c08d5ebe3cc60a8c3b20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 492481ed252832b4a3e94e09718d03286631a88c284db6dfe14e8e28ea27d513
MD5 569907ddaa8ee442df364105a2cf5bfc
BLAKE2b-256 91898ea76fa5ddb2dd0dd2874cdc64ea32a6881fac2198756dee10826bf1e94a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82df305444e755e0b44aba9e0d9537922833a3cad4f9e8bc70c0b4b39a183808
MD5 604f5522df09ad4790029f927e39e958
BLAKE2b-256 20d3dc780dc0a0bf696f631f5b4106b8297dffe9d1b7948ced68a5b61095522b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.7.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.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 834380549888e8eec24a688342dd115b1521a124906d6c1728c663529b8d1cdc
MD5 556497facdf0dee9f214db8ceb676cdb
BLAKE2b-256 55657dcc099f8d6ea2c4b3e6b964d95dc18242488151c9024a2ad3449676e2e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a35b3d8ab382e4cf45daf83476bd5b1e85d460f7ff1363a04d91678aa2763e13
MD5 02862f7932652872cb6d4625d70facf0
BLAKE2b-256 ab621c3b2287ad0006afaa9f674371d3bafda5be4159a2a7c32ce4dcec609977

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f67d51af32c4fa88069dd2e13664a539187b435d57065e177b75b89958abd432
MD5 5b740cfa88b59c581378182d16b32feb
BLAKE2b-256 87e648284afd45f02270b707f68a17bc1371dd28674c492df46766741489e0f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a33e08ccff29620d845b41f8d7ee16e3230c820d6cffcc3d616d41a71dc06655
MD5 27725396ad50fd98c45796aa6c33c1e6
BLAKE2b-256 ec1469401912b541db1ae20dfa7f18ed65f9ebc8275d054542ca7b1e7418daab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b43edfc406297cd2fe691249683e81ddc0c3c07913dbcd4b4429bbbc63497084
MD5 2490525051f59d5d26508173cd6017db
BLAKE2b-256 668c51b0a58c7da9d9fe6f7002beea039926bb4abdf0da286353817b97de9112

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdae35cc163f980df5e52e621a90074d2395b93ea5e7e83286090b281674a673
MD5 3bb733669d542ce59ffdc4eabed404e7
BLAKE2b-256 b1b93dc411e6f0589698accbb9600773caad0de1529cade7ed200726cd625572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff3ea6f8ab0a97a775c577a28a54df9b89bdd33322cab7f1f6ec0e05fa2e2294
MD5 df10079997ebba17ca5668c8ad7e904a
BLAKE2b-256 6602c8dcaf22de4efce4696b01b434a1fe339832181d186a109d2c1cdf3d4d45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4103de01f6d193b6c69d1bf98b36a41553ceea30b35190fc891c7c323e63e37
MD5 635e25a18f0834f422717191b22614e7
BLAKE2b-256 e720b5a065e0854f557f29eb10a2958b153978b473a81bee07baaebdba65bdb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7225ccaa41b8d303a60f669f76a284fe36e98c2ffdf5cda1eb19c221da8b1e88
MD5 24cf8f2260d6872ccbc95dbafbb5d56d
BLAKE2b-256 487513c4431da2a947a4eb146669e3a61b10fc4d6e33d45d746166b0361cfb7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 757b10097a6004676db7c647c47c6a4d0f09514942f1b74ca5e7640bcbc650fb
MD5 92d213d9e9f458bb19363d93d3224122
BLAKE2b-256 e3af9b2ca201592434ccba22dedfab86e40fcafde79fbd9800396cdc9b6330a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.7.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.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 78776ba82715ece6f90e7c8873a91c562b0d6a645d96e51d2ea9495b58655ced
MD5 f90e32412321d7edf09f00e0c3b2783f
BLAKE2b-256 caacc3787db3cc747af93e743f3493f221d67df41de06de911f65b6f5659c75e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e07e69f46f834c38b57abb08ad38eb563cf81b0c96314ff5718848bc4ba22505
MD5 2d1345458e14edf40fe23585b315681d
BLAKE2b-256 af0241c8ed8664ff829c9f86d37335f6459785c1b6423c37c65e7cd7d059476f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe9fdb61c857317ab00ff422adb552654c754770f28897bbcfbdcf1423fd2cdf
MD5 d67ee03981d2271de6d1722ec653023a
BLAKE2b-256 ddacd45fbf4df6cc63218fd5a44324f664823b98eee49fe323818d0775ba3201

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c02abf72a3505df23c7071a85228c6e972d328af52cdf597cda910c2930592db
MD5 30fed689f0faaaebe00b0ddb0eb392e0
BLAKE2b-256 980466fb1655c643b9f6c1a20d5ace0b03cea649b5acf487cf8f3e5cc7fc2a1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62037664d7b5ba89b28b0ff2f275c72b030b67f67a2a09ba99aab8d33567cf66
MD5 5d8f900b96717f311213bd061452ee54
BLAKE2b-256 b5221902dd04906ca0eff9d6874391b713f52dcc18249e3a9217ec0578b1c861

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2fac4e854db74e624c5475b942c62e2ef054b010ca582c3827fad20f5480962
MD5 016b0a770cb6f5041ba7990c7cc4adbe
BLAKE2b-256 b52b3492b1652860148bdf7326daeaed2466400ca124c7ac333a4e0ac75e96e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5169b1cbb27b0f96df8f8154c38fbb7586aef0eb9635b9a129f12b75dea666a1
MD5 fb34ac1b4b5a3406cc59146ab6958c76
BLAKE2b-256 d8d3f397883c7bbf15c024c2186533d40de4476b0a9443f0afd480879146adb1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.7.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.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ec98219da74c43e76276a21951797608f75c83e3679a2c9ff33a3c1824f80734
MD5 b53885095029ffffc632244104005d86
BLAKE2b-256 99c401b0affc58c2d480af5ebf91d3bf6e314edc92b57969dfb1c9a96e6cb418

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c2fb2104a2e0e37c7304331859b5fe8a35a394e2c1ab8795d048567488f2cde
MD5 ad2fb40bae60d0ca213c163de8505a94
BLAKE2b-256 dbca9a879c1566333276466b9c660c14df548f39211cb4bff7c99afeb6b58488

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbf781481267c3f871871a5592d241d9d3db45fd32ee93ce829e4f1d84620ad9
MD5 96c7ff70c4a227d1de3ce8bb00c0b208
BLAKE2b-256 b11fa30e7c6d1293ba2e2db8074b0567ac8ae6e11db776c52acf26ec2495d5d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c85eb8915087f49c698eebaf251f412ceb502e57570174368ab83e628ce6e840
MD5 d2ddcc58897b5550312ee4e0bab45f80
BLAKE2b-256 d1f869baeb5225d05b58a5305742514ee3d1255b590b66bbc4413120f640fc47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40567fd399163608e8780bdadad8dbd965d22f06642fb084c7c02aa538016523
MD5 d461b70c2edfcbcb14e928f1420a2263
BLAKE2b-256 b189d2802c546154b43aa2c27df4512931059224bca954a6f60d13270c36177e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2afd34b468b39e271f0652fa6544bf0fd6a47c3aa395dbc06c9f9c8db3cc3a3
MD5 e495b9a53ae8a71c223500362245b3ca
BLAKE2b-256 387c60691aa9693777fe6e846ec056612194a11ebcf8396667fa2d955967c07b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6571201423188d41988b4e1cc927ea0215b1a1f99a0d65949b4f5fd1ccc3fe75
MD5 b2cc25ecc12f2a69564353956ca3008f
BLAKE2b-256 46bfd35ee15c779d17a2383481270296aee8f4a61b0dc06e2c283333f230a080

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.7.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.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 94942826c06f95074817d10c1e4c1262eb615b430eb07848b51038de6c797131
MD5 256bcb39096e0bc9d575742cc8645c9b
BLAKE2b-256 1e9bb17ecf0a40e8e56ad0b069b2488d01032ec94b1d230821f0c562a03af548

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f10806f18a833c9e8cb14a6f28456eddea32e41fbc441f82a7bb3feb12cc1f2
MD5 75195f983b15d32e4ef8f233c77c0ac3
BLAKE2b-256 20795b5f17ec3f87e485bd0ce6a5ef1c31a45730c1b75408046804df3fbb75a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75c76b001e7aff53f7b609e1ad2d810b60ff34e732efe26c7631220965462e33
MD5 d92f269e1c37b8d7ac1f5b57539b6e4e
BLAKE2b-256 bd6a9a20074477102eaa72565d0fb3dbcdd61430cc6c05e9bba1b22134a65b10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d738fd3409b3dfc07185ef0ac2dde4cd02bd29f69389d7c4e971e7d1f3699768
MD5 26126eb1ecc321d752e001bca9a08ad4
BLAKE2b-256 5edc0b117229c6e60ca3727895895cb8e39c37d583609b87aad89c86b56f1758

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65a2192b95a2c42f86ce96859e02368f428058110a0cd67716643b2234be4160
MD5 08f8f8e7f56caeb8097e573c98456450
BLAKE2b-256 893be6b7bef7c4ae28058af286d8d403fc7e9de85b1c17e6f2b1cd3d93ced03b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 841636ee5e18b4286a631b19f79e87f956a986c2193848479c121aee03ce69af
MD5 c7674e9a1d2f6d3a4ff694642c197d0d
BLAKE2b-256 411ec25e3effa0f83744a1e8632fa66312f04fc9625d9dbdf18feff2cf651db5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 653e7a2fe7c10d6b564ef00cb9741ec7deb2c4e0169ebf22c6bdc7bf4d9b8756
MD5 4dac8b9174a913bc23667e5ed7f42736
BLAKE2b-256 806799a03160696801cd355493d6a1082e93d44dd4d098a62984defb8eb35830

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: bolivar-1.7.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.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 295f230b06017d8a4f2b154972240f62b08c5b8491f004cadf6d3f57fd4d861a
MD5 c11185c37b46662694740b8995fa7aca
BLAKE2b-256 01532bde24d250743a63df499112fc0829fce4df4acf4c2aeb2556f100665d46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00aa7cb4ca8ec13ea4bd76352560dcbf55d53a03d40c30d7bd8774feb8f0aaa4
MD5 47e999032726e13d54a643041adf9a89
BLAKE2b-256 45166cc32e5261c1f475392ae12af33aad55537486c56101a125aecd3cf3c703

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b29e415d65d1a65d2838436489f21019b43fb65f34098ed335f49af55fbebfe
MD5 94e5b64e7bd46b9d870dc593799895de
BLAKE2b-256 14b1df5e1af876070b4d130450e29d468076aef62d3202e78f270f085f599cb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 146e1ee04b6414847494ba3aabafa0e1ba55b5e41ef7e8bc8f589660e3308dfe
MD5 8b58d25887e02181c6d793eefbbffd76
BLAKE2b-256 ea28f8df5223e5d66439ed2303d1b5dec18cf9d88fdf5eff67eba14b2cd79db6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4dc537c8242c275b89512c5c2a95138ecbc24d5837bbae6a800daeb8f54ab36
MD5 480b35235b00be5ef4d832b32fbd4861
BLAKE2b-256 3753707f0f072d7e0fbc5ebc6d1fc4b37a1cfd9ae7a09b9540e1f8bf5b7a45db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for bolivar-1.7.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21f0a9cbcec30e8808dae8b40d4ed6b36d35c5494f07c6e1f0e3971e96bd4ab0
MD5 2657bc117d3a68c6be9ecd2034bb7106
BLAKE2b-256 7636f541c35a3ffd98a89d074d874dc699e9f6e02582be4dc27dc6c023835c33

See more details on using hashes here.

Provenance

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