Skip to main content

sing-box-python

Build and publish Python distributions

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:

  • The Go toolchain version recorded in .go-version, or a newer compatible release, in PATH. The pinned version matches the compiler used by the synchronized upstream release workflow.
  • A working C and C++ compiler toolchain.
  • MinGW-w64 on Windows x86-64, or LLVM-MinGW on Windows ARM64, with gcc and g++ available in PATH.

The isolated Python build environment installs CMake, pybind11, setuptools, and wheel automatically. To build directly from a repository checkout:

pip install .

The native build queries the active Go dependency graph with go list and forwards every package's #cgo LDFLAGS to CMake in dependency order. Native system dependencies therefore follow the vendored sing-box version, selected build tags, target platform, and architecture instead of being maintained as a separate framework list. Dependencies still must be available in the target platform SDK or build environment.

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
    vX.Y.Z

Vendored Upstream Source

This repository and its PyPI source distribution contain a vendored copy of sing-box. Vendoring keeps source installs independent of Git submodule support. All regular files under singbox-go come directly from the upstream release except these explicit additions:

  • singbox-go/binding/main.go
  • singbox-go/binding/cronet_purego.go

Upstream Git submodule contents are intentionally not vendored. Synchronization discovers and reports gitlinks from each release dynamically, so adding an upstream submodule does not require a binding maintenance change. A gitlink that overlaps a binding-specific file is still rejected, and the pre-release native compile gate prevents publication if a new submodule becomes necessary for the binding build. The initial Windows import normalized executable bits on upstream shell scripts; file paths and blob contents remain identical to upstream. Synchronization runs on Linux and preserves upstream modes.

Upstream Release Synchronization

.github/workflows/sync-upstream.yml checks the latest stable upstream release hourly and can also be started manually from the Actions page. Drafts and prereleases are rejected. UPSTREAM_VERSION is the single version source for both the Python distribution version and the sing-box version embedded in the native library, while UPSTREAM_COMMIT pins the commit to which that release tag resolved during import. The root .go-version pins the exact Go compiler used by upstream's release workflow; this is intentionally independent of the minimum language version in singbox-go/go.mod.

The synchronization script checks the current vendor tree against its exact upstream tag, fetches the requested tag, replaces only upstream-owned files, restores the binding additions, updates UPSTREAM_VERSION, UPSTREAM_COMMIT, and .go-version, and verifies every vendored upstream path and Git blob. The Go pin is extracted from exact go-version entries in upstream's build workflow; synchronization fails instead of guessing if no single exact version can be identified. Repeated checks are no-ops when the stable release is already synchronized.

Run the same operations locally from the repository root:

python scripts/sync-sing-box.py check
python scripts/sync-sing-box.py verify --tag v1.13.18
python scripts/sync-sing-box.py sync --tag vX.Y.Z

For an automated update, the sync workflow installs the synchronized .go-version toolchain and compiles the Go binding before committing chore: sync sing-box vX.Y.Z to main. It then explicitly dispatches the existing build-and-publish workflow at that commit. The latter uses the same exact Go version for every wheel platform, builds and tests every distribution, then creates the vX.Y.Z tag, publishes X.Y.Z to PyPI through Trusted Publishing, and creates the GitHub Release. Explicit dispatch is required because pushes made with GitHub's GITHUB_TOKEN do not trigger new push workflows.

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 the vendored sing-box 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.

Release files for sing-box-python 1.14.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for sing-box-python 1.14.1
File Size Uploaded
sing_box_python-1.14.1.tar.gz 2.1 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for sing-box-python 1.14.1
File
sing_box_python-1.14.1-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
sing_box_python-1.14.1-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
sing_box_python-1.14.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
sing_box_python-1.14.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
sing_box_python-1.14.1-cp314-cp314t-macosx_12_0_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 12.0+ x86-64 Details
sing_box_python-1.14.1-cp314-cp314t-macosx_12_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 12.0+ ARM64 Details
sing_box_python-1.14.1-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
sing_box_python-1.14.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
sing_box_python-1.14.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
sing_box_python-1.14.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
sing_box_python-1.14.1-cp314-cp314-macosx_12_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 12.0+ x86-64 Details
sing_box_python-1.14.1-cp314-cp314-macosx_12_0_arm64.whl CPython 3.14 CPython 3.14 macOS 12.0+ ARM64 Details
sing_box_python-1.14.1-cp313-cp313t-win_arm64.whl CPython 3.13 CPython 3.13 free-threading Windows ARM64 Details
sing_box_python-1.14.1-cp313-cp313t-win_amd64.whl CPython 3.13 CPython 3.13 free-threading Windows x86-64 Details
sing_box_python-1.14.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64 Details
sing_box_python-1.14.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 Details
sing_box_python-1.14.1-cp313-cp313t-macosx_12_0_x86_64.whl CPython 3.13 CPython 3.13 free-threading macOS 12.0+ x86-64 Details
sing_box_python-1.14.1-cp313-cp313t-macosx_12_0_arm64.whl CPython 3.13 CPython 3.13 free-threading macOS 12.0+ ARM64 Details
sing_box_python-1.14.1-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
sing_box_python-1.14.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
sing_box_python-1.14.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
sing_box_python-1.14.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
sing_box_python-1.14.1-cp313-cp313-macosx_12_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 12.0+ x86-64 Details
sing_box_python-1.14.1-cp313-cp313-macosx_12_0_arm64.whl CPython 3.13 CPython 3.13 macOS 12.0+ ARM64 Details
sing_box_python-1.14.1-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
sing_box_python-1.14.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
sing_box_python-1.14.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
sing_box_python-1.14.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
sing_box_python-1.14.1-cp312-cp312-macosx_12_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 12.0+ x86-64 Details
sing_box_python-1.14.1-cp312-cp312-macosx_12_0_arm64.whl CPython 3.12 CPython 3.12 macOS 12.0+ ARM64 Details
sing_box_python-1.14.1-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
sing_box_python-1.14.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
sing_box_python-1.14.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
sing_box_python-1.14.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
sing_box_python-1.14.1-cp311-cp311-macosx_12_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 12.0+ x86-64 Details
sing_box_python-1.14.1-cp311-cp311-macosx_12_0_arm64.whl CPython 3.11 CPython 3.11 macOS 12.0+ ARM64 Details
sing_box_python-1.14.1-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
sing_box_python-1.14.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
sing_box_python-1.14.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
sing_box_python-1.14.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
sing_box_python-1.14.1-cp310-cp310-macosx_12_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 12.0+ x86-64 Details
sing_box_python-1.14.1-cp310-cp310-macosx_12_0_arm64.whl CPython 3.10 CPython 3.10 macOS 12.0+ ARM64 Details
sing_box_python-1.14.1-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
sing_box_python-1.14.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
sing_box_python-1.14.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
sing_box_python-1.14.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
sing_box_python-1.14.1-cp39-cp39-macosx_12_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 12.0+ x86-64 Details
sing_box_python-1.14.1-cp39-cp39-macosx_12_0_arm64.whl CPython 3.9 CPython 3.9 macOS 12.0+ ARM64 Details
sing_box_python-1.14.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
sing_box_python-1.14.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
sing_box_python-1.14.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
sing_box_python-1.14.1-cp38-cp38-macosx_12_0_x86_64.whl CPython 3.8 CPython 3.8 macOS 12.0+ x86-64 Details
sing_box_python-1.14.1-cp38-cp38-macosx_12_0_arm64.whl CPython 3.8 CPython 3.8 macOS 12.0+ ARM64 Details

Total release size: 1.7 GB

Release files / sing_box_python-1.14.1.tar.gz

Download URL sing_box_python-1.14.1.tar.gz
Size 2.1 MB
Tags Source
SHA-256 checksum
How to use checksums
a91157fd4e2d68c6970834bab07474b7e4bc1fcc1a88eeb24594dc437cc0764e
BLAKE2b-256 checksum
How to use checksums
09397565e6b8fd6789a0e11f4e9810b912a70403dc1783837d73ae6f11827496
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp314-cp314t-win_arm64.whl

Download URL sing_box_python-1.14.1-cp314-cp314t-win_arm64.whl
Size 29.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
e0e234c971c22df265ee0c155e472547953999ffbb6d026431e02a4b23b88bf8
BLAKE2b-256 checksum
How to use checksums
44f091b8df5a2dc9d550040f908ec21912621a678fff8468dbd355f8fa4d95cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp314-cp314t-win_amd64.whl

Download URL sing_box_python-1.14.1-cp314-cp314t-win_amd64.whl
Size 32.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
05da96b7494f348f7ed78fcbf308a72aaa2c0822ce8df508138534be565e29f1
BLAKE2b-256 checksum
How to use checksums
9f3784a57b2694a6dd7c3f530ce931767b2c296c6f369f9b7445b2c792cbc9b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL sing_box_python-1.14.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 32.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e270ae9be2c0207e9bfbd895acb0faa7d7d6acb0c599b1a8fb3e922c23c876ac
BLAKE2b-256 checksum
How to use checksums
7a02b3729a7e6d4db704e9e160e604265fe4770cdab30e4acf2ddda0d107e0fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL sing_box_python-1.14.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 30.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
38645bfe98852c77028dcf7192e215a0ebc16c73608fa1bef7a05595e3fca2b1
BLAKE2b-256 checksum
How to use checksums
8657f973ca18ecdd7bb64c1d037095158586a754c15e55e9e76cab8522f2d96f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp314-cp314t-macosx_12_0_x86_64.whl

Download URL sing_box_python-1.14.1-cp314-cp314t-macosx_12_0_x86_64.whl
Size 33.2 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
f96f111d19f8cbbbaa4487b49564a3685e9891b09f4b84fb966d9a0f1a4f2497
BLAKE2b-256 checksum
How to use checksums
6818c2547dd3ced56c91f59a46c60cc4166bb7696b2943d1a30cef0f92c957f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp314-cp314t-macosx_12_0_arm64.whl

Download URL sing_box_python-1.14.1-cp314-cp314t-macosx_12_0_arm64.whl
Size 31.0 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
5266edb5c81166dc1e06149229c9c7c486fd6fbcab1292d68572bfa5491e082f
BLAKE2b-256 checksum
How to use checksums
e0a07afd07c7b10bfddd9a6cb23ad9d9e937b25ebde009bd2065600c1cd66cf6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp314-cp314-win_arm64.whl

Download URL sing_box_python-1.14.1-cp314-cp314-win_arm64.whl
Size 29.1 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
6e368828b68db224fe906dcf57db771d95380a132235298cd233ddbc0ad840e6
BLAKE2b-256 checksum
How to use checksums
d7f211a8558d9042c9d04c1d90918571e27b67fb61171a3b5c94aa0198296144
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp314-cp314-win_amd64.whl

Download URL sing_box_python-1.14.1-cp314-cp314-win_amd64.whl
Size 32.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
464f012affec008bc950624a638bfca3bb6c52a05b363b11cb248b1077703184
BLAKE2b-256 checksum
How to use checksums
8e94fa3298336ee1324af3f582676b36400c124adb302b13b5dfd78abbd950c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL sing_box_python-1.14.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 32.8 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c6d99e19b2f457015cf794b2e2f59461b0ff9122c269fd5968e2ccb4a781b108
BLAKE2b-256 checksum
How to use checksums
4f9129ec30fd3f00aff5242a331078b86c36667d03768f0dd8391fbd0df830ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL sing_box_python-1.14.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 30.3 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
70d547f08ecdd42c9437b16d060541ea9923d830d22156254fcd1674fa61a6fc
BLAKE2b-256 checksum
How to use checksums
5fec9dd07598801b216f2dba1733f01ae0807b00b36872d2687c56402ed5665f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp314-cp314-macosx_12_0_x86_64.whl

Download URL sing_box_python-1.14.1-cp314-cp314-macosx_12_0_x86_64.whl
Size 33.2 MB
Tags CPython 3.14 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
73257edec9cb3c1e95a8fbada099accb62ce7ab458657f98796e56b2235f3bd2
BLAKE2b-256 checksum
How to use checksums
4b6c9edbf5a287665ac1b2d652187884259d4b723169368ed0946180202b9fc1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp314-cp314-macosx_12_0_arm64.whl

Download URL sing_box_python-1.14.1-cp314-cp314-macosx_12_0_arm64.whl
Size 30.9 MB
Tags CPython 3.14 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
03cf3021a7ac501ec78fe2924e53b53719e493a032c3fbbd91fb669fd52d52f0
BLAKE2b-256 checksum
How to use checksums
013b766933fd402b02dd6c0ed3c64fd8fc8e074ea084cbd6272e891061e6246f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp313-cp313t-win_arm64.whl

