navpipe 0.3.0
pip install navpipe
Released:
Unofficial Python SDK for fetching mutual fund NAV history from mfapi.in (Rust backend)
Navigation
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIMeta
- License: Apache Software License (Apache-2.0)
- Author: Satya M
- Tags mutual fund , NAV , mfapi , finance , polars , asyncio , rust
- Requires: Python >=3.8
Classifiers
- Development Status
- Intended Audience
- License
- Programming Language
- Topic
Project description
NavPipe
NavPipe is a high-performance, compiled Python SDK for fetching mutual fund NAV history from the unofficial API at:
By moving the core logic to Rust, NavPipe now offers massive concurrency with minimal overhead, returning results directly into Polars memory.
Why the Rust rewrite?
- 🦀 Safety: Memory-safe concurrent fetching using the
tokioruntime. - 🚀 Speed: Zero-copy data transfers between Rust and Python via
pyo3-polars. - 📊 Lazy-First: Native support for Polars
LazyFrame, allowing you to optimize queries before they run. - 🧵 True Parallelism: Bypasses the Python Global Interpreter Lock (GIL) for network I/O and data transformation.
Installation
pip install navpipe
Quick Start
import navpipe
import polars as pl
# Initialize the Rust-backed client
client = navpipe.NavPipe(max_concurrency=10)
# Eager execution: Returns a polars.DataFrame immediately
df = client.nav_history(
scheme_codes=[119551, 120503],
start_date="2023-01-01",
end_date="2023-12-31",
)
print(df)
Output Schema
The Rust engine performs diagonal concatenation to ensure all scheme data is merged efficiently:
| Column | Type | Description |
|---|---|---|
| scheme_code | Int64 | The MFAPI unique identifier |
| date | Date | The NAV date |
| nav | Float64 | The Net Asset Value |
Important: Scheme Codes
NavPipe requires scheme codes to be provided manually. You can find these on: 👉 https://www.mfapi.in
Example: https://api.mfapi.in/mf/119551 → 119551 is the code.
Public API
NavPipe(max_concurrency: int)
Initializes the engine.
max_concurrency: Limits the number of simultaneous HTTP requests using atokio::sync::Semaphore.
nav_history(...) -> pl.DataFrame
Eagerly fetches and collects data into a standard Polars DataFrame.
Project details
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIMeta
- License: Apache Software License (Apache-2.0)
- Author: Satya M
- Tags mutual fund , NAV , mfapi , finance , polars , asyncio , rust
- Requires: Python >=3.8
Classifiers
- Development Status
- Intended Audience
- License
- Programming Language
- Topic
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
Uploaded
CPython 3.13manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.13macOS 11.0+ ARM64
Uploaded
CPython 3.13macOS 10.12+ x86-64
Uploaded
CPython 3.12manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.12manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.12macOS 11.0+ ARM64
Uploaded
CPython 3.12macOS 10.12+ x86-64
Uploaded
CPython 3.11manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.11manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.11macOS 11.0+ ARM64
Uploaded
CPython 3.11macOS 10.12+ x86-64
Uploaded
CPython 3.10manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.10manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.10macOS 11.0+ ARM64
Uploaded
CPython 3.10macOS 10.12+ x86-64
Uploaded
CPython 3.9manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.9manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.9macOS 11.0+ ARM64
Uploaded
CPython 3.9macOS 10.12+ x86-64
Uploaded
CPython 3.8manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.8manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.8macOS 11.0+ ARM64
Uploaded
CPython 3.8macOS 10.12+ x86-64
File details
Details for the file navpipe-0.3.0.tar.gz.
File metadata
- Download URL: navpipe-0.3.0.tar.gz
- Upload date:
- Size: 133.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
875ea14f5430d16fd7613bb4a7ee5d3f2fb280e35fd5a616d6939c64ec6c61e6
|
|
| MD5 |
81a64a2850ca8403ec4ef99b043c0e23
|
|
| BLAKE2b-256 |
84612b88989b536461e541c8a7a0b593bd50b0b35a12f6288ee7e34cfa4ef769
|
Provenance
The following attestation bundles were made for navpipe-0.3.0.tar.gz:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0.tar.gz -
Subject digest:
875ea14f5430d16fd7613bb4a7ee5d3f2fb280e35fd5a616d6939c64ec6c61e6 - Sigstore transparency entry: 1155038324
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 19.1 MB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b123a475f49ede32888974d0193ed570a79cef6ebfc6f8d5bbb0a4e01ba2cfa7
|
|
| MD5 |
1c16c7a37d6700ba62c6adb3e683b004
|
|
| BLAKE2b-256 |
a6bab0ab50cfb80812c2277cf5ccd6c4606cd837706d2a67f3c7c656ad4a8ce3
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp313-cp313-win_arm64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp313-cp313-win_arm64.whl -
Subject digest:
b123a475f49ede32888974d0193ed570a79cef6ebfc6f8d5bbb0a4e01ba2cfa7 - Sigstore transparency entry: 1155038347
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 21.0 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
225ae829b0e6c3012f8975243988330ef623835b685d513e2a5ff1ed6007ceb7
|
|
| MD5 |
8cb618c49835f784bc4181c941297845
|
|
| BLAKE2b-256 |
7046216d87e990b41744a9f98084ba969a36def8221d9097980a9cc3214038d7
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp313-cp313-win_amd64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp313-cp313-win_amd64.whl -
Subject digest:
225ae829b0e6c3012f8975243988330ef623835b685d513e2a5ff1ed6007ceb7 - Sigstore transparency entry: 1155038338
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 23.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
538f995a1494a77a1c1632e2f961c2431f08e46d9ce9cf096eb2d8aa00ebc07a
|
|
| MD5 |
2083dda2dc9f312ca8175106a8a5fd22
|
|
| BLAKE2b-256 |
04c2280068b20ac5b96f1bd61c88e95eb8ac6d471ce4e6bb8b61bdab168e3aaa
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
538f995a1494a77a1c1632e2f961c2431f08e46d9ce9cf096eb2d8aa00ebc07a - Sigstore transparency entry: 1155038341
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 23.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d14c984877a657bb37c00c03500618f54341c2dfa915f8dfdacc247ec816b28
|
|
| MD5 |
3f21dcb8e873c05a1f99870bb1b25ae7
|
|
| BLAKE2b-256 |
f91e95c9bf30c8b868f0fa9e3ae9944716c9411ddae1855c5e64ff10aa960fdd
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
0d14c984877a657bb37c00c03500618f54341c2dfa915f8dfdacc247ec816b28 - Sigstore transparency entry: 1155038353
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 21.4 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
492aee2dd6fe4f1109537c70261f9fefe401ff6ce4a75f4873be258567318654
|
|
| MD5 |
385fcf4d62e2154a01a679ccc31b4658
|
|
| BLAKE2b-256 |
13be8c612fa7d8e713e47448b4d161207c59233ac27061a00f56dc7dc596ca01
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
492aee2dd6fe4f1109537c70261f9fefe401ff6ce4a75f4873be258567318654 - Sigstore transparency entry: 1155038356
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 22.5 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cddf29dfb783799953ed13fb9c6eb13f3e8307d1848a48cc58f9ae091c776369
|
|
| MD5 |
4c74eb76e17fa43883970f0fc9ffe13f
|
|
| BLAKE2b-256 |
2a57dbb77d4f495669570c806dcf9f87b2f9b21a02aeba3bd5b8d51fb66fcb45
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
cddf29dfb783799953ed13fb9c6eb13f3e8307d1848a48cc58f9ae091c776369 - Sigstore transparency entry: 1155038348
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 19.1 MB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7e653be50398ce27a461d907fc055727f8bd0afaef83ce7d7f820c2c0c57df0
|
|
| MD5 |
0410aa56398968fd3f53fa75fb231be7
|
|
| BLAKE2b-256 |
1ebbf48dcf64bfd527cd46ff7768fe28a284c830464ad4d7eeb3289f10ce9b68
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp312-cp312-win_arm64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp312-cp312-win_arm64.whl -
Subject digest:
d7e653be50398ce27a461d907fc055727f8bd0afaef83ce7d7f820c2c0c57df0 - Sigstore transparency entry: 1155038350
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 21.0 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f955627fe353e5269314b115d7303528d33466b18fd71623d51b9103276654e8
|
|
| MD5 |
f15a1a4dcd88214ea3b13e7d95c358b5
|
|
| BLAKE2b-256 |
e94a9ab332324da980f89a312ccc699a8aa52d693d9612382a9e24aba75182a1
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp312-cp312-win_amd64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp312-cp312-win_amd64.whl -
Subject digest:
f955627fe353e5269314b115d7303528d33466b18fd71623d51b9103276654e8 - Sigstore transparency entry: 1155038331
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 23.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f737774d1abcb8e82d8cd64ebd42c84fa1b8b81de5a38f44b408b9cc940f0c25
|
|
| MD5 |
3cba39fa0bd8cc982e3326bde6894d99
|
|
| BLAKE2b-256 |
071c267b6b4551cfa4f2e94f238c7aaa0a16f93e1c8378acef332c505c1b8866
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
f737774d1abcb8e82d8cd64ebd42c84fa1b8b81de5a38f44b408b9cc940f0c25 - Sigstore transparency entry: 1155038326
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 23.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1be8f3013c2e69f061d919b644e5e659b3a896c540978f4e3dff6b6a86cb3c20
|
|
| MD5 |
e03b24930974fbdbd49306d8190c25b5
|
|
| BLAKE2b-256 |
7b491e3d116d304fcf770916c326aa4c6f8576be34dbda2510b1d1d57abb6c29
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
1be8f3013c2e69f061d919b644e5e659b3a896c540978f4e3dff6b6a86cb3c20 - Sigstore transparency entry: 1155038328
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 21.4 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6783b5000fee2098bb6098574b8184fb204e1d8c242007b8c9901cb4dfacb0b5
|
|
| MD5 |
10db48365d074027d2e754db3e0f1175
|
|
| BLAKE2b-256 |
5b6537a6621d46f2441e5dc054dcefcc001643ebfb30c59356fcd38469db7306
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
6783b5000fee2098bb6098574b8184fb204e1d8c242007b8c9901cb4dfacb0b5 - Sigstore transparency entry: 1155038354
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 22.5 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16fe1646d1fa1ab1f895d3f9469aa67f6803b7d8ef85bb60a73145a9b4026a25
|
|
| MD5 |
d20d02f41d37dc9dea3e3e0b0ba41075
|
|
| BLAKE2b-256 |
6d69e95ce6a5392b7faad955c73da2aeeedff62e7ede8913477bc6d508b21fd8
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
16fe1646d1fa1ab1f895d3f9469aa67f6803b7d8ef85bb60a73145a9b4026a25 - Sigstore transparency entry: 1155038357
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 19.2 MB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33ad104164f5f093c4553a6e913de063dcb0f2642588201fd7601763318babda
|
|
| MD5 |
19b7e22c2f58e43ea2e6b7eddcb6a0cd
|
|
| BLAKE2b-256 |
a848302af569e77b56bb76809a7b907cc2fd167c7dfee908693441b3f836cbf3
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp311-cp311-win_arm64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp311-cp311-win_arm64.whl -
Subject digest:
33ad104164f5f093c4553a6e913de063dcb0f2642588201fd7601763318babda - Sigstore transparency entry: 1155038358
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 21.1 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04f82612c1ecdb23826a19ca393420d9987f041c1f9835248dca323b7ab3db55
|
|
| MD5 |
ae68ab6c577181252522ee28f5b5ca8a
|
|
| BLAKE2b-256 |
4935a84118258fa99252f11137205081746fbc41d32e69c5b66c51e06d434be7
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp311-cp311-win_amd64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp311-cp311-win_amd64.whl -
Subject digest:
04f82612c1ecdb23826a19ca393420d9987f041c1f9835248dca323b7ab3db55 - Sigstore transparency entry: 1155038363
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 23.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
416b2f063ef1d8564b154eec39d4e1c46fff22597a6f6bb0427744982f3e1953
|
|
| MD5 |
a5edb07dd8f263da19b9d036d8f68f25
|
|
| BLAKE2b-256 |
86772a9a98b3d3b042d30394b2f962c871395cd5848f3e8ddb14b13004a028b5
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
416b2f063ef1d8564b154eec39d4e1c46fff22597a6f6bb0427744982f3e1953 - Sigstore transparency entry: 1155038345
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 23.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
040662dd0231cc766ff923e78f61e428479c06597e54d971e914be954d2f915d
|
|
| MD5 |
142e9c612bb96968a46ab3d0f9d6fad9
|
|
| BLAKE2b-256 |
37eba2bc1e44c5580fddacdd7c2160319d9821f3095a4b7808a490df3e15b617
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
040662dd0231cc766ff923e78f61e428479c06597e54d971e914be954d2f915d - Sigstore transparency entry: 1155038343
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 21.5 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dda65c4d64f6dc5b0e67eadbbe2a05eb1c57a09aa89b15630c56d29993a86b8
|
|
| MD5 |
290084f9a880da5114b13be9d979347f
|
|
| BLAKE2b-256 |
8b1402b795d0b4b27bb6c685e6e98e2509193dcdb4f7d8bc26dc1efbf2332fec
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
7dda65c4d64f6dc5b0e67eadbbe2a05eb1c57a09aa89b15630c56d29993a86b8 - Sigstore transparency entry: 1155038327
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 22.5 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f2e18e645d98231da223dee55fecda9e1a66e0716d40bf252f5b55a1dbd2821
|
|
| MD5 |
f22789c130161da35095174cb1bfb656
|
|
| BLAKE2b-256 |
b0d38cdb6f330120ab11421899cf691abdc29dac03945b3db9b8067a7228ea72
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
6f2e18e645d98231da223dee55fecda9e1a66e0716d40bf252f5b55a1dbd2821 - Sigstore transparency entry: 1155038339
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 21.1 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72f7e5e0f906497393291db48205226b83af91ace16b89e6ce8723c1b981b3e1
|
|
| MD5 |
03f9786ed67167e98d0c328318b8d756
|
|
| BLAKE2b-256 |
e37266ec5b33d548f0366ce9f757a8304fa7c8f36691a99b619507e2ab4d3e11
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp310-cp310-win_amd64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp310-cp310-win_amd64.whl -
Subject digest:
72f7e5e0f906497393291db48205226b83af91ace16b89e6ce8723c1b981b3e1 - Sigstore transparency entry: 1155038361
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 23.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8825284105997e92c0b3044098f7edf91ddc363e1236c6af0c3ac38a31dac44
|
|
| MD5 |
334c46997abace2e5aea142c6fe7c046
|
|
| BLAKE2b-256 |
1d3e709637652ae133070067cf85462d560431c569aba013297a1a9b57df3958
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e8825284105997e92c0b3044098f7edf91ddc363e1236c6af0c3ac38a31dac44 - Sigstore transparency entry: 1155038360
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 23.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64b85df8eff64f413cf75779e6d603c385bb4842f5a64a8eea0b712997b1f5fb
|
|
| MD5 |
2448d22bab4135d2200a201ae88ec675
|
|
| BLAKE2b-256 |
7fa4d9522dae273fe0185a2a01bac4df6460ea39f5cc3411a36e644e46567386
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
64b85df8eff64f413cf75779e6d603c385bb4842f5a64a8eea0b712997b1f5fb - Sigstore transparency entry: 1155038333
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 21.5 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cb6ab270010d1ef3565e2aa66f3db77ce26f018aba91b1d35b6bffff1371562
|
|
| MD5 |
f79d98bf3c86dbbf117523eea13cd1a3
|
|
| BLAKE2b-256 |
7130b1e409198d4f5833b2763c63f924dd74a5ac68f896465d6dbf504815ea50
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
2cb6ab270010d1ef3565e2aa66f3db77ce26f018aba91b1d35b6bffff1371562 - Sigstore transparency entry: 1155038335
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 22.5 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
973f95d3e2d7b3e929b3ef7496460e28282d0a36555a9da756c85d1cf9c908c7
|
|
| MD5 |
437064e8e8b6c8bbd8dcc8b79f1f0865
|
|
| BLAKE2b-256 |
dee3075dd015870771fd1c864146dc4b7ee84295111abcdc21549e24b3726246
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
973f95d3e2d7b3e929b3ef7496460e28282d0a36555a9da756c85d1cf9c908c7 - Sigstore transparency entry: 1155038332
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 21.1 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
390cf07c69d883126b214be24e0f541f6553fce66ceb8115a0087d1e76959670
|
|
| MD5 |
3929cd49dc8ba88fb123e0cac26d5ab6
|
|
| BLAKE2b-256 |
2f7cc594d0384ee926107cec55ddd2701d0b35827bcd9bd2add5570e6fe941f2
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp39-cp39-win_amd64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp39-cp39-win_amd64.whl -
Subject digest:
390cf07c69d883126b214be24e0f541f6553fce66ceb8115a0087d1e76959670 - Sigstore transparency entry: 1155038340
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 23.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa75123df531f3934e24be38887651adc48e5fb72ec3aec474216ef6b4e85778
|
|
| MD5 |
9932c3715ca11eb91f22b5e4519e797e
|
|
| BLAKE2b-256 |
3386231419a4951c51ebeeee0ee6f9122f91e5b87447df36d0712da693069552
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
aa75123df531f3934e24be38887651adc48e5fb72ec3aec474216ef6b4e85778 - Sigstore transparency entry: 1155038352
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 23.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e957dd13d8bbc276e7429f32bdee4a67db3d3e0cb296b6e63a008253163eb2f
|
|
| MD5 |
c1517857b2a697d315568e64551e4d1a
|
|
| BLAKE2b-256 |
9d53eb9add21547e069c0d0e74e2e2f61d977437ea2a4187e0d4b333662bea02
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
4e957dd13d8bbc276e7429f32bdee4a67db3d3e0cb296b6e63a008253163eb2f - Sigstore transparency entry: 1155038359
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 21.5 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da84c3cd4c89564e3bd8fcc809540d2efed08a622c0eea94d9b67e35ef410ab6
|
|
| MD5 |
d057da2ebd59256af29ca4fd14d14fcf
|
|
| BLAKE2b-256 |
794a7f0395c1f93a52b1567a9c13f4db6537dd618a934c799b18b86810092085
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
da84c3cd4c89564e3bd8fcc809540d2efed08a622c0eea94d9b67e35ef410ab6 - Sigstore transparency entry: 1155038330
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 22.5 MB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bbec13d19efa0249a3841d165d9bcf8a0f5628cd2c2cbe2ec68a5107bdc2972
|
|
| MD5 |
94a23b3f982239911817b6c7585d871a
|
|
| BLAKE2b-256 |
bffd7366231f9b29120ed9c2bf15b069ce2061dd652d28f7208e30fb5c28897e
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl -
Subject digest:
0bbec13d19efa0249a3841d165d9bcf8a0f5628cd2c2cbe2ec68a5107bdc2972 - Sigstore transparency entry: 1155038334
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 21.1 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab0ae35f98008cd5645994bb3cd1b2849d618d2f8d5b181909e340fbc800e7f4
|
|
| MD5 |
0b882f7a740c3375a7780674b0c3c591
|
|
| BLAKE2b-256 |
30e51838c63023390490b3f5418637679d838d636a50df968300876c79ee1fdd
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp38-cp38-win_amd64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp38-cp38-win_amd64.whl -
Subject digest:
ab0ae35f98008cd5645994bb3cd1b2849d618d2f8d5b181909e340fbc800e7f4 - Sigstore transparency entry: 1155038342
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 23.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
752d509220080bc499bf1fa6edede6e1d7c5008186c1d3758d0c49e6c249b6c3
|
|
| MD5 |
0f039d9588eaa3cade1dbc9679ed71d1
|
|
| BLAKE2b-256 |
a45ea0df30b95ea8a1ec8e4a0593d4c7ce916fa09f1a98b618f58f984128f5df
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
752d509220080bc499bf1fa6edede6e1d7c5008186c1d3758d0c49e6c249b6c3 - Sigstore transparency entry: 1155038349
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 23.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de287c62e5639c73c4145697cc7a4102e658cecca78c5be48fa14366a941cc65
|
|
| MD5 |
2561988d1203746fdec8ead7de815fe4
|
|
| BLAKE2b-256 |
1099ff63ce4a45f563b78f378d52b0c5110f0f219a244e628349b69174998233
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
de287c62e5639c73c4145697cc7a4102e658cecca78c5be48fa14366a941cc65 - Sigstore transparency entry: 1155038329
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 21.5 MB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9220d952192f6f616469e261a010e1a7440b3a841d619a392037441b72d02d19
|
|
| MD5 |
fe68a6e8118e87d0c0f068a36c329822
|
|
| BLAKE2b-256 |
a58ddcbc6113dac1215111a45397207fb3fda02c452ffea718cd52fdcb5743ad
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp38-cp38-macosx_11_0_arm64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp38-cp38-macosx_11_0_arm64.whl -
Subject digest:
9220d952192f6f616469e261a010e1a7440b3a841d619a392037441b72d02d19 - Sigstore transparency entry: 1155038362
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type:
File details
Details for the file navpipe-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl.
File metadata
- Download URL: navpipe-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl
- Upload date:
- Size: 22.5 MB
- Tags: CPython 3.8, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc985bd4d8456716c8a8748fbc9d83a862bfb263890653d8f757ff711adb64f8
|
|
| MD5 |
9e967d679d2fed16439cb6c499443aa2
|
|
| BLAKE2b-256 |
16cb1bc7c796bf8bcc342759c71f978e2f81f528659a3981fda790d54db2bf41
|
Provenance
The following attestation bundles were made for navpipe-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on MSM2002/navpipe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
navpipe-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl -
Subject digest:
cc985bd4d8456716c8a8748fbc9d83a862bfb263890653d8f757ff711adb64f8 - Sigstore transparency entry: 1155038336
- Sigstore integration time:
-
Permalink:
MSM2002/navpipe@80610a2016e425577b6b7c0b4a3577657971d877 -
Branch / Tag:
refs/tags/0.3.0 - Owner: https://github.com/MSM2002
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@80610a2016e425577b6b7c0b4a3577657971d877 -
Trigger Event:
push
-
Statement type: