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.2

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.2
File Size Uploaded
sing_box_python-1.14.2.tar.gz 2.1 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for sing-box-python 1.14.2
File
sing_box_python-1.14.2-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
sing_box_python-1.14.2-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
sing_box_python-1.14.2-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.2-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.2-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.2-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.2-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
sing_box_python-1.14.2-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
sing_box_python-1.14.2-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.2-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.2-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.2-cp314-cp314-macosx_12_0_arm64.whl CPython 3.14 CPython 3.14 macOS 12.0+ ARM64 Details
sing_box_python-1.14.2-cp313-cp313t-win_arm64.whl CPython 3.13 CPython 3.13 free-threading Windows ARM64 Details
sing_box_python-1.14.2-cp313-cp313t-win_amd64.whl CPython 3.13 CPython 3.13 free-threading Windows x86-64 Details
sing_box_python-1.14.2-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.2-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.2-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.2-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.2-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
sing_box_python-1.14.2-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
sing_box_python-1.14.2-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.2-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.2-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.2-cp313-cp313-macosx_12_0_arm64.whl CPython 3.13 CPython 3.13 macOS 12.0+ ARM64 Details
sing_box_python-1.14.2-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
sing_box_python-1.14.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
sing_box_python-1.14.2-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.2-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.2-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.2-cp312-cp312-macosx_12_0_arm64.whl CPython 3.12 CPython 3.12 macOS 12.0+ ARM64 Details
sing_box_python-1.14.2-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
sing_box_python-1.14.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
sing_box_python-1.14.2-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.2-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.2-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.2-cp311-cp311-macosx_12_0_arm64.whl CPython 3.11 CPython 3.11 macOS 12.0+ ARM64 Details
sing_box_python-1.14.2-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
sing_box_python-1.14.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
sing_box_python-1.14.2-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.2-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.2-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.2-cp310-cp310-macosx_12_0_arm64.whl CPython 3.10 CPython 3.10 macOS 12.0+ ARM64 Details
sing_box_python-1.14.2-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
sing_box_python-1.14.2-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
sing_box_python-1.14.2-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.2-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.2-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.2-cp39-cp39-macosx_12_0_arm64.whl CPython 3.9 CPython 3.9 macOS 12.0+ ARM64 Details
sing_box_python-1.14.2-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
sing_box_python-1.14.2-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.2-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.2-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.2-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.2.tar.gz

Download URL sing_box_python-1.14.2.tar.gz
Size 2.1 MB
Tags Source
SHA-256 checksum
How to use checksums
1d830a7b94044dd6872b9a3c7ba569252906baea096ce7ec4d9a43ba34b5ffa2
BLAKE2b-256 checksum
How to use checksums
cba618418615ddf40be0b1c7b5207a58db556f408fa602aa44861f3107a8a120
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
56f6027bf0b45f2380f9f6542e68bce7d3c64c429ded2530aa07e801272093f5
BLAKE2b-256 checksum
How to use checksums
c22cd062b120c9c97e0bc2cf35291f9358b61f61ad3c97f68a7fd1550629f734
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
62ea182ad27d10a9f855d7270109249d773beb5f3f1f9e76a917f56e1edcb9c5
BLAKE2b-256 checksum
How to use checksums
979dc80e3cc413e4b86a7171239d275065fe3c3ad40f50959832732fbd900283
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
18af223b5148ac3b883ff799b86b52a67f42646c2c9df4d5e74e95fb7b0c2209
BLAKE2b-256 checksum
How to use checksums
6470d6b3c7d8cdc8a7f3c21e29dafdca06bbeadda78802c51453c06e21f415f5
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
ed43226258bb4028ab8fe965909f920ff3cae1173c9d8589c2275b95b1f3ebf4
BLAKE2b-256 checksum
How to use checksums
6eeaaba16a5978e745be6b968f6ad6a55c67dde2d6b88bcaef6a0c29d2cca877
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp314-cp314t-macosx_12_0_x86_64.whl
Size 33.3 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
cfce379e1e9136666503c633871db11f2daa56c1780321236e95c849cdf19ee6
BLAKE2b-256 checksum
How to use checksums
83bb9e3c89a4d70b619090d12726745d99e1dc3343ccad2247719cd686a74562
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
9c048d4a432fc5948bb99d3c31d1f89ee9a839e1404db717a934b086628b5758
BLAKE2b-256 checksum
How to use checksums
9df3905beaeb1baaff9fa786978645b8bf2fcab91c81bfd37596d0a08171e697
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp314-cp314-win_arm64.whl
Size 29.1 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
64ba6a167b1fd658c23e4bc1ad5e7c60535466803ec51bb92281f4ae94d30c3d
BLAKE2b-256 checksum
How to use checksums
98db4e3946d18bf92077fa6b17bf98368f6b13bb46bfe06ce823572349e850fd
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp314-cp314-win_amd64.whl
Size 32.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
872ec174317bae61b218b80486c0dd971f3f4b25a3db6c325c3f72da3a1e0b37
BLAKE2b-256 checksum
How to use checksums
84666f04735921a4bed44bfb7ec5ed2204b9bc0a72fb4d040c8afa61b8fe97a3
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
103e0fcb4fc14b6c6499b1912f72bee8e9cc7b6e142fc8c3c4584397d6ba6382
BLAKE2b-256 checksum
How to use checksums
52bb2dfa288c94f3f59ea8f54886622ff0656e094b302e5bf8173cf93805f268
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
ed16fe45da34af53e46d30496598fda0eba292c2a99655c90453f84707f407ed
BLAKE2b-256 checksum
How to use checksums
acef015c7af666b824de22c63e1821a1d2ee149ec47881c386d3bc485752b168
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp314-cp314-macosx_12_0_x86_64.whl
Size 33.3 MB
Tags CPython 3.14 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
bd3287ad0e990e0e77eff2026643a56db16f1a193c58d1dc4c94b4944ee1129b
BLAKE2b-256 checksum
How to use checksums
130208025ce6eb6b041496bd0f0fe5043c6305bd65ca14ffa04f429275359f88
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp314-cp314-macosx_12_0_arm64.whl
Size 31.0 MB
Tags CPython 3.14 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
921f83c098885ade7c02744f1449484d9ab8d001d0692b9e8db7faa040bff30f
BLAKE2b-256 checksum
How to use checksums
532063837d4c8d82499dd1648845e2b5f42cad6e4240aaf4f3aed196c52b97c6
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp313-cp313t-win_arm64.whl
Size 28.3 MB
Tags CPython 3.13 CPython 3.13 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
81d9b48ecc5cdff59dc2f9d1b2941adc9ff83d016bf6c529e6fbec8a9076a612
BLAKE2b-256 checksum
How to use checksums
069f2a33679245439be000eab8827db06af9765327f3c85267dacfe574fef062
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
a514d75d0dee563172b160d382bfe9eb0f613d89321196819f85634529d077f1
BLAKE2b-256 checksum
How to use checksums
642837c5f0bcbbc21f27411e5419a18a8dc5c4bf868fe79b2632ad6b7d84a8e5
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
b44bac7d81076175bcae893e889d99a20e8d06160f98a5ed4399cb80eacc0524
BLAKE2b-256 checksum
How to use checksums
69a8f356fbc8d64339136a1f13f7dae1812f4b4909b3c3f228d5c221e6d387e3
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
67c223b6a5523cc658afb9de20620377f51b78da96c8ec491194f14c01bf84cd
BLAKE2b-256 checksum
How to use checksums
d778159a51882d7c173f977645c1ac0ebd5bb2e256e784929e9cd392cf7e6e13
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp313-cp313t-macosx_12_0_x86_64.whl
Size 33.3 MB
Tags CPython 3.13 CPython 3.13 free-threading macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
bbfbf412b8a685c6f32a266044dec40f2521f59dfce73b7f176e6a577f0a4c15
BLAKE2b-256 checksum
How to use checksums
eef396569dfacb224cfadbb313a27de108b43fb3b4959685f6131599679a6152
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
ce1a8ffc8e8bd7547b5591d78420214ddb02ba6c898e0ef017d27ff4c2ece9e3
BLAKE2b-256 checksum
How to use checksums
c6489359fc643db2beaa339272a08504b0e8e6731f0c11acd950f1b178617b85
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp313-cp313-win_arm64.whl
Size 28.2 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
d1f6f759f20834d388d64a78cd8a1efa371fd985970a63a63af19987df127e1d
BLAKE2b-256 checksum
How to use checksums
fff2b99aa65715042f8004ca4503c9cba52749b7a35d454bca3a23161b2403d8
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp313-cp313-win_amd64.whl
Size 31.6 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
df081672658eb290d64df3bf7c934a673cdd7d36729f28355c3010faa0219982
BLAKE2b-256 checksum
How to use checksums
97450ddd57865d0639887b11322b4f8117ac8121121f1b653c7a8c5d613134d0
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
666b8d8ccc545cb3be8f1987297d5ed60026f562b8000083d7a17687e228f41d
BLAKE2b-256 checksum
How to use checksums
ae44650f5685fe58b7b66f20823976f47abedc353ee67122dceaa2dd01607ae8
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
4bab8d8ea30f647f5a63b5abd86f21f54586649efa0190aec0a7b9c509fd02e2
BLAKE2b-256 checksum
How to use checksums
a417a5c773d0417dec7a7b29b24a5258e0b4b4ea0feb9a98eabfc00a31dad1e3
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp313-cp313-macosx_12_0_x86_64.whl
Size 33.3 MB
Tags CPython 3.13 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
1bdfb41c6428d364940147e25ea60292631ad4c23c2b3ba567326fb29277a8ce
BLAKE2b-256 checksum
How to use checksums
721ba5952281b8413547989420e9b62cd5169c814011ea27f784279ec8a4186a
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp313-cp313-macosx_12_0_arm64.whl
Size 31.0 MB
Tags CPython 3.13 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
e2cb5545d4f4d2bc5bb96937ae8a09c8a7066809e1d8c818be7f813dd7f18843
BLAKE2b-256 checksum
How to use checksums
b063ba4352b5aae08befeab79fb1f34040c4b25e66bd366d3ec71e97e2451d2e
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp312-cp312-win_arm64.whl
Size 28.2 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
025427e8ce029562af9535c6c31e6da5a6592058565af849bf86754fabf2ac77
BLAKE2b-256 checksum
How to use checksums
e33d8e569b55c26f984b94f096142a4794081ea510dfb006f0a75282e6beb216
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp312-cp312-win_amd64.whl
Size 31.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7349426f32030d726426cefc5c771883f06362ed822774aef4a0d5f075c61dd0
BLAKE2b-256 checksum
How to use checksums
25783e0893fb4355a88d11398e596bcc5cdf9ae41f79db7597d445c8c4f9f461
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
bedcf53f8e6f15c0938982aca666d7fbccc3956049ccf32c2f943f40f93c6784
BLAKE2b-256 checksum
How to use checksums
f4a79b9705b32b5f79a971d23e9dc98baa609ad399a89d2c92771681edd5a2f7
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
cab8be66698fd858bd58ad7806c35a8a807d79a8df9a6143c74ea3aba4c9232e
BLAKE2b-256 checksum
How to use checksums
e225a0d715886147485645715561e351d45f324790783ad73973e294add00b6f
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp312-cp312-macosx_12_0_x86_64.whl
Size 33.3 MB
Tags CPython 3.12 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
6aa9a5c394908611eca2aac25a1b0154e35a33c39eb4bd4a3b94e03af1cfc2a1
BLAKE2b-256 checksum
How to use checksums
44cc5fcaf8060fc055e7372c015147fef0f26553ae74f40a76cb7b8bcdad5be4
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp312-cp312-macosx_12_0_arm64.whl
Size 31.0 MB
Tags CPython 3.12 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
d5b283eaf06794e3d1de8f7f39463e9966276acfecc6b4f8a79f079e369cab54
BLAKE2b-256 checksum
How to use checksums
66d90cacd548a35ef5408204ac13cbcd629f5968b072bc6e45bdc58b23301e70
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp311-cp311-win_arm64.whl
Size 28.2 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
c0bbcbcb896c9ead0a2fea1ec82f6c3caf6a74b33d8f5261260240f68a9a9fb1
BLAKE2b-256 checksum
How to use checksums
10a51e3129e69c0dde40fe0d9b9be153f5ba899ec4d0da8c3d3856f86978fa5b
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp311-cp311-win_amd64.whl
Size 31.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d2d6626dd56b9f66862a4b011b08b154c65dac441d2c628f5cfc9455e34d4bd8
BLAKE2b-256 checksum
How to use checksums
7d1516d1a0b742c2241d553e0f8f75ade711d89c529b93a724c3191c552f7798
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
eeb0ad02f825a7bf092f55166429fb276b333ff6314d9b3dd871efdc5c8bb988
BLAKE2b-256 checksum
How to use checksums
515d1f3aa80da9317585cc050dc83a2d20ab5a7c3337c3c5f9ee54645887f89b
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
5b5841453bbecb4450044b3d643eb139a1597c1a39e2ad58fbba0167f4a644df
BLAKE2b-256 checksum
How to use checksums
ef2411ddc9d7a408e1d440d4f9f264fb39e73b0bd8afc181407b5e81962e1b08
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp311-cp311-macosx_12_0_x86_64.whl
Size 33.3 MB
Tags CPython 3.11 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
983b43e7dffd68110d189bff04d6d644dbb388843ed03f0d3ff118f0f0731cc3
BLAKE2b-256 checksum
How to use checksums
5e2c4c68e13149860ba7a1108f54a01e0efe89a65f9c05db2b25e1a4556ba469
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp311-cp311-macosx_12_0_arm64.whl
Size 31.0 MB
Tags CPython 3.11 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
21c0b10a972a08a2564b7d8a0299bc3069fc3a788e00ad31939262bf456a0c93
BLAKE2b-256 checksum
How to use checksums
70d82893c64a0f66db43f464961c03967e07e5446db72e5438896731fb390865
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp310-cp310-win_arm64.whl
Size 28.2 MB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
d9da0458d941ac388acbe9dd25669e245d2aa49d5af971e31132d2c2f99a0bb8
BLAKE2b-256 checksum
How to use checksums
99990b6d19cd837abffdfd1a8ce74758375c31334d60e49dc497b57228f72b03
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp310-cp310-win_amd64.whl
Size 31.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
7a802221ef4a76ccb86c22991ece4a47bff7c16e66358afcea2183ff433b3191
BLAKE2b-256 checksum
How to use checksums
60e0f029d20d357ef100812545ccd4f0696d76dd43fb29d8eea68a27a6f00ff8
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
0366cfcd3cfa4c7d9a68f94ef4c911077021bd4aaac3dc48a2f61fab42baccbe
BLAKE2b-256 checksum
How to use checksums
8c831fafe7fe3821807acee6593d7e309074c29dbdebc6e4aea6769beffcd185
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
2176c44aa14b74afe8c90ce47ed0dbcf45191984064d367111c4fa3f6d497da0
BLAKE2b-256 checksum
How to use checksums
e2fad6332d519f8c0b9fa79ac1bdfc31369076f8254f05fbf4a0201dc6561fb9
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
0ec35ce7f8ee9c13c9e976c7b604ed20c25309bbca98dcb92e38f2248c4ccde4
BLAKE2b-256 checksum
How to use checksums
d2bfa097e58d9705b594a1dd9468c952e41c30be310694fe9ff36e14a6d903a2
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp310-cp310-macosx_12_0_arm64.whl
Size 31.0 MB
Tags CPython 3.10 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
c3f0ea320060adc67891b85449b7b52978cd520b2c95f09d38ab52ad1a3102bf
BLAKE2b-256 checksum
How to use checksums
c5690d8c35cbfcd42559690e4b8692eb9b67c983188e91ce1842fda349d3d312
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp39-cp39-win_arm64.whl
Size 28.2 MB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
8f9266bd16939467def8defef16e72415b13568841ba91e4b9ba58bb4d95c5e5
BLAKE2b-256 checksum
How to use checksums
4cce4063f6c7a6884f513488d00461cf1212c4bf81437548fcd034ac6e65e6b3
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp39-cp39-win_amd64.whl
Size 31.6 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
499ed2680fe23e3cd516859c6be662d63fb6564b43f4f385716a341410c7758c
BLAKE2b-256 checksum
How to use checksums
a359e8a0e47ced7d89c7a490c4c828b9e98e8e7a4fa2c62f15d9e49f8433d7b0
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
a67ca8fdafcf60e2733918cf28693f8dcc52b8afe266f1a361a43f3fd9c86426
BLAKE2b-256 checksum
How to use checksums
31fc955c71aac36b1383521d74a5dffeb0084a6f8bb417f134a8f21a13df154f
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
e50958892d570e957d770c2172bd8f939c0810b97549e8904989e879d855a59a
BLAKE2b-256 checksum
How to use checksums
0b9b949b51f3ad8b0787b89eff04369a114d64f713aeefe0f832050a4d432691
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
d30d4d720c63ac929766a3de7da9c08a883962577b3507faa96be7ff95ba0df0
BLAKE2b-256 checksum
How to use checksums
79620289711313f74afeff1fcf2859c96ff2a53e5519f5aa72660986017d80a3
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp39-cp39-macosx_12_0_arm64.whl
Size 31.0 MB
Tags CPython 3.9 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
1dcab8ddfe40633720abb9a97b0d397d63999a63c34674889b5a444692c9476e
BLAKE2b-256 checksum
How to use checksums
bf2067559c03b18745f0118e9517683e17d85d2cc22369a2250cee67ed8f4ea2
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp38-cp38-win_amd64.whl
Size 31.6 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
446644da915c938bee5a5099a508723fce5276d749132cb23d53410cd6a83e49
BLAKE2b-256 checksum
How to use checksums
7c48a521524cd31fd356a6866ac61776883ac264e2b750d9f190555b971d6407
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
836096d5fc77ef61698c0e73649edfe2c98807fe45e3e4599fb4492e00359af4
BLAKE2b-256 checksum
How to use checksums
45acc237f2e2f599c8495cd66522f74d5648843f64f4071998baef17777a7a9b
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
2e720b5624a2e52ab7d335f989520c23b44864572556cde9c5a31b4a37373dc6
BLAKE2b-256 checksum
How to use checksums
05e89f92a4be22a4807800e420cf3d4e33b842e19475c3eb263c521e30525f3f
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-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
90da7d292b2e0280f60abbe99cbf9a4dff2d83b1a92422ade1361980c7968583
BLAKE2b-256 checksum
How to use checksums
a9f7c5c6aa6294bd883fa2f7c546e6112cd4504625dd383e68bb91050ebcd911
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 24, 2026.

Transparency log

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

Download URL sing_box_python-1.14.2-cp38-cp38-macosx_12_0_arm64.whl
Size 31.0 MB
Tags CPython 3.8 macOS 12.0+ ARM64
SHA-256 checksum
How to use checksums
96dc208f8c0e118e6fcd26a26bdb48e581808725192420289af3251138d8e199
BLAKE2b-256 checksum
How to use checksums
d58be8a31ca72100e965c388f1cf54d5490aa5ebf90d4b912d44183ab4f812e5
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 24, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.14.2 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