Download URL sing_box_python-1.14.1-cp313-cp313t-win_arm64.whl
Size 28.2 MB
Tags CPython 3.13 CPython 3.13 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
5d68944274f3531dfa158ab2b0856b3e81b04aff56ed46112bd2824d2097e82b
BLAKE2b-256 checksum
How to use checksums
d4849bcdecc1c9b6c810a31923dcb3e688aa841d470353eade59477964463391
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp313-cp313t-win_amd64.whl

Download URL sing_box_python-1.14.1-cp313-cp313t-win_amd64.whl
Size 31.6 MB
Tags CPython 3.13 CPython 3.13 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
a34688c4161c545d3a19071443c87a0fe74a5b19d3ac04a40912b48e545636fd
BLAKE2b-256 checksum
How to use checksums
5a78ffa9ea0a060065d9a90fce739d08410c234ff2621ea5153a9e54685537d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL sing_box_python-1.14.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 32.8 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1a1a5188657abba02856b0c1241d67c6c659e492f2209ed73e3cfc22849c1b93
BLAKE2b-256 checksum
How to use checksums
e0cc962c6bef49aab60b856a6e6c336a5a7bd817a14fea717dc68edfba809ecf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL sing_box_python-1.14.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 30.3 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
7b24ca05a59c65a280cf875541e8078b14a03fffac0e59fb235d68473604670e
BLAKE2b-256 checksum
How to use checksums
d668d22ae3196b801e88696023903f2f179af25901e544a721e409f11814e106
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp313-cp313t-macosx_12_0_x86_64.whl

Download URL sing_box_python-1.14.1-cp313-cp313t-macosx_12_0_x86_64.whl
Size 33.2 MB
Tags CPython 3.13 CPython 3.13 free-threading macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
78c0b6cac4756cc4bf1573c23bd087bd636cb52bb62fa238cdd5d0d6dcdcecf6
BLAKE2b-256 checksum
How to use checksums
cb9b01988e07ff1e42edc45b473a3f5b976e7c7f66d8b4d70b97118f87ec6aac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp313-cp313t-macosx_12_0_arm64.whl

Download URL sing_box_python-1.14.1-cp313-cp313t-macosx_12_0_arm64.whl
Size 31.0 MB
Tags CPython 3.13 CPython 3.13 free-threading macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
b121b989141f2d9ec437a440f53c064f85f1076814e1a3df5a436ef98684b00b
BLAKE2b-256 checksum
How to use checksums
62fa1421f0a0cd1bcc60785138a264348ad18fe2bae989be8bed7afde03ceec7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp313-cp313-win_arm64.whl

Download URL sing_box_python-1.14.1-cp313-cp313-win_arm64.whl
Size 28.2 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
ccbd53833d2c1296a8fdc73de1547324f8503c120bb1d508de3966ef103adb7b
BLAKE2b-256 checksum
How to use checksums
e33281fe808e4c3dc785c755e50a5b43f5a110802be3a9167dbfd68db42f2c63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp313-cp313-win_amd64.whl

Download URL sing_box_python-1.14.1-cp313-cp313-win_amd64.whl
Size 31.6 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
3fd9873262ff811142a72bcc914988dc70e63ba27f434ae16cd03fa8bc1b7322
BLAKE2b-256 checksum
How to use checksums
6ffdd5a905611e95b7cd5cb4e499343eecc5b317b017ef9c74cfddeb57162969
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL sing_box_python-1.14.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 32.8 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
40e2cbfcfb847521a1a0f91940788b2f755ff392df78b2f81f0fab7ca8fd515b
BLAKE2b-256 checksum
How to use checksums
560c2e2e658be31e3676db1533a579ae3e1d8800898086d79a0186ef1a64f544
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL sing_box_python-1.14.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 30.3 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f4589717a7c4115e8a1deef18fa503f2d6dacd149b347ce64861f8b07dc43295
BLAKE2b-256 checksum
How to use checksums
106b82f5bf7f1456fcf43df66a790343c8be5f21a9af3e2d6234226d91d92045
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp313-cp313-macosx_12_0_x86_64.whl

