sing-box-python
Python bindings for sing-box.
Install
Prebuilt binary wheels include the native Go and C++ binding, so a supported installation does not require Go, CMake, or a C++ compiler.
pip install sing-box-python
Binary wheels are published for Linux x86-64 and ARM64, Windows x86-64 and ARM64, and macOS Intel and Apple Silicon.
Build from Source
A source distribution is also published as a fallback. If pip cannot find a compatible wheel, it may build the native binding from source. A source build requires:
- Go 1.24.7 in
PATH. - A working C and C++ compiler toolchain.
- MinGW-w64 on Windows x86-64, or LLVM-MinGW on Windows ARM64, with
gccandg++available inPATH.
The isolated Python build environment installs CMake, pybind11, setuptools, and wheel automatically. To build directly from a repository checkout:
pip install .
The build downloads sing-box's checksum-pinned, platform-specific Cronet Go module automatically. Wheels contain an
isolated Cronet runtime (libcronet.dylib, libcronet.so, or libcronet.dll), loaded from an absolute package path
during import. On macOS the build converts the pinned static archive into a separate dynamic library so Chromium's
private C++ runtime cannot conflict with pybind11.
API
>>> import singbox
>>> help(singbox)
Help on package singbox:
NAME
singbox - Native Python bindings for starting and managing sing-box.
PACKAGE CONTENTS
_native
CLASSES
builtins.RuntimeError(builtins.Exception)
singbox._native.SingBoxError
pybind11_builtins.pybind11_object(builtins.object)
singbox._native.SingBox
class SingBox(pybind11_builtins.pybind11_object)
| An explicitly managed, non-blocking in-process sing-box instance.
|
| Unlike the module-level startFromJSON function, this class reports startup
| errors as Python exceptions and does not wait for operating-system signals.
| Call stop explicitly or use the instance as a context manager.
|
| Methods defined here:
|
| __enter__(...)
| __enter__(self: singbox._native.SingBox) -> singbox._native.SingBox
|
| Return this instance for use as a context manager.
|
| __exit__(...)
| __exit__(self: singbox._native.SingBox, arg0: object, arg1: object, arg2: object) -> None
|
| Stop the instance when leaving a context-manager block.
|
| __init__(...)
| __init__(self: singbox._native.SingBox) -> None
|
| Create a stopped sing-box instance.
|
| queryStats(...)
| queryStats(self: singbox._native.SingBox, patterns: collections.abc.Sequence[str] = [], reset: bool = False, regexp: bool = False) -> dict
|
| Return available runtime, Clash, and V2Ray statistics as a dictionary.
|
| patterns filters V2Ray counters. reset clears matched V2Ray counters after
| reading, and regexp interprets patterns as regular expressions. Clash and
| V2Ray sections are None when their corresponding sing-box services are not
| enabled by the configuration. Runtime memory counters are always present.
|
| startFromJSON(...)
| startFromJSON(self: singbox._native.SingBox, json: str) -> None
|
| Start this instance from a UTF-8 JSON configuration string.
|
| The call returns after the service starts. Invalid configuration, construction,
| or startup errors raise SingBoxError. Starting an already-running instance
| raises RuntimeError.
|
| stop(...)
| stop(self: singbox._native.SingBox) -> None
|
| Stop the instance and release its native resources; repeated calls are safe.
|
| Readonly properties defined here:
|
| handle
| Opaque numeric instance identifier, or 0 while stopped.
|
| running
| Whether this instance currently owns a running native service.
class SingBoxError(builtins.RuntimeError)
| An error reported by the managed sing-box native lifecycle API.
FUNCTIONS
startFromJSON(...) method of pybind11_builtins.pybind11_detail_function_record instance
startFromJSON(json: str) -> None
Start sing-box from JSON and block until SIGINT or SIGTERM is received.
This process-oriented entry point is intended to be the target of a
multiprocessing.Process. Configuration decoding or construction failures exit
the process with status 23. Service startup failures call os.Exit(-1), whose
observed status is platform-dependent. Use SingBox for exception-based,
non-blocking in-process lifecycle management.
DATA
__all__ = ['SingBox', 'SingBoxError', '__version__', 'startFromJSON']
VERSION
v1.13.18
Source Code Modification
This repository, including the package that distributes to pypi, contains sing-box source code and the additional binding code required to build the Python extension and its API.
To make installation of this package easier, the original sing-box source code
is embedded instead of being added as a submodule. The official source files are unchanged. The binding is implemented
by the added singbox-go/binding package and the C++/Python packaging files in this repository. To track the difference,
compare singbox-go with the upstream commit while excluding the added binding directory.
Binary Wheel Platforms
The distributions are built and tested in GitHub Actions.
| Platform | Architecture | CPython |
|---|---|---|
| Linux | x86-64 | 3.8-3.14, 3.13t, 3.14t |
| Linux | ARM64 | 3.8-3.14, 3.13t, 3.14t |
| Windows | x86-64 | 3.8-3.14, 3.13t, 3.14t |
| Windows | ARM64 | 3.9-3.14, 3.13t, 3.14t |
| macOS | Intel | 3.8-3.14, 3.13t, 3.14t |
| macOS | Apple Silicon | 3.8-3.14, 3.13t, 3.14t |
Naive outbound is included on all wheel platforms in the table. Cronet is bundled as an isolated shared runtime on
macOS, Linux, and Windows. The macOS runtime is produced from the pinned static archive during the wheel build. The
Cronet artifact comes from the platform module and exact version already pinned by sing-box v1.13.18's go.mod and
verified by go.sum; the workflow does not build an unrelated Cronet revision.
Custom source builds can override the complete sing-box tag list with the SINGBOX_BUILD_TAGS environment variable.
License
The license for this project follows its original Go repository sing-box and is under GNU GPL v3 or later.
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 sing_box_python-1.13.18.tar.gz.
File metadata
- Download URL: sing_box_python-1.13.18.tar.gz
- Upload date:
- Size: 1.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8aa224463db780d78a61da89fbc6113b70d07a38698cd69b635a188eb0b1f9b3
|
|
| MD5 |
67f3f6fb1776da3e12ea44c54589377a
|
|
| BLAKE2b-256 |
cc4be3606dd1d87876cb8d20d24ec4c686d1eb37de3a0d653257a6005ec479a5
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18.tar.gz:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18.tar.gz -
Subject digest:
8aa224463db780d78a61da89fbc6113b70d07a38698cd69b635a188eb0b1f9b3 - Sigstore transparency entry: 2490469440
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 23.1 MB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
863ec6e49afce5b5a753a2b0d04612e165f52d5aa4e541dea8e12d3cc72e52a0
|
|
| MD5 |
7baae6b8bdf9086776107a094b468cbc
|
|
| BLAKE2b-256 |
10dc6ac5e578a9b408dd78ffdb08fb3f7903fd56d752244ceafa5f2e38e246e1
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp314-cp314t-win_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp314-cp314t-win_arm64.whl -
Subject digest:
863ec6e49afce5b5a753a2b0d04612e165f52d5aa4e541dea8e12d3cc72e52a0 - Sigstore transparency entry: 2490473503
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 25.3 MB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2073074a6f4b4124319d2c1acdc78226b53d0e272a49da431e2820a6da245d4b
|
|
| MD5 |
ff4e7a6c39e4d69d1aad1499d55ab05d
|
|
| BLAKE2b-256 |
64ec91a19c51df65ae7c7856ed32ea531d0c8d78817ed46916b1ed2b1a915789
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp314-cp314t-win_amd64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp314-cp314t-win_amd64.whl -
Subject digest:
2073074a6f4b4124319d2c1acdc78226b53d0e272a49da431e2820a6da245d4b - Sigstore transparency entry: 2490471454
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 25.9 MB
- Tags: CPython 3.14t, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
481b02ffa394d70bf3130c2727f28016c444f5afe00ae87e2551f1600fe6533b
|
|
| MD5 |
4e475ff7930d6ff26833e877d711abef
|
|
| BLAKE2b-256 |
e24ba9d20cb5ea1ac482db1854b4d0282237d1b67d0a528df24548d63eb62a90
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
481b02ffa394d70bf3130c2727f28016c444f5afe00ae87e2551f1600fe6533b - Sigstore transparency entry: 2490473221
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 24.3 MB
- Tags: CPython 3.14t, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb2ad4784512c69e799575784db3cbe319645dce1d3f6b32d43e73d5107041f9
|
|
| MD5 |
1318826d30e9c92e7a473662c17fea5e
|
|
| BLAKE2b-256 |
0dc08698861793861ab3149fe4c0b1d5b3656ad0d83dca36066682d1f1680caf
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
bb2ad4784512c69e799575784db3cbe319645dce1d3f6b32d43e73d5107041f9 - Sigstore transparency entry: 2490472388
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp314-cp314t-macosx_12_0_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp314-cp314t-macosx_12_0_x86_64.whl
- Upload date:
- Size: 26.8 MB
- Tags: CPython 3.14t, macOS 12.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61ab283c6d7d14822d730c61e0097083d1f2a76a6e3fe76bf6bd038eba421b29
|
|
| MD5 |
10d612c3cc6fdea8a6b11828fe73b22b
|
|
| BLAKE2b-256 |
f9808eb3a43ee6be4c1b873fdc564f7411d07f53471bba2c2f11463dee653f04
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp314-cp314t-macosx_12_0_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp314-cp314t-macosx_12_0_x86_64.whl -
Subject digest:
61ab283c6d7d14822d730c61e0097083d1f2a76a6e3fe76bf6bd038eba421b29 - Sigstore transparency entry: 2490469926
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp314-cp314t-macosx_12_0_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp314-cp314t-macosx_12_0_arm64.whl
- Upload date:
- Size: 25.1 MB
- Tags: CPython 3.14t, macOS 12.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df8520e131f54227e8f665a65d84093779e1b6f096c825fb6c46f526b148e25d
|
|
| MD5 |
5d81f3d755e4619718b6028efcf675e3
|
|
| BLAKE2b-256 |
ed49d6d0c23dff0bdc1772b79169a51eb073af336f9766ce22db93ef19eb44b0
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp314-cp314t-macosx_12_0_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp314-cp314t-macosx_12_0_arm64.whl -
Subject digest:
df8520e131f54227e8f665a65d84093779e1b6f096c825fb6c46f526b148e25d - Sigstore transparency entry: 2490472525
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 23.1 MB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd13860dfbb1f36e159c6110c3ae2e1f996e7ecc4016f19574bfc400c2074041
|
|
| MD5 |
30c66310dc212c3b423e12e8d8f4f20e
|
|
| BLAKE2b-256 |
b2c8a7ef817b7157dd7f5dcb6aeb1a3878c6e51c4c8ab63d0df750d9ca8d9690
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp314-cp314-win_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp314-cp314-win_arm64.whl -
Subject digest:
cd13860dfbb1f36e159c6110c3ae2e1f996e7ecc4016f19574bfc400c2074041 - Sigstore transparency entry: 2490470661
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 25.3 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7196c17b20a44098edbbaf79e88380fa7debce89d108325cd63855c446292af4
|
|
| MD5 |
58f4e698c26287f9b9689b032880120e
|
|
| BLAKE2b-256 |
717b5024b7b60e14f0a2864ae8843dd026058369bb17c9419f7b4184e013dec0
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp314-cp314-win_amd64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp314-cp314-win_amd64.whl -
Subject digest:
7196c17b20a44098edbbaf79e88380fa7debce89d108325cd63855c446292af4 - Sigstore transparency entry: 2490470038
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 25.9 MB
- Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac395c9ed2de88e77b040dcaa77a6e2b704edaf4264e1aae00920dadc7bd2c35
|
|
| MD5 |
3f077614341517a991c1186ddbb9d0b0
|
|
| BLAKE2b-256 |
06b22a27113cc7fc2bfd95f74ff76c53ed33680ffd833326d3857abf68489c70
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
ac395c9ed2de88e77b040dcaa77a6e2b704edaf4264e1aae00920dadc7bd2c35 - Sigstore transparency entry: 2490471876
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 24.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8f9c4f7efd5e59ce3c5ad9ce727a5a77464ce5dfa9bb72390521668c5250e7c
|
|
| MD5 |
3787351e41223b90448bab90b3132ad1
|
|
| BLAKE2b-256 |
b69eb4e60dea4a81724fbfaa49616044e64d9da720c546e473377d7ec07c4eac
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
e8f9c4f7efd5e59ce3c5ad9ce727a5a77464ce5dfa9bb72390521668c5250e7c - Sigstore transparency entry: 2490472814
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp314-cp314-macosx_12_0_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp314-cp314-macosx_12_0_x86_64.whl
- Upload date:
- Size: 26.8 MB
- Tags: CPython 3.14, macOS 12.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14c9520e5c2fe79834f9c6df4b4f476afae3b5044e101b5054786cff8478cb9e
|
|
| MD5 |
6d33f3b7ed3514c82a3e1f1d2e6c9a61
|
|
| BLAKE2b-256 |
2bac92eec571e78133f287b94696731fe656cc0e1b2531a7ed6d43ad8d75015a
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp314-cp314-macosx_12_0_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp314-cp314-macosx_12_0_x86_64.whl -
Subject digest:
14c9520e5c2fe79834f9c6df4b4f476afae3b5044e101b5054786cff8478cb9e - Sigstore transparency entry: 2490473020
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp314-cp314-macosx_12_0_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp314-cp314-macosx_12_0_arm64.whl
- Upload date:
- Size: 25.1 MB
- Tags: CPython 3.14, macOS 12.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3619d4ff9f78469418ad0d85830bf57e62a28592cd258ad23a60a4c40034a870
|
|
| MD5 |
bfc8f8bb32a50a7c50e70d75f1efb9ed
|
|
| BLAKE2b-256 |
9e368a5a6c9807da00a7d705e6bc746070863b26a14c0415c3ede6d0ed0af1dc
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp314-cp314-macosx_12_0_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp314-cp314-macosx_12_0_arm64.whl -
Subject digest:
3619d4ff9f78469418ad0d85830bf57e62a28592cd258ad23a60a4c40034a870 - Sigstore transparency entry: 2490471959
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp313-cp313t-win_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp313-cp313t-win_arm64.whl
- Upload date:
- Size: 22.5 MB
- Tags: CPython 3.13t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3564e21e76d32c77999e0e1835aea8c8099706fb306c4f9b3bef57a73ab1c083
|
|
| MD5 |
a012b2c915134c8f8fdccbd30f22da22
|
|
| BLAKE2b-256 |
c5a1d6b31b5df7c589b4569db2412bf453023c40f546e976d7e1d79055a60fc3
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp313-cp313t-win_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp313-cp313t-win_arm64.whl -
Subject digest:
3564e21e76d32c77999e0e1835aea8c8099706fb306c4f9b3bef57a73ab1c083 - Sigstore transparency entry: 2490472133
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp313-cp313t-win_amd64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 24.8 MB
- Tags: CPython 3.13t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
470c5d9cc6ffb59d5e860866b8e5b9b8afc78fb9271a758ef7afebb4eedd533d
|
|
| MD5 |
6a3815e356911598d58ae39cae174dcc
|
|
| BLAKE2b-256 |
a20dffaa55504fdc2c03ba0e4452796a9ddfa638af5ed62b348ca162fcddcaf5
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp313-cp313t-win_amd64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp313-cp313t-win_amd64.whl -
Subject digest:
470c5d9cc6ffb59d5e860866b8e5b9b8afc78fb9271a758ef7afebb4eedd533d - Sigstore transparency entry: 2490469687
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 25.9 MB
- Tags: CPython 3.13t, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8f536ec2883c93f539e164f688ff05b77cd6c43103f6e31dd7e0f5fad15462d
|
|
| MD5 |
d2ab49765f9d74c0f7719270e35c0226
|
|
| BLAKE2b-256 |
b4ee601009f9377fec5a52081e10f339896f74c8fc1d5a4544518f8be65e6343
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d8f536ec2883c93f539e164f688ff05b77cd6c43103f6e31dd7e0f5fad15462d - Sigstore transparency entry: 2490470180
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 24.3 MB
- Tags: CPython 3.13t, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d58602933f4b32d4c291d1d231ae95faca26be7ad446d92cd9ab097ee9a45a1
|
|
| MD5 |
a10adcccc519f83431cb20d0c8b9ae65
|
|
| BLAKE2b-256 |
83819675bbfdb3b7bb9f173b86b915588ff27e0bdc29b874b272eef6d5f592f7
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
1d58602933f4b32d4c291d1d231ae95faca26be7ad446d92cd9ab097ee9a45a1 - Sigstore transparency entry: 2490471289
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp313-cp313t-macosx_12_0_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp313-cp313t-macosx_12_0_x86_64.whl
- Upload date:
- Size: 26.8 MB
- Tags: CPython 3.13t, macOS 12.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94e76daa6807527cb2e065686822d3186b5bf6f50ae28f9b58092fd5b9387515
|
|
| MD5 |
59c24c1a266e276c1d3d7232a5e5d7a5
|
|
| BLAKE2b-256 |
27a4392ad2fd3e449f78fbb84b407b3cde0f6e4643e079b0cd6871ed88a6e474
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp313-cp313t-macosx_12_0_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp313-cp313t-macosx_12_0_x86_64.whl -
Subject digest:
94e76daa6807527cb2e065686822d3186b5bf6f50ae28f9b58092fd5b9387515 - Sigstore transparency entry: 2490473655
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp313-cp313t-macosx_12_0_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp313-cp313t-macosx_12_0_arm64.whl
- Upload date:
- Size: 25.1 MB
- Tags: CPython 3.13t, macOS 12.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c62b0e8738b84be9a8eddae08e4c444f82bb97a01d1a71b3498706e572c3316a
|
|
| MD5 |
48a1656bca29492015866fe1992bf15f
|
|
| BLAKE2b-256 |
0c0630bd42d7d1bc161f516d79f7619954b949e670b5aaceb1641f7df231e5f0
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp313-cp313t-macosx_12_0_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp313-cp313t-macosx_12_0_arm64.whl -
Subject digest:
c62b0e8738b84be9a8eddae08e4c444f82bb97a01d1a71b3498706e572c3316a - Sigstore transparency entry: 2490472757
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 22.5 MB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7285bea563012474faed3091ff01a7210011efad11235feb479655950ab5978
|
|
| MD5 |
7c767ea0f267b39469f227d6eacd05ec
|
|
| BLAKE2b-256 |
5c78ad536c52c69379c92c5118fe7a405e3d2a46b2c8e9c32b9a5d36586ec3b9
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp313-cp313-win_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp313-cp313-win_arm64.whl -
Subject digest:
b7285bea563012474faed3091ff01a7210011efad11235feb479655950ab5978 - Sigstore transparency entry: 2490470824
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 24.8 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12930f0336c4cb7b451d2512e82c19b829720e3f992f24ca9a94115a15d266ef
|
|
| MD5 |
5ab14e186a07ed917d910403c819939c
|
|
| BLAKE2b-256 |
c57709cadbc52c2847a4c86ca7bc645abab4e900f25c5bf7373db8efc9c7a8c7
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp313-cp313-win_amd64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp313-cp313-win_amd64.whl -
Subject digest:
12930f0336c4cb7b451d2512e82c19b829720e3f992f24ca9a94115a15d266ef - Sigstore transparency entry: 2490472259
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 25.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4aca2be5e3266b3e52fa476b4238c65d868bc92cf5f5f059d9087755a03f6988
|
|
| MD5 |
59adc8250d49cf8c7b15f85994cc537e
|
|
| BLAKE2b-256 |
5dfafaf8cb8571cfb811e9e74dcb5cfda531c5f3c25009c4f8720fe87ea4ec8d
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
4aca2be5e3266b3e52fa476b4238c65d868bc92cf5f5f059d9087755a03f6988 - Sigstore transparency entry: 2490472027
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 24.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88732083a7c28b95fe6499390646cc575830fcb407220dbf6b58bd05c9b399b3
|
|
| MD5 |
ec74ea2e4e8bcc305320e9e30147781d
|
|
| BLAKE2b-256 |
20ae5e57b35ec0d1fd5d93145e1e8e73b9409f11a87f3e1dc04eeb367ffcad14
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
88732083a7c28b95fe6499390646cc575830fcb407220dbf6b58bd05c9b399b3 - Sigstore transparency entry: 2490470896
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp313-cp313-macosx_12_0_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp313-cp313-macosx_12_0_x86_64.whl
- Upload date:
- Size: 26.8 MB
- Tags: CPython 3.13, macOS 12.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3abc02f5bc2fe9ea930a4dc7888e7c82c67c3989a88033ad7d93f4b9282cd887
|
|
| MD5 |
a8dff6fcf3e7e7a5cf61dbb82a955dae
|
|
| BLAKE2b-256 |
8aee8b47f8b3546109fe55244abca59ec4eaa750478f566a4304bb582bcaba75
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp313-cp313-macosx_12_0_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp313-cp313-macosx_12_0_x86_64.whl -
Subject digest:
3abc02f5bc2fe9ea930a4dc7888e7c82c67c3989a88033ad7d93f4b9282cd887 - Sigstore transparency entry: 2490472187
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp313-cp313-macosx_12_0_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp313-cp313-macosx_12_0_arm64.whl
- Upload date:
- Size: 25.1 MB
- Tags: CPython 3.13, macOS 12.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f19be6313275aaa9db63c7b27e914187b9d3ebc36dededb80442a74661eca9bf
|
|
| MD5 |
780e65e880db7295795bf499f582584e
|
|
| BLAKE2b-256 |
b1cb1407ccb8e90d386b75fe72e3b2b1d51892e11e6d8fa96f7ac2f2c269f093
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp313-cp313-macosx_12_0_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp313-cp313-macosx_12_0_arm64.whl -
Subject digest:
f19be6313275aaa9db63c7b27e914187b9d3ebc36dededb80442a74661eca9bf - Sigstore transparency entry: 2490473120
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 22.5 MB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c411493ff734a29b842f83155c2f80973460bb28e2bb1036d3ae0dedda98bdca
|
|
| MD5 |
fb1a48af389978c24fcf362c00a46994
|
|
| BLAKE2b-256 |
9fc500ed5c481d78fb7f26b6c01b5a41c403ebbf0bb5ca767629a387806e44b0
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp312-cp312-win_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp312-cp312-win_arm64.whl -
Subject digest:
c411493ff734a29b842f83155c2f80973460bb28e2bb1036d3ae0dedda98bdca - Sigstore transparency entry: 2490472917
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 24.8 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3da0364f83865a2a5e46aae9e018ed581664104026ae346dfbebc73681aab219
|
|
| MD5 |
196134655f255d59f9151bd8f1d76f5c
|
|
| BLAKE2b-256 |
c9f4627eae716ec823b2ed4933c7d156fdf5fdf20ad91a4e1daedecb0513672e
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp312-cp312-win_amd64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp312-cp312-win_amd64.whl -
Subject digest:
3da0364f83865a2a5e46aae9e018ed581664104026ae346dfbebc73681aab219 - Sigstore transparency entry: 2490471656
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 25.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3b6e5e3edfd4f4f880e6bf1911bbe622d44047d38b04ccfbf45bc4626b16beb
|
|
| MD5 |
0bc1ac71e0048af3e2b2d7faef09fb49
|
|
| BLAKE2b-256 |
4634a402f89c3c51fcd518ae6413ab305ee66a7f14b76769e1237836a9a2609e
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
e3b6e5e3edfd4f4f880e6bf1911bbe622d44047d38b04ccfbf45bc4626b16beb - Sigstore transparency entry: 2490470271
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 24.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e93947077a605c58a98c67a802a64cdb81a0745ebd7eaf2503f4a5fcde803d1
|
|
| MD5 |
bde8c964f27df21fa575dd67acdfce63
|
|
| BLAKE2b-256 |
7119427360bb57f1a62a96b31ab5bb3ca600a3d32ea0f6be1d82c2c98ebca74e
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
1e93947077a605c58a98c67a802a64cdb81a0745ebd7eaf2503f4a5fcde803d1 - Sigstore transparency entry: 2490472576
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp312-cp312-macosx_12_0_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp312-cp312-macosx_12_0_x86_64.whl
- Upload date:
- Size: 26.8 MB
- Tags: CPython 3.12, macOS 12.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a96399624d15e83d2f26efd537d8637761b07cf8cfa17a88f263915c558d0018
|
|
| MD5 |
5d9a0c1f4094a059986ba36d7c4fdc2c
|
|
| BLAKE2b-256 |
65e7f175a6cd3cda6a3639c5d22e473f52410628c076ca3dad9a9effaf66e6ba
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp312-cp312-macosx_12_0_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp312-cp312-macosx_12_0_x86_64.whl -
Subject digest:
a96399624d15e83d2f26efd537d8637761b07cf8cfa17a88f263915c558d0018 - Sigstore transparency entry: 2490470098
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp312-cp312-macosx_12_0_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp312-cp312-macosx_12_0_arm64.whl
- Upload date:
- Size: 25.1 MB
- Tags: CPython 3.12, macOS 12.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b366f9a11a610d30dccd910f00908653bc011228c7f2a995c725b9f2bc1a7788
|
|
| MD5 |
071e27a882e30b26206c810086d2150d
|
|
| BLAKE2b-256 |
d37758918afc046824c02916cc65b2d062ad7d8e0389fb8681378703b04fdc91
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp312-cp312-macosx_12_0_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp312-cp312-macosx_12_0_arm64.whl -
Subject digest:
b366f9a11a610d30dccd910f00908653bc011228c7f2a995c725b9f2bc1a7788 - Sigstore transparency entry: 2490473362
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 22.5 MB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84ca6057d4db39859809952018d5b66093b11298cb7e841de100a4da8f433e3f
|
|
| MD5 |
9bea28feef4e058c922ce6e2882f904d
|
|
| BLAKE2b-256 |
5df9d4009fcc33edf304e8c3fb35a10a1726f34b5794c2c24ce4dedf4c4bb740
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp311-cp311-win_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp311-cp311-win_arm64.whl -
Subject digest:
84ca6057d4db39859809952018d5b66093b11298cb7e841de100a4da8f433e3f - Sigstore transparency entry: 2490471038
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 24.8 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5dec6a84db71868feacda04667d6eff871c5336c6c2d9baa5c318682b5bd180
|
|
| MD5 |
254ab1dd7a915f726d213022b6dc220f
|
|
| BLAKE2b-256 |
f671e06072df028dedeb3cd6b99b962da390dfc781acb715ac809cd89b27883b
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp311-cp311-win_amd64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp311-cp311-win_amd64.whl -
Subject digest:
a5dec6a84db71868feacda04667d6eff871c5336c6c2d9baa5c318682b5bd180 - Sigstore transparency entry: 2490470515
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 25.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90d512ee8a1c6837c215d73a756e3ea71ffd8340ad23785f7799f1ef5753db86
|
|
| MD5 |
64c482da7bfe526c36984f120db38854
|
|
| BLAKE2b-256 |
c54d17e3ad2978ab7529850c166e6d8065613d3e9e572632d603f853f12e11e8
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
90d512ee8a1c6837c215d73a756e3ea71ffd8340ad23785f7799f1ef5753db86 - Sigstore transparency entry: 2490469617
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 24.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cb2671d20ab143e16bd012b523671ccafd7163b243b7d6fd8e31645efb18f60
|
|
| MD5 |
bde7aee15abf95084c5af3feb41e2e6e
|
|
| BLAKE2b-256 |
4e148ba22b1cded91a0ca097edf959643a24af047a0096b4c2160ad658dd3146
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
3cb2671d20ab143e16bd012b523671ccafd7163b243b7d6fd8e31645efb18f60 - Sigstore transparency entry: 2490470358
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp311-cp311-macosx_12_0_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp311-cp311-macosx_12_0_x86_64.whl
- Upload date:
- Size: 26.8 MB
- Tags: CPython 3.11, macOS 12.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9be04215961e3600d0611482ea99ff7386cdee2d9762a862c57d2129264485b3
|
|
| MD5 |
0c215531d72b68a8cc8066d660ff3a1a
|
|
| BLAKE2b-256 |
6a54efcd1702397e12574f9cf07b67bcf5811ebcddef3bbe37a88a48f89c01db
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp311-cp311-macosx_12_0_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp311-cp311-macosx_12_0_x86_64.whl -
Subject digest:
9be04215961e3600d0611482ea99ff7386cdee2d9762a862c57d2129264485b3 - Sigstore transparency entry: 2490473586
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp311-cp311-macosx_12_0_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp311-cp311-macosx_12_0_arm64.whl
- Upload date:
- Size: 25.1 MB
- Tags: CPython 3.11, macOS 12.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab8488deb70b497619820c251ddd3e046e53b2baf07f32cbabddc705a3f33414
|
|
| MD5 |
ad0ac4432cbff089609f9ab180680f6b
|
|
| BLAKE2b-256 |
5733aee6dc7cd83c7c10eb33557739f2a855e5218988e3b7544b6aebcd990499
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp311-cp311-macosx_12_0_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp311-cp311-macosx_12_0_arm64.whl -
Subject digest:
ab8488deb70b497619820c251ddd3e046e53b2baf07f32cbabddc705a3f33414 - Sigstore transparency entry: 2490472867
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 22.5 MB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91d38f9df965c23da61b6f48a49b5a355ef59661f44f9870cf9a9d0ce51af2e0
|
|
| MD5 |
4fa26a913f4018e9716d2d2e3a0cdc82
|
|
| BLAKE2b-256 |
60bad3d6bc9bf741f2cfe9bf48610bf5895b3bb86092d2d6bca96892c898894c
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp310-cp310-win_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp310-cp310-win_arm64.whl -
Subject digest:
91d38f9df965c23da61b6f48a49b5a355ef59661f44f9870cf9a9d0ce51af2e0 - Sigstore transparency entry: 2490470573
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 24.7 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea2b8c220bc3c6233e3122236f994e071b7725a3706750527f1c76b4a0f0ba83
|
|
| MD5 |
66d0d57d284212bd203547cff58f056a
|
|
| BLAKE2b-256 |
79d2dd96894d8443d50d311ebf59260da352584dc79683f4cc8ca320ec24879e
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp310-cp310-win_amd64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp310-cp310-win_amd64.whl -
Subject digest:
ea2b8c220bc3c6233e3122236f994e071b7725a3706750527f1c76b4a0f0ba83 - Sigstore transparency entry: 2490473294
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 25.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06e22aba317a793a974bc20749a8af5763914625d1d64c989ff5984e6da2581c
|
|
| MD5 |
6d5a8413188b9c7d698bcefedbd64c49
|
|
| BLAKE2b-256 |
39c82234c8b5488027bc3c4c3018e7facd55a3ba971a0d03dfed1a7d89339836
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
06e22aba317a793a974bc20749a8af5763914625d1d64c989ff5984e6da2581c - Sigstore transparency entry: 2490471566
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 24.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cbe96a2afb3b522b45c3bdf2063a5cf8b918d0460eea0bd15529e6a20734d05
|
|
| MD5 |
5a55c6fec7f78ed57dce516030769d5f
|
|
| BLAKE2b-256 |
040d454bbbdf0c150109c21cad854dc8f14f5c7ebb1e922d33a129310445d2f2
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
5cbe96a2afb3b522b45c3bdf2063a5cf8b918d0460eea0bd15529e6a20734d05 - Sigstore transparency entry: 2490472642
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp310-cp310-macosx_12_0_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp310-cp310-macosx_12_0_x86_64.whl
- Upload date:
- Size: 26.8 MB
- Tags: CPython 3.10, macOS 12.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72105f0d863687116ec47a59241a6c80425274213438bfd7ca7729916d278a36
|
|
| MD5 |
4d1a5a08f61d29f0c2802bfdfcc90995
|
|
| BLAKE2b-256 |
8eebd24749e7352ce4236768c75703f43a5009f1c1b51bceafeecb1e073ab1fe
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp310-cp310-macosx_12_0_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp310-cp310-macosx_12_0_x86_64.whl -
Subject digest:
72105f0d863687116ec47a59241a6c80425274213438bfd7ca7729916d278a36 - Sigstore transparency entry: 2490471371
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp310-cp310-macosx_12_0_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp310-cp310-macosx_12_0_arm64.whl
- Upload date:
- Size: 25.1 MB
- Tags: CPython 3.10, macOS 12.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b55bed872e160d4fd34f24c382c649d504dc6d3312e5b4aea9f0e37731523292
|
|
| MD5 |
58b42cfeaa042b2eb9c64194f4cfaac6
|
|
| BLAKE2b-256 |
709b18505a818352bc631ffed490dc0738194e32819da5ab9e4d899e1c513724
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp310-cp310-macosx_12_0_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp310-cp310-macosx_12_0_arm64.whl -
Subject digest:
b55bed872e160d4fd34f24c382c649d504dc6d3312e5b4aea9f0e37731523292 - Sigstore transparency entry: 2490471206
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp39-cp39-win_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 22.5 MB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5aa0ddbe791111030faa8662d20798a23f530c0ab1c2de95b6d30fe3e48dab71
|
|
| MD5 |
cf5324960f3da640e34c451df4458ca0
|
|
| BLAKE2b-256 |
ea796da49beab987a7a65f7fe70fb7425c5cca5956f0f72a481668bee8daefbb
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp39-cp39-win_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp39-cp39-win_arm64.whl -
Subject digest:
5aa0ddbe791111030faa8662d20798a23f530c0ab1c2de95b6d30fe3e48dab71 - Sigstore transparency entry: 2490470428
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 24.7 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c9be7cd0e02c454d879b746902b196ca4013f6c72eef5d10440b66b38b62333
|
|
| MD5 |
7df25551cf6b9dc435e630b6965138d0
|
|
| BLAKE2b-256 |
7106d1965bb67fe7849422b38a03b4d99fac1a2237d36f356157e32f25a827f5
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp39-cp39-win_amd64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp39-cp39-win_amd64.whl -
Subject digest:
6c9be7cd0e02c454d879b746902b196ca4013f6c72eef5d10440b66b38b62333 - Sigstore transparency entry: 2490471751
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 25.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72d05d2f85df0f8e7a346e878b26b6c0855ff95d69bf070f4e9983e8ecefc8c1
|
|
| MD5 |
e1ed072e41c7ffb2040d648fbc5afff7
|
|
| BLAKE2b-256 |
51c60f31ea32df127354a609fa08dc06583c43fc566aa5ef7968d93248a69d96
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
72d05d2f85df0f8e7a346e878b26b6c0855ff95d69bf070f4e9983e8ecefc8c1 - Sigstore transparency entry: 2490471508
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 24.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22a0251076d2bffb9b3ab593ed2d461b3dab767ba8c65ec6069ae429a29b9b58
|
|
| MD5 |
378fcad8bdf01fee982f5a93653db43c
|
|
| BLAKE2b-256 |
f85a0041e098ce71823599d041be09f2bb8fca1c91fcd4c36e8c82d2790a9032
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
22a0251076d2bffb9b3ab593ed2d461b3dab767ba8c65ec6069ae429a29b9b58 - Sigstore transparency entry: 2490469521
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp39-cp39-macosx_12_0_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp39-cp39-macosx_12_0_x86_64.whl
- Upload date:
- Size: 26.8 MB
- Tags: CPython 3.9, macOS 12.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7af8b551e1bd7a975b7b65d445245691fd4e3e851db5050f75df8add9fdd30bd
|
|
| MD5 |
470586929b98bff49ca9caf09d908aec
|
|
| BLAKE2b-256 |
519ab656d0863611b98810d89a8707b463a779785d4288b37ffba1e3949ab598
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp39-cp39-macosx_12_0_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp39-cp39-macosx_12_0_x86_64.whl -
Subject digest:
7af8b551e1bd7a975b7b65d445245691fd4e3e851db5050f75df8add9fdd30bd - Sigstore transparency entry: 2490473455
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp39-cp39-macosx_12_0_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp39-cp39-macosx_12_0_arm64.whl
- Upload date:
- Size: 25.1 MB
- Tags: CPython 3.9, macOS 12.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
916ccb4a0b2f8cf8a63c5bb0c697d1228183d3199cf80ab5bf012252084202e7
|
|
| MD5 |
7037e9e788cc16ed7efab31723c528f6
|
|
| BLAKE2b-256 |
87fdf04249b5ac0affb4d9370589f1e00230a87bfa382f92af036c9a07036703
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp39-cp39-macosx_12_0_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp39-cp39-macosx_12_0_arm64.whl -
Subject digest:
916ccb4a0b2f8cf8a63c5bb0c697d1228183d3199cf80ab5bf012252084202e7 - Sigstore transparency entry: 2490469795
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 24.7 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5fcc782f66d281d22a0ee947a001848908ebbc2364bfec1c8085c6410ff5896
|
|
| MD5 |
25fbdf0a55e9f9d56241898d63228b4f
|
|
| BLAKE2b-256 |
543803d5ebab7bec00249d261c2cb8cbb3311ea8b7a83e7ba372daf225635b97
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp38-cp38-win_amd64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp38-cp38-win_amd64.whl -
Subject digest:
b5fcc782f66d281d22a0ee947a001848908ebbc2364bfec1c8085c6410ff5896 - Sigstore transparency entry: 2490470970
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 25.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
502e4c74275fae08c36ec17b30186955bfd8e28ed3b7778c3cdaa2e1018b91e7
|
|
| MD5 |
9fca92b2858d0dac5da88af365e60375
|
|
| BLAKE2b-256 |
f6c1dbbb9ad6a43680b5f570d54cf1b1e585ecfb95649fc8529e4d06e32fda2a
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
502e4c74275fae08c36ec17b30186955bfd8e28ed3b7778c3cdaa2e1018b91e7 - Sigstore transparency entry: 2490469851
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 24.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e89e8780c16914e984b0b95a31e01cefd9de3ac97e8bee3e276c526fa74f5aa0
|
|
| MD5 |
18837c03bf781604157b18550e7a1ac6
|
|
| BLAKE2b-256 |
526a36088b06e7b4993dd2272fd4eec800664b616694b684fd645daa98cc80f5
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
e89e8780c16914e984b0b95a31e01cefd9de3ac97e8bee3e276c526fa74f5aa0 - Sigstore transparency entry: 2490471108
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp38-cp38-macosx_12_0_x86_64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp38-cp38-macosx_12_0_x86_64.whl
- Upload date:
- Size: 26.8 MB
- Tags: CPython 3.8, macOS 12.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5eef2babcf5da869e20fa7fc51e8224d09311574712fc09a0fc710be03ea78f
|
|
| MD5 |
45833b7a795f4a65a01c1312bf960b9d
|
|
| BLAKE2b-256 |
b0b43b74e9f1783275160ef1c301bd8d365cc81175d9435681f5f2e7f6957ea4
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp38-cp38-macosx_12_0_x86_64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp38-cp38-macosx_12_0_x86_64.whl -
Subject digest:
a5eef2babcf5da869e20fa7fc51e8224d09311574712fc09a0fc710be03ea78f - Sigstore transparency entry: 2490472436
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type:
File details
Details for the file sing_box_python-1.13.18-cp38-cp38-macosx_12_0_arm64.whl.
File metadata
- Download URL: sing_box_python-1.13.18-cp38-cp38-macosx_12_0_arm64.whl
- Upload date:
- Size: 25.1 MB
- Tags: CPython 3.8, macOS 12.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adb768ff65a9df92213b535e2d5753f6fe50321a5049577c948424b94e601534
|
|
| MD5 |
9bfbae10ea92e4cb7a345904c99c1b3d
|
|
| BLAKE2b-256 |
03588d3621150a473c56e68599dde0b17be7c46d1e8ea3c34b6a1884b5f23e93
|
Provenance
The following attestation bundles were made for sing_box_python-1.13.18-cp38-cp38-macosx_12_0_arm64.whl:
Publisher:
build-and-publish.yml on LorenEteval/sing-box-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sing_box_python-1.13.18-cp38-cp38-macosx_12_0_arm64.whl -
Subject digest:
adb768ff65a9df92213b535e2d5753f6fe50321a5049577c948424b94e601534 - Sigstore transparency entry: 2490470730
- Sigstore integration time:
-
Permalink:
LorenEteval/sing-box-python@aceecc8b696f102b48be5eb8876dc4322e181fda -
Branch / Tag:
refs/tags/v1.13.18 - Owner: https://github.com/LorenEteval
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-and-publish.yml@aceecc8b696f102b48be5eb8876dc4322e181fda -
Trigger Event:
push
-
Statement type: