A library for parsing BigQuery queries and extracting schema-aware, column-level lineage.
Project description
inbq
A library for parsing BigQuery queries and extracting schema-aware, column-level lineage. Written in Rust, with Python bindings.
Features
- Parse BigQuery queries into well-structured ASTs with easy-to-navigate nodes.
- Extract schema-aware, column-level lineage.
- Trace data flow through nested structs and arrays.
- Support both single and multi-statement queries and procedural language constructs.
- Built for speed and efficiency, with lightweight Python bindings that add minimal overhead.
Python
Install
pip install inbq
Example
import inbq
catalog = {"schema_objects": []}
def add_table(name: str, columns: list[tuple[str, str]]) -> None:
catalog["schema_objects"].append({
"name": name,
"kind": {
"table": {
"columns": [{"name": name, "dtype": dtype} for name, dtype in columns]
}
}
})
add_table("project.dataset.out", [("id", "int64"), ("val", "float64")])
add_table("project.dataset.t1", [("id", "int64"), ("x", "float64")])
add_table("project.dataset.t2", [("id", "int64"), ("s", "struct<source string, x float64>")])
query = """
declare default_val float64 default (select min(val) from project.dataset.out);
insert into `project.dataset.out`
select
id,
if(x is null or s.x is null, default_val, x + s.x)
from `project.dataset.t1` inner join `project.dataset.t2` using (id);
"""
pipeline = (
inbq.Pipeline()
.config(raise_exception_on_error=False, parallel=True)
.parse()
.extract_lineage(catalog=catalog, include_raw=False)
)
pipeline_output = inbq.run_pipeline(sqls=[query], pipeline=pipeline)
for ast, output_lineage in zip(pipeline_output.asts, pipeline_output.lineages):
print(f"{ast=}")
print("\nLineage:")
for object in output_lineage.lineage.objects:
for node in object.nodes:
print(
f"{object.name}->{node.name} <- {[f'{input_node.obj_name}->{input_node.node_name}' for input_node in node.input]}"
)
print("\nUsed columns:")
for object in output_lineage.used_columns.objects:
for node in object.nodes:
print(f"{object.name}->{node.name} used in {node.used_in}")
# Prints:
# ast=Ast(...)
# Lineage:
# project.dataset.out->id <- ['project.dataset.t2->id', 'project.dataset.t1->id']
# project.dataset.out->val <- ['project.dataset.t2->s.x', 'project.dataset.t1->x', 'project.dataset.out->val']
# Used columns:
# project.dataset.out->val used in ['default_var', 'select']
# project.dataset.t1->id used in ['join', 'select']
# project.dataset.t1->x used in ['select']
# project.dataset.t2->id used in ['join', 'select']
# project.dataset.t2->s.x used in ['select']
Rust
Install
cargo add inbq
Example
use inbq::{
lineage::{Catalog, Column, SchemaObject, SchemaObjectKind, extract_lineage},
parser::Parser,
scanner::Scanner,
};
fn column(name: &str, dtype: &str) -> Column {
Column {
name: name.to_owned(),
dtype: dtype.to_owned(),
}
}
fn main() -> anyhow::Result<()> {
env_logger::init();
let sql = r#"
declare default_val float64 default (select min(val) from project.dataset.out);
insert into `project.dataset.out`
select
id,
if(x is null or s.x is null, default_val, x + s.x)
from `project.dataset.t1` inner join `project.dataset.t2` using (id);
"#;
let mut scanner = Scanner::new(sql);
scanner.scan()?;
let mut parser = Parser::new(scanner.tokens());
let ast = parser.parse()?;
println!("Syntax Tree: {:?}", ast);
let data_catalog = Catalog {
schema_objects: vec![
SchemaObject {
name: "project.dataset.out".to_owned(),
kind: SchemaObjectKind::Table {
columns: vec![column("id", "int64"), column("val", "int64")],
},
},
SchemaObject {
name: "project.dataset.t1".to_owned(),
kind: SchemaObjectKind::Table {
columns: vec![column("id", "int64"), column("x", "float64")],
},
},
SchemaObject {
name: "project.dataset.t2".to_owned(),
kind: SchemaObjectKind::Table {
columns: vec![
column("id", "int64"),
column("s", "struct<source string, x float64>"),
],
},
},
],
};
let lineage = extract_lineage(&[&ast], &data_catalog, false, true)
.pop()
.unwrap()?;
println!("\nLineage: {:?}", lineage.lineage);
println!("\nUsed columns: {:?}", lineage.used_columns);
Ok(())
}
Command Line Interface
Install binary
cargo install inbq
Extract Lineage
-
Prepare your data catalog: create a JSON file (e.g., catalog.json) that defines the schema for all tables and views referenced in your SQL queries.
-
Run inbq: pass the catalog file and your SQL file(s) to the inbq lineage command.
inbq extract-lineage \
--pretty \
--catalog ./examples/lineage/catalog.json \
./examples/lineage/query.sql
The output is written to stdout.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file inbq-0.7.0.tar.gz.
File metadata
- Download URL: inbq-0.7.0.tar.gz
- Upload date:
- Size: 151.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8263e3c3985ad7c81305ec9519e753f72646d0c19db12e3b9a019fa2966b1d3
|
|
| MD5 |
d4ede69295b4aaef5f5727a573001d5b
|
|
| BLAKE2b-256 |
61fee89e67aca5827f621d0fec59f634fec3a9700786d285261fcc972649fa40
|
File details
Details for the file inbq-0.7.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c201ace5f56845b27b44c78d28fbff0a32ad79e576f40a1c1ed6ca4a41b1f66
|
|
| MD5 |
397a527c9b46c993146507adb6845e29
|
|
| BLAKE2b-256 |
1c74be47258e5558ad6d46b05a10a90153868d683b9e722295ef17cf4059395a
|
File details
Details for the file inbq-0.7.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: inbq-0.7.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
509725e15615964faec2eb5341edcd109ae8ac25d9f6395c66678ff4e263c788
|
|
| MD5 |
5907d8345660461c688a65db8d514813
|
|
| BLAKE2b-256 |
5f4db464eb61dc0af4316132050818063d232d9dd7bc6202731b66e305d5e42c
|
File details
Details for the file inbq-0.7.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13baa18913e1fac21a8f66b07d4108c1eccee721b7506006a78a6f3345821181
|
|
| MD5 |
08af76256512db19e64f01beaf54e1fb
|
|
| BLAKE2b-256 |
33b9506ca7655f1c83da07dceb3160194b0c48ef3180259163f0cebc6ba3e073
|
File details
Details for the file inbq-0.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6a002cac320c215236c3d857dd827e98dc618c8b04593f3b245382de5e29e3e
|
|
| MD5 |
b34978c760c54988f9cafeba11fde722
|
|
| BLAKE2b-256 |
ab5b17d97a3b23626cc6d9defe8407d7ec9112cb0a48ffcafbb975ad24b2d94e
|
File details
Details for the file inbq-0.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c08bd01e4c3b4e703b89587cb9ab89530a0dd4c9bcfa4adeeef9d67baed58ab3
|
|
| MD5 |
f4c61173129ba61a4cca2aee875e3446
|
|
| BLAKE2b-256 |
a546d1bcd77ba36525a5bebdfc20135b35a92e4a07f55d9e8e028d6d5ed3254c
|
File details
Details for the file inbq-0.7.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: inbq-0.7.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d5ebf4ef2d8659c7c001bf1a78aeecb5bf2c725a369773c8d267e2761be5d0b
|
|
| MD5 |
e53ee206b9e1ea1682dfdfcddefb9825
|
|
| BLAKE2b-256 |
8567be74a630960ef152e3592db860abcfbdca1c7a3101995abe6e643e6f37b2
|
File details
Details for the file inbq-0.7.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: inbq-0.7.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
550a3d8b85fb71b25e4079846308a954f895d034d80ad2bc03d2ae59f42aaf7f
|
|
| MD5 |
e28da733b084fc978024b84422c9c260
|
|
| BLAKE2b-256 |
c90dccb2b07e2655ae736eea29671ee6d6b7e499994dcaa3a68f683f086c05b1
|
File details
Details for the file inbq-0.7.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: inbq-0.7.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2bb9795f94a1bbbbee7e097ac73c3a3aa968e5af46dfb666b11f304d884340d
|
|
| MD5 |
b9fcf7045005da8e328b621aea0397ca
|
|
| BLAKE2b-256 |
36cdbf6ff5ed93db72636ff9e86f93051a7ae4573ce8ac3444101e27e2b18549
|
File details
Details for the file inbq-0.7.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1818a46a503e070a8240986af829ffecaeaa3fa754aef178429bf5f0c06f7e5
|
|
| MD5 |
edfe8bd0dfdd46adde2284226dd7e0ab
|
|
| BLAKE2b-256 |
ab1d35ed343a3335d8ff1e5d1ac6cfbca4c1162cc3b2cdafc2f4dc51801ef3b6
|
File details
Details for the file inbq-0.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
599d450288dcde0ab7bfe4284b6dc6e6afcf9a26b29fc0c7a5dd5cd4cfc38cab
|
|
| MD5 |
e239e18099d1f277c88377543ee51f78
|
|
| BLAKE2b-256 |
16d34af796fcffde368a6e800d0190f5c2b6083de18b0dfa7f2a0d5dc25f1a13
|
File details
Details for the file inbq-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1abfb7be587be66e94648ec98014ef269569d0c34c57a4495112db0e017366ee
|
|
| MD5 |
9b02af501aa7d1f6c6fc93513ba91c1c
|
|
| BLAKE2b-256 |
978899b90ee0f0ee459531daa0b617c863522a3927e50e753a125cc0cd973e97
|
File details
Details for the file inbq-0.7.0-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9317535a85887337d6faeee0e9e547893d357c51dcaf503959c14c20e4af90ed
|
|
| MD5 |
94293d6edbbb092cb07158d0f2b66462
|
|
| BLAKE2b-256 |
cb71d38a082d56d396460bc1434c7cf239d6e9f7dad44adcc8260124c88fb7a2
|
File details
Details for the file inbq-0.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca45563e690448353c1c5b642ce8f2394b04352e499f6486079fb92131faca52
|
|
| MD5 |
a369ebc11597af73f748543a935a3d42
|
|
| BLAKE2b-256 |
a8b68cd09608375d7e304c3818381ffb274d6b3e41b79db4047ca1c3a62f82cf
|
File details
Details for the file inbq-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d1903d6d0b0b6da38a0e7c3de48af38ba208f0f4490b027165da9dc5e6ab815
|
|
| MD5 |
38cfbbe1eecf928c25f35a50e2785474
|
|
| BLAKE2b-256 |
cea6a9b58990472c3999bc9699defbc748bac3773ad365488246145ae3f2419b
|
File details
Details for the file inbq-0.7.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cea7c5fea695a0b79aaca9c5ce4e76a8c756bf790a41a0a039fd1549d687fd7
|
|
| MD5 |
90998f2768ac1c516440e70ff88b369a
|
|
| BLAKE2b-256 |
6c44a6d117724472e1d78dd0e7be673bb049be8101c475235165471f9ee61d65
|
File details
Details for the file inbq-0.7.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d154377f628173efed17ce043eeb7e35cf57bb2b26de9a471f70a9c8bd69fa2e
|
|
| MD5 |
adc65cb0b99fdfe52938c2d721050240
|
|
| BLAKE2b-256 |
ebe99860a183ba27ae2dbaa9e3c57cffe7b55357f89b24fa63320581bd650954
|
File details
Details for the file inbq-0.7.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86b99414b557466ee5bb9001511a94fa59d03b4d1665caa99dfe527751eebbf0
|
|
| MD5 |
728b2cd9d75e1a60f4b8e617e16fba6e
|
|
| BLAKE2b-256 |
d4d154473ed8d82830bddae41cb3c392e69e3d4afd4e185264ee7ad2fddd4968
|
File details
Details for the file inbq-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38eb237971828513e70259f5b30a9e279b2f9bec23520064ff5c3834daccb25e
|
|
| MD5 |
735a0c8b0b1bf5eab562201e77ed58de
|
|
| BLAKE2b-256 |
d1d0420aa046fa70e92f144b26097c7c9025e304b5967414d6542556ace4e2c6
|
File details
Details for the file inbq-0.7.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 935.1 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b485d74302b5468142f4e28ac91874220e7ffb2fba1463deefd06011ab6d14c9
|
|
| MD5 |
40c34a0ce20b2d86575a8e0d17bceb26
|
|
| BLAKE2b-256 |
54d8c024cdc4a7ffe0b878b4e0a6f5bdebc4d4894eab54645a7989572dec74b6
|
File details
Details for the file inbq-0.7.0-cp314-cp314-win32.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-win32.whl
- Upload date:
- Size: 838.6 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
088e0b4e7fb04f482d36852477b0f5940d6260cba80a6859807298dd65ed6874
|
|
| MD5 |
ca5fffbd45501e8a55378829bd7c8264
|
|
| BLAKE2b-256 |
5332fda2cf5752022936ce3cbdf064875e45c25e9766b753327233cfa75a2704
|
File details
Details for the file inbq-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19422990b6182a9809be211ac0fd563772dcfb012a411997c37cd4390c9d7e38
|
|
| MD5 |
ff371e6c5045f6e65090dd9b7624412d
|
|
| BLAKE2b-256 |
7902fb61607e78245ab98b36b5d1b50ac733fd7578e148337a03072f28034b51
|
File details
Details for the file inbq-0.7.0-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16e6889b4227703864d54451757c65dcfcaf9daeb0910ceedefde95e1a9cffd9
|
|
| MD5 |
82309aba8e9767a320c75b6d5951f1ed
|
|
| BLAKE2b-256 |
dbccc1165ec74f7da01da1fc7069d82c4137f76f221acd1ca0422912eceaee60
|
File details
Details for the file inbq-0.7.0-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9ad696568c0b5fe94a4d545de24944dd734c0bb9edf85b5e402b412e378b456
|
|
| MD5 |
0001893a7cf7cba977048d8bb6ffbb59
|
|
| BLAKE2b-256 |
88d500a312db8ef146129a4dd646ec417234dfefc913aad7b8dc972a895aebd7
|
File details
Details for the file inbq-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbf4e338285cad815e04204f9e8254f1c2b5f17fb957c4ff4d20dcba5d78cdfd
|
|
| MD5 |
ff0fcd6a63243fef7b7031c4282c6989
|
|
| BLAKE2b-256 |
748dd4db63234b3f9f9e9ea0f3061a4eb0f420a01ca6199befbcf72ab3544970
|
File details
Details for the file inbq-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbbfcb36a030991c184d2e3482d325dd62735fe543587b54679f7decb9d76c6f
|
|
| MD5 |
5f7fee6e78e8e9461879d8974e445e87
|
|
| BLAKE2b-256 |
e5b8c4ce96066a8e1e4b177946b0e33c84c134856059ffd183ad1040681af86d
|
File details
Details for the file inbq-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8dadfb6dae05b5705276bb77af2db867fc5d4cd5088b76279c98c42297c337c
|
|
| MD5 |
45c2ff835076c428ed036f106d7a09f1
|
|
| BLAKE2b-256 |
1332a8b82bda073b1f948535c830cac17d4a8948add03d266e0b8089eb80a665
|
File details
Details for the file inbq-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2531d3692b022be18969673c1d14ab2497a71660b51f51a5c1a89f783cfbe9e6
|
|
| MD5 |
59ca2e7a119b56eac0b90f78a6e5361a
|
|
| BLAKE2b-256 |
491feed4a54db8789ab3f40fe2095a8b56b73ddeb75f53df216175023bccdf7d
|
File details
Details for the file inbq-0.7.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45d382361aa89da1b945a3e9e36c1c9ab8eab95b793e48df32ac90beb1901bad
|
|
| MD5 |
5d3deaced45e09b23567df9c7c8753f6
|
|
| BLAKE2b-256 |
0dcd5512a7fc3a9b7c62e2a529feef7c5cdaceb0303ae7d2e805525a0306a7dc
|
File details
Details for the file inbq-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9b712a84b07fa6e372a04267d1abce3c6f3217aaaef5b88f0bb41e71393f65a
|
|
| MD5 |
542a239f41609b9063ade26884ad7d1d
|
|
| BLAKE2b-256 |
44bf28b89756d781479ceb732eed87708ece1c126b95c70562e448cb166d594c
|
File details
Details for the file inbq-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37d40e77778b103e0a13468952584ea87c49abde713031fc4544b4268e99fef9
|
|
| MD5 |
c445c4f04508de0a4aa43659335e2ca9
|
|
| BLAKE2b-256 |
17a2d76dad65dea1613c6273696d71a22dbc5d9eda1d78883368802752f52876
|
File details
Details for the file inbq-0.7.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16d050fdf0d0f3815e20b7347792e4b2a07b90c024eaaae6567852f208fc9ac2
|
|
| MD5 |
64a790e9cdf9cf769282fa3420e3ae4b
|
|
| BLAKE2b-256 |
104976b7b6473657887c7e3ba882930fe9140b72b24ace8782fab712474fe06d
|
File details
Details for the file inbq-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc2085ea25405213bb44d0c334d253e80dce7c8e67c0ebd3aa4a1b0c096edfde
|
|
| MD5 |
928cfb91c0902b0e0b3e19952ee42b7f
|
|
| BLAKE2b-256 |
c7b7781825fdc702a4e0e90c98f2efceac1abd6e69b6e6d5fffec1e033f50d33
|
File details
Details for the file inbq-0.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39534a17202feb9f9c59e0e584ca98a0d47f35d20aa200e505abd312223b106a
|
|
| MD5 |
b5746696a0ef2f20eb97da9079806823
|
|
| BLAKE2b-256 |
aa64c48ed295d035a10464a4e411f2416dbd4c065c3a35d2a51ab73303edc089
|
File details
Details for the file inbq-0.7.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6e13ad957172e79c1d27d2a227c9567ffb218f88df68173cbf8f19f8ed221fb
|
|
| MD5 |
0f8609e125305333a3f3e560bffcbc2d
|
|
| BLAKE2b-256 |
86f37aa34ae562617e220742d20ac31801e9dc30c59c0181d56d95c8527c53da
|
File details
Details for the file inbq-0.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
214c66f3555eb67168b5371245a9a0d1f3fcd5609e1426431416ef688ab05754
|
|
| MD5 |
c8a66d3935f0f485f1e2ec0f05d0f0d3
|
|
| BLAKE2b-256 |
c9d1e329e457888ef5d27020d60b0b1a18038ae1b17e57da6826728f18ae0f10
|
File details
Details for the file inbq-0.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
175b1aee08553df40bde667b014624df5326c46461c7cc0f5550934b7d18dd50
|
|
| MD5 |
5eb89977eb73bb5a25ac151322d0e365
|
|
| BLAKE2b-256 |
06c12582201691ec1936f16ac75e39fc32b6163916d92c318beaf7d565d2b812
|
File details
Details for the file inbq-0.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1514890a2d93562cc4d9ab1479d5a97754c9dd444ae71767519d815a256e3494
|
|
| MD5 |
79ec4cb672910be042e600deaedeffca
|
|
| BLAKE2b-256 |
68c2b61076898f0181b546a74565f3df007cdee934f40cdfb9c6b55eec4585ac
|
File details
Details for the file inbq-0.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa4a470ea9a147b947e71d10963ce0552d32c90c02a8a5f80b1b416ca5044989
|
|
| MD5 |
b52216e1bcc3f891ae24c62fb23a2460
|
|
| BLAKE2b-256 |
64eaa8f5df223e680cf1d34fea17798f36fa032c893c758d0029bc5e847311c3
|
File details
Details for the file inbq-0.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e696cc985a24771ee931b3e11008c8e6b8cbaadbdf7a5a8c8d0296c86e25a88c
|
|
| MD5 |
e303fc260ac8b87b99b3979dc483273b
|
|
| BLAKE2b-256 |
17dd998eaf41980e626af59a89cdc9d35f1b5173a893f7b113a725be4d6d5e79
|
File details
Details for the file inbq-0.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06cdc7f46774030f6c8cb5bca41c0e766ad0a2cdd3bd63dbc37f7829e082b85c
|
|
| MD5 |
6a47045884a3cfeeadfb18bf995006c3
|
|
| BLAKE2b-256 |
e827b7ac45a27bff0ee372cf859fa92ce74d2d1ec4aa1f7c2388fcf402a89acb
|
File details
Details for the file inbq-0.7.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 935.0 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe26472ad9eb23398435e00d8de26b28f631ce8c3a94ffde75620fc577dc04e0
|
|
| MD5 |
5a8735da4bd71069f258c242b08941ab
|
|
| BLAKE2b-256 |
769e3c64957a9e47f0eed0cda70ef5e7a1585caaa611ef7ca15f9b81157503b0
|
File details
Details for the file inbq-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b2876cf9aeb90588d5e438e12d998b2881596911a1f02a8528555c89e02f0de
|
|
| MD5 |
b8030890530a2b6e1248b82db99c210d
|
|
| BLAKE2b-256 |
c189b957f8c6927584afd6c1ecdadb81712cd23df0578cb07435e80b5e852533
|
File details
Details for the file inbq-0.7.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd591b831ab9793b8691e4d5c3bb4f2df9463c9ebb01f431919c913b1e9e88ac
|
|
| MD5 |
3ae2d1113477b29c46dbe44d9a6fda7e
|
|
| BLAKE2b-256 |
f186941e0b36b8bee9cdcd420705fad896b56d2c9398c09ed45841ebbb34b790
|
File details
Details for the file inbq-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f54009682b167ec13e66603cb4f7061a55739258ceabc3db25e1bc10b3dc6091
|
|
| MD5 |
102630b902d9481e1476f03b11799711
|
|
| BLAKE2b-256 |
a1fd09d69d8428f15f0e75c95e4e08c1a9ff35f0a4dc7e9e2c77c65c88320264
|
File details
Details for the file inbq-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be2337c4f29db9eab4ffd2b600450012a1aa4b8d3fba46d4c3d157fecc43e687
|
|
| MD5 |
e3f48b6b451aa487849a89a57f725409
|
|
| BLAKE2b-256 |
7bedf1d0ef9614c9c7ace3f6a4c3ef7590be744019f543d2d32adbd462afecf8
|
File details
Details for the file inbq-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5d679c8a71f579c427032601e38801818d78160fd4f0c4812d9091d5627f648
|
|
| MD5 |
6815e49062a177a7d44f17f68e340165
|
|
| BLAKE2b-256 |
b05cf6a5654ccea36a347239b19a1815395ff8f9b32f97fb4632936ccd8e3e9e
|
File details
Details for the file inbq-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
738d58ec9a22c592a9aa067e0155e1c4135a4f0052b4d99f70c2a3ce5eeca382
|
|
| MD5 |
99216b8d2a0f03dd4205b8f18e39ca6e
|
|
| BLAKE2b-256 |
89b253858d0665ef6503a17b590d2560d65c1b7bd8c565b53212991c7513d8d4
|
File details
Details for the file inbq-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4224b7ca7c5eb3622c05a80c479053116f537bd5a3429ebe04adf0e6b1241a3c
|
|
| MD5 |
a6931a9051dfbd020ab9d30000d120ee
|
|
| BLAKE2b-256 |
0ca4f5c003e241eee47b87e04c77e050bd7c5ff2b9d0bea442a513e3e0b210d7
|
File details
Details for the file inbq-0.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32a08abcd5ed2c337c16ca1fead6d976744bc95fa2d2896599e2cdb6e4e21716
|
|
| MD5 |
88fba84eb61890ddce00a99d3fde0496
|
|
| BLAKE2b-256 |
6824fa3fe755af68444a0987d800d434ba4af14501b68a0ed7967b02f4159e25
|
File details
Details for the file inbq-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a29afc5db5454ae16ad5fb23b9b1250c29db986e7f851653129a7954a2804ef
|
|
| MD5 |
9edc2d2f256ad29d3c98824d613b824e
|
|
| BLAKE2b-256 |
ed3884b606fc2e4163741b40f37bf26043c0da23489c132e96d7433aaf201904
|
File details
Details for the file inbq-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8efd81337297445dc1984e4592aa7c1927c25c243291bc64da35dcb3892803ab
|
|
| MD5 |
0c39c41ebfd23d9833281389e6a79e82
|
|
| BLAKE2b-256 |
213856ff203ab5cada35dfff9e766ca1185e5534d3b4f3e67b505fdbe370e254
|
File details
Details for the file inbq-0.7.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11ebac8517d5607491fde825b4a4bb74f877b5a259b405b186e7e7388dd59fec
|
|
| MD5 |
5bf69fcc37841126a4af8cd206357870
|
|
| BLAKE2b-256 |
278d2a81e4f87cf42d368807facce8c1b588b404e1a149e49e39ef5216ce6961
|
File details
Details for the file inbq-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2c3d6ce056c7d30d0f489197d7c89cc46100a0d64149c0c445441e8f95abd3f
|
|
| MD5 |
eeca8bc8dd4a193b28a4d5d2e1afe675
|
|
| BLAKE2b-256 |
95702bf352809db1afaf2c392276fa143d9becd0662a0be5fdf9472d3462fbd8
|
File details
Details for the file inbq-0.7.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 935.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6061cf5c9a8da97f1e53bea8c7965dfc081aacc579a09d56d5bdc51d592786e
|
|
| MD5 |
63d13762702f76572eb483bf94a448b6
|
|
| BLAKE2b-256 |
6a0470621f50ba971ccdfc31ce7d542ca60605ea2ea5a85705b8358f98575b30
|
File details
Details for the file inbq-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5eb994999cc944a312fc572a30ef2adde6016b416586477839501530fe2c772
|
|
| MD5 |
6a3806a10532cc22ddf5b0147a3e6e27
|
|
| BLAKE2b-256 |
70ad8d0c6a3daf86797d6bc59c80deba9ec7f7b48fdc061c868334be23fa4aac
|
File details
Details for the file inbq-0.7.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28dd04d2dabdf8b08f1da69cf3b9f0b2b1ebfbf61de63e15c8893015f258137c
|
|
| MD5 |
8c7aaeb6c98a7c9a8dd63a47334399da
|
|
| BLAKE2b-256 |
cb4ce5de455ec24b21cccf55dc8ee7e076478822da610e1a7a8ea00584dbca08
|
File details
Details for the file inbq-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ddd7c45f18fe733ad77b6201fc6488581783995b0c8b27510509c8a60f87ec7
|
|
| MD5 |
71fcf12243335d1f49d13c916248353e
|
|
| BLAKE2b-256 |
9c764525f3d2a6b1427e2e3a2d2f7a7eb0ac3472975551da129630450ae9e94f
|
File details
Details for the file inbq-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f285f820f21a4d4d650e9a83fbb155d299f7ed08489cce92cb847223598b6374
|
|
| MD5 |
ab59b7c863e2ae4f5b52471cd8703241
|
|
| BLAKE2b-256 |
d128b4e2262dad8d326742ee656468a8079ad310118e48d720eee8c3343046d6
|
File details
Details for the file inbq-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95b07902dacaaa964548855a3ba9236440c662e0370a836b33c8accd0e420ed0
|
|
| MD5 |
29f7a73aa05ffcf58a078f2c8d2cdda2
|
|
| BLAKE2b-256 |
dfc6e616bd5b62730d1368dc1063e33884e1a7b4e83a7772d450fc62e86d1b13
|
File details
Details for the file inbq-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54d58e1dbc045a2b2890b4603fea7e449f6351e952404e3b7faefd6310df49e2
|
|
| MD5 |
82ec1d91fc0337ef7075e760ff0e30c2
|
|
| BLAKE2b-256 |
fb5227bb97eee6553414b9bfb7428822e7a8b627fff43669f9a9077a08d0c636
|
File details
Details for the file inbq-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78d5b98c57fa651178f801a2ca8ec2e6307ee034809a0cc77d697c01e67a3414
|
|
| MD5 |
6a9ba238e1cca03712d4685fba047b12
|
|
| BLAKE2b-256 |
be08d71b9788deea47f03a5712855317a3feaa6d390e7c96120d2ee597c60b5d
|
File details
Details for the file inbq-0.7.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3591882dd03b89645b541b934747cb64ee0908edeb99ec5cb658a53273cb6963
|
|
| MD5 |
9468076873e3548567004ed804c6d6d3
|
|
| BLAKE2b-256 |
3f226409e885bf6b443899ca4458e551b1f32fc2b30d8c7827e4090778a67bda
|
File details
Details for the file inbq-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a10e5df48f15f6e3940a27bab40711766b743bcbde6b080356493996a8ac3cbb
|
|
| MD5 |
992c19f0b24842cec5f477afe9996494
|
|
| BLAKE2b-256 |
016dd298b3495ef2a062526c403a3e49d7d80b55203a9d75bbf23fa6faf8f972
|
File details
Details for the file inbq-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cdaf8f2b3c5428c6494790e308140b49048c3e861fbe6b230797b348b9e118b
|
|
| MD5 |
a95874ed02ff5316bc25bc3e7d3da8e8
|
|
| BLAKE2b-256 |
35c3a0dc381eb20e353e1d04a292a3a4ef500ebe5f27c589621e2cb0953710f5
|
File details
Details for the file inbq-0.7.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8826a3455b70fb2fede00eebb2517fc4c83762eec64359cf355763b492dcabef
|
|
| MD5 |
18a3b990d47a17e2a8141d66d74e37e5
|
|
| BLAKE2b-256 |
3472735bcbf99064ea720b4e2e2b34d4e5fcd35e5a685aa0965085c996fb2f69
|
File details
Details for the file inbq-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f206fea8c59915de4e0add380867b5297e386b38f12341efb0d9a51b9baeb0d7
|
|
| MD5 |
7585c65b6fc6feb0f448da09b70c01dc
|
|
| BLAKE2b-256 |
5362867b2a1a8d77053fbb56bb6cffc88094650600a2d3f39f71222b7ddcbd55
|
File details
Details for the file inbq-0.7.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 936.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
982a6a47f93653fd7051f51eada21e8705cf262b1df7554a6881dd101b493a83
|
|
| MD5 |
92495a2482d48bcf4ed793bde2b48089
|
|
| BLAKE2b-256 |
74033cdba832586c7b8cbc6330bb364b39debe96299327998b46a901adcdc7e0
|
File details
Details for the file inbq-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07c766ed916c3a1f107b84a8be8d76bf3052c4cd69c85fd8768c9392bb2de826
|
|
| MD5 |
d947f0065a3f34876cd8574e916037fc
|
|
| BLAKE2b-256 |
b2bacf41b06489f5046d9471a6e2c2c48729e321241af3609fbd18d33f21c631
|
File details
Details for the file inbq-0.7.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33d391185766c28f36eac249f55f47188132b3e7c484d39850cc3cfa00e89f56
|
|
| MD5 |
8eb529fb18428abef98b10dcf3f267b1
|
|
| BLAKE2b-256 |
bdcfa6e92e7afca2cd6d820a228b5eac205c490e76b152eeb815f5e6b2d61320
|
File details
Details for the file inbq-0.7.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cf4ad8c5581747384b4100b510e8ffe07278e7dd64c056055aa8511b30f81a9
|
|
| MD5 |
f5ff8d110b55a68d009083347ef30492
|
|
| BLAKE2b-256 |
bd9396173ebc382060ba6e938af13877cc2e66c5ed4f22c0c2d93a19ad66833f
|
File details
Details for the file inbq-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
194a37b0f6c25807c115ef4e4650c6d1e2bfc328a451adcedeb5db37a627b055
|
|
| MD5 |
237b318c39c22ce0ac3fbc609d63ca70
|
|
| BLAKE2b-256 |
af97afdbe666368bbfece60b540e2b41b16fa003722562e47a415d02a55989b8
|
File details
Details for the file inbq-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cb06da3a8a30cfa4772e768269270954337b498cecba22aff66ceb5e60947b9
|
|
| MD5 |
b85b6759442a2a116c7d7f258b475597
|
|
| BLAKE2b-256 |
61a2496fdeecf65a27cde40f77baf841659082506bb09ad843dbc23aa8e08f53
|
File details
Details for the file inbq-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd8e617e13ebd9b3b97d160e5dda590bb7e94d40b708130810e5b50683d00228
|
|
| MD5 |
760c6192b5ef50a42a147fb328fd349a
|
|
| BLAKE2b-256 |
c07d5492839192fdbae8e03c89866e71d6d262b84787a5c21f779a4805951063
|
File details
Details for the file inbq-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15b286a7afc79ed8a4475a4e84f5045bdeb1806d350dfa2771873721fc734d50
|
|
| MD5 |
bdb0952b4514ca96b06cd5f23e29f2db
|
|
| BLAKE2b-256 |
aea59b0dacfa106b310026d3c2810d93b66ea3ae6e7d82a5836ff59a84615ec4
|
File details
Details for the file inbq-0.7.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d50655996e796c3a202868b81857981361c2745fea8468893389d7af345db5af
|
|
| MD5 |
b8836fdc78c028e3bcf85e0385d6b605
|
|
| BLAKE2b-256 |
cab29b468b91d1fc42ed169178d58a93b2f8e23d757e3a5849d5e536bc1fd3ad
|
File details
Details for the file inbq-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ec96a73290fb77eba08fa599e2d852ef072dd790b362ec056ca6b80227acacc
|
|
| MD5 |
b578e96ee4a70a88c01dd04b16754899
|
|
| BLAKE2b-256 |
018bc38f354c4a42c76b22cc68b9b2cf7664170485134b5f3832e80ea998f2c0
|
File details
Details for the file inbq-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d89f20327696b330c23d99c3a235456d363cd276e0d9ebfe070531e5253ff1c8
|
|
| MD5 |
8fba7edbf1b41f685c6eec037cbaa5ce
|
|
| BLAKE2b-256 |
63f0a39a5a7018f5e8e24473e632ab0719bbce919444d369f975f07b72885d58
|
File details
Details for the file inbq-0.7.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b67778762764e4e84ac94ed18f2cb7d732f86ac4db5ef6d6d35c1beec1e25974
|
|
| MD5 |
0a2d45bba18b611893910e14c366bc44
|
|
| BLAKE2b-256 |
eb3cc62d6facb28e3cea0cd93eeb6becd34179f495009b569bc6af46f1a4c6b2
|
File details
Details for the file inbq-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c4897c0b6ef95e0b029a337b34adb2873dd08c0466bf7398aff276cc9b24a1f
|
|
| MD5 |
ae76189b3dcdbc9bcdfbbd4e477ecbad
|
|
| BLAKE2b-256 |
a5ad5a9f14752ab99cf84c8914859f011467395858ad0a075ad53afb4330d311
|
File details
Details for the file inbq-0.7.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: inbq-0.7.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 936.5 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
836b7d04c0fe31f2f375066aee9eba163a262ba1c351388b89deb50e7ba4bd04
|
|
| MD5 |
b631dcc5a3287d92780ade44bf553286
|
|
| BLAKE2b-256 |
a6d7b0895b223fbb2fbb415698f97beacb4a17a3ae0c8ae8a7a178db1503dd9f
|
File details
Details for the file inbq-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ecb343788d204a681253dd012b1816244d06d407ca7ac1d508c5275ba4ab8c99
|
|
| MD5 |
784df0540c0d3cb59cf885b50b443484
|
|
| BLAKE2b-256 |
5ac6733619236ca8ee63012526b159cb48e0bdef7479ad29bca6005e2d97a8ad
|
File details
Details for the file inbq-0.7.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: inbq-0.7.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33d53f3b2d447f86a38ea3bafe7f6a07c7359a492bae05e813d3097202343013
|
|
| MD5 |
d1a82770b9276a7a6f6465111667dff9
|
|
| BLAKE2b-256 |
804e0af2cc54171833556aa6126e393cd7338e450aa8393ef7f3f6d6c41d2dfb
|
File details
Details for the file inbq-0.7.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f85fc22f6c77ca2c36eb5ca059beb7aead321d88a6f4a25711fd5c19221693d1
|
|
| MD5 |
362789e1114a00b78f495a81dab38e36
|
|
| BLAKE2b-256 |
2e97165f9f710e5986561cddac809012cdc5714cb6f59c9792b31ce5aad42c88
|
File details
Details for the file inbq-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a1c9134c875b4ad57cecb4d315bd2b304e0438f7bee1e5dd9f2b1f492635da7
|
|
| MD5 |
77e20fa87f93e7719ed8cdc6783a92d8
|
|
| BLAKE2b-256 |
1360a9e321ef80035104ac1245cad780622ee2c5ff8776e73670a3a522d917f2
|
File details
Details for the file inbq-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: inbq-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d41eb0fc436503a021574bb90aca014076e401beac186a4d76d224437bbf4eda
|
|
| MD5 |
f0ce88b90b3a0ccf186f2247c4102e9c
|
|
| BLAKE2b-256 |
0b650fee63ba209ba9ad17fde3d87033059c67b09152edd6e00acf73c32f9f37
|
File details
Details for the file inbq-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: inbq-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f3f1a011a7c8bf4cc008444aa92f874390e9893e8d8cf6f31656888ab8a7652
|
|
| MD5 |
9a3d5ea489ed02580e4b42a043109b0e
|
|
| BLAKE2b-256 |
9f23b6184a9d8be1d377c62f10d8f132cf50c1912886f62259c1245785fb8b79
|
File details
Details for the file inbq-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: inbq-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47843becfc47df21cc6d27e7b37ed0e8757542eb95485ab6e855c44cbdaf1f33
|
|
| MD5 |
07d942f10962f9575d66ab4ce3aa3b6d
|
|
| BLAKE2b-256 |
2f9d82145ec80d41badcfbe84f1899a8bf0c6b60dbd2340dc95311feaad7c036
|
File details
Details for the file inbq-0.7.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: inbq-0.7.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
066831b1f7e04e7c264b4194008ed6b0d4e490db09b78cef29f1c5c79cb92b94
|
|
| MD5 |
d55b4efe77a18f0b046e1720a0379f07
|
|
| BLAKE2b-256 |
072e18ebeb5b7f3cbb777cda998e298101a8d5c81ff30c609c03935ebf5e1a23
|
File details
Details for the file inbq-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: inbq-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29836c2f23d385325d459602e82274726ad1fb3dc372a0b8b057747b8d5d5076
|
|
| MD5 |
d3b8f9f7883cc7723e943141bc05314c
|
|
| BLAKE2b-256 |
a2147e6eb741ff2582b4891c5e280b9308ef761cf121ba5ac2c795706ae504a8
|
File details
Details for the file inbq-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: inbq-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60f974b73f80b157b7f2f40ac2c458360a1b0980917fd232a6008357c4940b26
|
|
| MD5 |
4e1d599699605cabbc7676f271f84a39
|
|
| BLAKE2b-256 |
320bc126b78805e4a80ed6e9ba80f84fe0a7cc387eef326c93333c4954b56edb
|