Download URL sing_box_python-1.14.1-cp313-cp313-macosx_12_0_x86_64.whl
Size 33.2 MB
Tags CPython 3.13 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
a5ac3a70daa2fdc4d5fe12f0de53791f8981ddd54d8476e1028f0e44ca8069f0
BLAKE2b-256 checksum
How to use checksums
3bb692f4c925b9b9c9541e4a9a2b416b1c44ecdf74407a8d7d569aec4024e7be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp313-cp313-macosx_12_0_arm64.whl

Download URL sing_box_python-1.14.1-cp313-cp313-macosx_12_0_arm64.whl
Size 30.9 MB
Tags CPython 3.13 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
19fd3ffcf867bfd03e595cdf907495632fa119b449767fe844280ad856604518
BLAKE2b-256 checksum
How to use checksums
679fe6789816587d37c57961baaf2d5e263ea50e68e8c5161e8429fcc77ad264
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp312-cp312-win_arm64.whl

Download URL sing_box_python-1.14.1-cp312-cp312-win_arm64.whl
Size 28.2 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
36bce5dc737164641d41c8fa5f5e7e10dbe1543a3d0e2fb5d51c7f7d93764815
BLAKE2b-256 checksum
How to use checksums
961714ddc9e09a4b058581e51f1bbb3b111c777a783274ac6a5495ebf6a8e717
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp312-cp312-win_amd64.whl

Download URL sing_box_python-1.14.1-cp312-cp312-win_amd64.whl
Size 31.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
3d6069778a290843c033be94c79f1a34c972ce6202f20d881d2fd4468020fdbe
BLAKE2b-256 checksum
How to use checksums
b24fd5656a0b7646ec8562bb08b460db369c4f580af7f24d3beb2e075dfac5f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL sing_box_python-1.14.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 32.8 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5b349d110af060170ea9ea7361fa3ffaf5d001db4d59436e5c6845a406cb9a45
BLAKE2b-256 checksum
How to use checksums
4157225d1e1f733a30a22e03b65e70f025cdcc252f441aa76f5f37d8c39b87fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL sing_box_python-1.14.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 30.3 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
bd1356ed02d7811171cc469ecb477b87c30f23231b7792d46d8510e5d42d8504
BLAKE2b-256 checksum
How to use checksums
6454ded419dd7d31821861b2aa7a4dc57026534b3256ec362afd90dc3f57eb55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp312-cp312-macosx_12_0_x86_64.whl

Download URL sing_box_python-1.14.1-cp312-cp312-macosx_12_0_x86_64.whl
Size 33.2 MB
Tags CPython 3.12 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
ab3bd47372441492322900716f2bfc4f5d4b899cf0b412049fb07b77980617ca
BLAKE2b-256 checksum
How to use checksums
58758aaba8b3e272f703688fb1f48c39803ee4301edb402448843bd302adaef3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp312-cp312-macosx_12_0_arm64.whl

Download URL sing_box_python-1.14.1-cp312-cp312-macosx_12_0_arm64.whl
Size 30.9 MB
Tags CPython 3.12 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
548fda59761449b5acca6601f4d3c4abc6f9a60bc7ad9703408b643fe8144481
BLAKE2b-256 checksum
How to use checksums
24510f45d737677a8030caec31adef4f937078e815bd07f1448fadee7608540d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp311-cp311-win_arm64.whl

Download URL sing_box_python-1.14.1-cp311-cp311-win_arm64.whl
Size 28.2 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
51bb7ae088bb09e20ca913b1d63fd240c19b3bdc1bc3b87c6d72f0050bb386d7
BLAKE2b-256 checksum
How to use checksums
59ed08f620584cbbea3ff90f88f4dcb6e823f4534e5488c581af875ccd1da43e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp311-cp311-win_amd64.whl

Download URL sing_box_python-1.14.1-cp311-cp311-win_amd64.whl
Size 31.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
73600bd215e91eda948e09459d72a1e7b848a9b444a8f1a5ce7296c6a4a460e2
BLAKE2b-256 checksum
How to use checksums
0807bfeb26a1e636724d2c98f05bc7220a950b14af46282865337028a11c18d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL sing_box_python-1.14.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 32.8 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c396999b60ac5eff2b2f82c49b547e8a0c75d8c713537443adf3e3660991a685
BLAKE2b-256 checksum
How to use checksums
cd19b724c748f54f2b4b6ae5b480c8a0dd9e5503b3198e6df0c05293b01c4d19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL sing_box_python-1.14.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 30.3 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
db6072d10f951681487a24f397be2e9ddbef4fec0c45ed65330c4013a9ae8bff
BLAKE2b-256 checksum
How to use checksums
1cdb55c77e6d8207c32835b70602adcac4130b553cb88967ea629979ac6c3882
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp311-cp311-macosx_12_0_x86_64.whl

Download URL sing_box_python-1.14.1-cp311-cp311-macosx_12_0_x86_64.whl
Size 33.2 MB
Tags CPython 3.11 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
df9b251bf50401556fba293bc60a799e992b48dfcde113adc9fe864b38f15ac2
BLAKE2b-256 checksum
How to use checksums
7a623054a2c3425a245cd567e0d9734d5103acbf9ba095d006e737d716d40ea5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp311-cp311-macosx_12_0_arm64.whl

Download URL sing_box_python-1.14.1-cp311-cp311-macosx_12_0_arm64.whl
Size 30.9 MB
Tags CPython 3.11 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
b122e56f9be01f097dbba07242b34b631a2445987bba5a4afb3e3be04d92e900
BLAKE2b-256 checksum
How to use checksums
b471d069e9ff1b90a5e5d05e46230ed329b61809108bfbf6df9f06c504150a6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp310-cp310-win_arm64.whl

Download URL sing_box_python-1.14.1-cp310-cp310-win_arm64.whl
Size 28.2 MB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
6f44fcaacdc3483ec5a8cd72a47b3ffacf7f13231248e752f16763c5420e8e84
BLAKE2b-256 checksum
How to use checksums
2759399f0de30f1f3b7993daf9158f1319c40a6fa4634c539d2facde7c498870
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp310-cp310-win_amd64.whl

Download URL sing_box_python-1.14.1-cp310-cp310-win_amd64.whl
Size 31.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
50877960580b4b5f20cdf526e2df00bd19f142d6f7b645e34d7e3a01183721a1
BLAKE2b-256 checksum
How to use checksums
c75f6ce850df9fd5b147bdff97a2f7ab162f9005213f0d131ceeca1b51458764
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL sing_box_python-1.14.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 32.8 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
12a3b6e97052f4b76a2cb087a542464cefafcc48177ceacea9280db6dc5cfdc9
BLAKE2b-256 checksum
How to use checksums
0a4e738d45ebbc98f213e8a2e9cd49349028c41611aaef2ef59b3277c18752b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL sing_box_python-1.14.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 30.3 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6b805c9a5fb226515ab546529bca5a1efe898f4dadbb4bd6ee88bf812800d79f
BLAKE2b-256 checksum
How to use checksums
d97d8363dc7a874479a3b4cf20065f3103b90fa6e9cb71facd4e250dccc57692
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp310-cp310-macosx_12_0_x86_64.whl

Download URL sing_box_python-1.14.1-cp310-cp310-macosx_12_0_x86_64.whl
Size 33.2 MB
Tags CPython 3.10 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
05a1a6ee9f5efc2d6dba5701072c0a0d6a2c5c365e9d6c72ddb068c31b94a11a
BLAKE2b-256 checksum
How to use checksums
5056a1675d8569111934273beb53b171453d23bbdeb18ba8013718176c5cf5c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp310-cp310-macosx_12_0_arm64.whl

Download URL sing_box_python-1.14.1-cp310-cp310-macosx_12_0_arm64.whl
Size 30.9 MB
Tags CPython 3.10 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
c7323055d2178f68219305d7bc9b2ad449cdf517321838de2c4e5337e6cc431a
BLAKE2b-256 checksum
How to use checksums
366c0cc314c05b45d1fbfeba8b26337f8b6c10ed170264024f43229a1692b3d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp39-cp39-win_arm64.whl

Download URL sing_box_python-1.14.1-cp39-cp39-win_arm64.whl
Size 28.2 MB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
e55ac857e96af22ad969c91cde41ded780e8327a5f6eadec73e4988734821bf2
BLAKE2b-256 checksum
How to use checksums
e471c4bf6ba5b8a0f2bb403f1db022bd1fd3b42ac7956327d4b71377114b1b93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp39-cp39-win_amd64.whl

Download URL sing_box_python-1.14.1-cp39-cp39-win_amd64.whl
Size 31.6 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
3191e7209c0f78556830f9cf031d225140791f3bc0842e1c47be46d589266dbb
BLAKE2b-256 checksum
How to use checksums
236f80f73274a678713bc352132242a82686fc5cfc9722d7a796825ca3df425c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL sing_box_python-1.14.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 32.8 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1d88e8736dfba8255f9afbee7a3417a8ddfe68010db2413c190515584e9e05d4
BLAKE2b-256 checksum
How to use checksums
bd3070557244f110a984dfcb7899f6d2cfb43f4c0ed7895e8cfbc1748ef99b66
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL sing_box_python-1.14.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 30.3 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a696cf5c543f873d2c9a472f9f27e2d2dd3ce1582efdd40b872244b83aacf55f
BLAKE2b-256 checksum
How to use checksums
4b679aac2e14cf3f13bec65100d41177b0c9f48980f4035dfd6d8322a22fbf67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp39-cp39-macosx_12_0_x86_64.whl

Download URL sing_box_python-1.14.1-cp39-cp39-macosx_12_0_x86_64.whl
Size 33.2 MB
Tags CPython 3.9 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
0b4c074830ed631a88e1e72160ff5c23a0ae254019cef973b4ab2a74d02d149d
BLAKE2b-256 checksum
How to use checksums
f78ee1f70eccae7be9ff99c965069340a3d9368f55f2dde44ea9e10dd457f4cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp39-cp39-macosx_12_0_arm64.whl

Download URL sing_box_python-1.14.1-cp39-cp39-macosx_12_0_arm64.whl
Size 30.9 MB
Tags CPython 3.9 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
f048a6f3b39ab5eab948011d329f55f7f767d5a6c0e9a73655acdc01b825b48d
BLAKE2b-256 checksum
How to use checksums
023eae33607e4888fcad0afceaf449965f6bb2df3558472a503ea3c5a4a227f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp38-cp38-win_amd64.whl

Download URL sing_box_python-1.14.1-cp38-cp38-win_amd64.whl
Size 31.6 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
95db2b10ea688f11985d6b0bc5135922d94cfe0e41f0f48dfb5a1ddc5e60fa2d
BLAKE2b-256 checksum
How to use checksums
db5f83618eb302cc5b6e5f96558d914fd2d23f485b21ca846551ee471ffac241
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL sing_box_python-1.14.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 32.8 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8e114877247e0fc5eb94ac0bf8ce5ca1dec0b52628f2de47ce643a749f7920f8
BLAKE2b-256 checksum
How to use checksums
fe493b8324ae9d90f3a93a4a7a54f9c136ff7b74fd4952bcd1906059f3dcaf33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

Download URL sing_box_python-1.14.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Size 30.3 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b6e15c06866232fd4458bb01410a811f617d654fffd8ac60ac9aa3ef0ea0c54e
BLAKE2b-256 checksum
How to use checksums
04a50a2f04781cf6d38d265b7d2b484a296d13ee83eb8fd09dcfac47b620a28e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp38-cp38-macosx_12_0_x86_64.whl

Download URL sing_box_python-1.14.1-cp38-cp38-macosx_12_0_x86_64.whl
Size 33.2 MB
Tags CPython 3.8 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
b3fde4536527c878907ddd970f727ddcb51296c0f38b806b892e85b26fbce51e
BLAKE2b-256 checksum
How to use checksums
e640a29577c9f116a4a153de8eae344ca632f5cb7aad24319e7a789835a7a733
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / sing_box_python-1.14.1-cp38-cp38-macosx_12_0_arm64.whl

Download URL sing_box_python-1.14.1-cp38-cp38-macosx_12_0_arm64.whl
Size 30.9 MB
Tags CPython 3.8 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
c4e5e1e6324c013f3567234db9d4e2053d63a4693cdad7f0e14d9ee21f35cb20
BLAKE2b-256 checksum
How to use checksums
9183edc5073f361e300e0be98a40dcddfd63f45b8613509f402dab9411fa1e09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.14.1 This release

54 release files

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