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:

  • Go 1.24.7 in PATH.
  • A working C and C++ compiler toolchain.
  • MinGW-w64 on Windows x86-64, or LLVM-MinGW on Windows ARM64, with 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 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's clients/android and clients/apple Git submodule links are intentionally not vendored because they are not used to build the Python package. 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 daily 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 synchronization script checks the current vendor tree against its exact upstream tag, fetches the requested tag, replaces only upstream-owned files, restores the two binding additions, updates UPSTREAM_VERSION, and verifies every vendored upstream path and Git blob. 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 commits chore: sync sing-box vX.Y.Z to main, then explicitly dispatches the existing build-and-publish workflow at that commit. The latter builds and tests every distribution before creating the vX.Y.Z tag, publishing X.Y.Z to PyPI through Trusted Publishing, and creating 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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sing_box_python-1.13.19.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

sing_box_python-1.13.19-cp314-cp314t-win_arm64.whl (23.1 MB view details)

Uploaded CPython 3.14tWindows ARM64

sing_box_python-1.13.19-cp314-cp314t-win_amd64.whl (25.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

sing_box_python-1.13.19-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sing_box_python-1.13.19-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (24.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sing_box_python-1.13.19-cp314-cp314t-macosx_12_0_x86_64.whl (26.8 MB view details)

Uploaded CPython 3.14tmacOS 12.0+ x86-64

sing_box_python-1.13.19-cp314-cp314t-macosx_12_0_arm64.whl (25.1 MB view details)

Uploaded CPython 3.14tmacOS 12.0+ ARM64

sing_box_python-1.13.19-cp314-cp314-win_arm64.whl (23.1 MB view details)

Uploaded CPython 3.14Windows ARM64

sing_box_python-1.13.19-cp314-cp314-win_amd64.whl (25.4 MB view details)

Uploaded CPython 3.14Windows x86-64

sing_box_python-1.13.19-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sing_box_python-1.13.19-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sing_box_python-1.13.19-cp314-cp314-macosx_12_0_x86_64.whl (26.8 MB view details)

Uploaded CPython 3.14macOS 12.0+ x86-64

sing_box_python-1.13.19-cp314-cp314-macosx_12_0_arm64.whl (25.1 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

sing_box_python-1.13.19-cp313-cp313t-win_arm64.whl (22.5 MB view details)

Uploaded CPython 3.13tWindows ARM64

sing_box_python-1.13.19-cp313-cp313t-win_amd64.whl (24.8 MB view details)

Uploaded CPython 3.13tWindows x86-64

sing_box_python-1.13.19-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sing_box_python-1.13.19-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (24.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sing_box_python-1.13.19-cp313-cp313t-macosx_12_0_x86_64.whl (26.8 MB view details)

Uploaded CPython 3.13tmacOS 12.0+ x86-64

sing_box_python-1.13.19-cp313-cp313t-macosx_12_0_arm64.whl (25.1 MB view details)

Uploaded CPython 3.13tmacOS 12.0+ ARM64

sing_box_python-1.13.19-cp313-cp313-win_arm64.whl (22.5 MB view details)

Uploaded CPython 3.13Windows ARM64

sing_box_python-1.13.19-cp313-cp313-win_amd64.whl (24.8 MB view details)

Uploaded CPython 3.13Windows x86-64

sing_box_python-1.13.19-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sing_box_python-1.13.19-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sing_box_python-1.13.19-cp313-cp313-macosx_12_0_x86_64.whl (26.8 MB view details)

Uploaded CPython 3.13macOS 12.0+ x86-64

sing_box_python-1.13.19-cp313-cp313-macosx_12_0_arm64.whl (25.1 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

sing_box_python-1.13.19-cp312-cp312-win_arm64.whl (22.5 MB view details)

Uploaded CPython 3.12Windows ARM64

sing_box_python-1.13.19-cp312-cp312-win_amd64.whl (24.8 MB view details)

Uploaded CPython 3.12Windows x86-64

sing_box_python-1.13.19-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sing_box_python-1.13.19-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sing_box_python-1.13.19-cp312-cp312-macosx_12_0_x86_64.whl (26.8 MB view details)

Uploaded CPython 3.12macOS 12.0+ x86-64

sing_box_python-1.13.19-cp312-cp312-macosx_12_0_arm64.whl (25.1 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

sing_box_python-1.13.19-cp311-cp311-win_arm64.whl (22.5 MB view details)

Uploaded CPython 3.11Windows ARM64

sing_box_python-1.13.19-cp311-cp311-win_amd64.whl (24.8 MB view details)

Uploaded CPython 3.11Windows x86-64

sing_box_python-1.13.19-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sing_box_python-1.13.19-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sing_box_python-1.13.19-cp311-cp311-macosx_12_0_x86_64.whl (26.8 MB view details)

Uploaded CPython 3.11macOS 12.0+ x86-64

sing_box_python-1.13.19-cp311-cp311-macosx_12_0_arm64.whl (25.1 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

sing_box_python-1.13.19-cp310-cp310-win_arm64.whl (22.5 MB view details)

Uploaded CPython 3.10Windows ARM64

sing_box_python-1.13.19-cp310-cp310-win_amd64.whl (24.8 MB view details)

Uploaded CPython 3.10Windows x86-64

sing_box_python-1.13.19-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sing_box_python-1.13.19-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sing_box_python-1.13.19-cp310-cp310-macosx_12_0_x86_64.whl (26.8 MB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

sing_box_python-1.13.19-cp310-cp310-macosx_12_0_arm64.whl (25.1 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

sing_box_python-1.13.19-cp39-cp39-win_arm64.whl (22.5 MB view details)

Uploaded CPython 3.9Windows ARM64

sing_box_python-1.13.19-cp39-cp39-win_amd64.whl (24.8 MB view details)

Uploaded CPython 3.9Windows x86-64

sing_box_python-1.13.19-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sing_box_python-1.13.19-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sing_box_python-1.13.19-cp39-cp39-macosx_12_0_x86_64.whl (26.8 MB view details)

Uploaded CPython 3.9macOS 12.0+ x86-64

sing_box_python-1.13.19-cp39-cp39-macosx_12_0_arm64.whl (25.1 MB view details)

Uploaded CPython 3.9macOS 12.0+ ARM64

sing_box_python-1.13.19-cp38-cp38-win_amd64.whl (24.8 MB view details)

Uploaded CPython 3.8Windows x86-64

sing_box_python-1.13.19-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

sing_box_python-1.13.19-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

sing_box_python-1.13.19-cp38-cp38-macosx_12_0_x86_64.whl (26.8 MB view details)

Uploaded CPython 3.8macOS 12.0+ x86-64

sing_box_python-1.13.19-cp38-cp38-macosx_12_0_arm64.whl (25.1 MB view details)

Uploaded CPython 3.8macOS 12.0+ ARM64

File details

Details for the file sing_box_python-1.13.19.tar.gz.

File metadata

  • Download URL: sing_box_python-1.13.19.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for sing_box_python-1.13.19.tar.gz
Algorithm Hash digest
SHA256 23dd5babc942e6c6531163ddaa19c3fd351f85d8da432e2addf2f4b53c093f04
MD5 76f038918cc5e8fd598803ada4c9008c
BLAKE2b-256 b8ad33e87396a9c14acd21caaccb3514026fa653b5c5bf2fad99a970a83844d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19.tar.gz:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b3780e5c8d2feb88791b2d3290910bd2125add994c08438eda9aba80a692eeea
MD5 0dde969a08e99802c0704f214ea6324b
BLAKE2b-256 78f624211d2e575845c96c232191d7252e22aa8b5b3cd94c4813953e00f4e95e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp314-cp314t-win_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 065236601af0d08deeba6c1aa8e1d38b51940d95e6b75534515ed2c641c9aca0
MD5 2d02d0d54cbd8a04181811e0c26ad2d5
BLAKE2b-256 9f5aa31d9b8165fc5aa6b43b9a497e543748a15ecb0f483ac8474ccdb44d7241

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp314-cp314t-win_amd64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 393ac4ca1e358332aea984e076954f5d06ac6315142bb869f3f24cd0172dda49
MD5 360b542ade42236ad084306f13730fc6
BLAKE2b-256 fba79b373537c57b8a5df89cba9e75734759614234d45aa922acbdc939990f2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ad3ac2ba7ae10a7c1bec9d7ee3926d83d6dea024e8b1e8a69eb7c15fe61928b
MD5 5a7a73152dc51e4bab0dcc83e3e95a05
BLAKE2b-256 e65f33470f3ea04c3d1ef79cb96c8641db9a832d0213c62bb8c373988e2a8e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp314-cp314t-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 766585095d65e39c629032b2289bb1ddad3218dd7a9fc5adfe25540a2017bf9c
MD5 86e6dc98e642e5aff39a9ae3ee886ab8
BLAKE2b-256 2ba2422ba1ce56c76e4c697c40a88c58aaea4cd3d7045ec3f74d9ae01c5b544f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp314-cp314t-macosx_12_0_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp314-cp314t-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 44978ef32a53f5890b279dd1a7683c1af5cf74f2fd9fea638da0407ff1a21cbc
MD5 525d073c006ba8c2356c38d0a1f98d3f
BLAKE2b-256 f221891b9e4ff4e4ff91019a39ec92b64ccc9656b63ce878e4e0764c1936cfbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp314-cp314t-macosx_12_0_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 72ba723cbb50dc6f00b125ea9d4202896ad840eb565421c1967317b32a829f14
MD5 7c4750b95ae23441fc2ec8ca969300c1
BLAKE2b-256 7f51ef9b2e03fa33e0e0e5ea692b9a07a86ae3434e5c4c6037e6841c3d5a6299

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp314-cp314-win_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3e5c258105445accfc507c9678d7053d29d69668d500c42f47f7a0f1122c536a
MD5 5d471b3f398eb6ad34becfcc75a35244
BLAKE2b-256 7d4bed315d87e783e874351121d5330fdeaac36fb5d37cf0c2da57b7717694cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp314-cp314-win_amd64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40bcfa581c1350814ed498faeb0c688f1af524575c33716839d3b8efe8e404db
MD5 ec06fd50c6415b86c2708a9379ae5232
BLAKE2b-256 2b50e159c2e1790ab4fae429909f1aa6dc3308232615e8d55806cc9d52764e73

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62ef62870cf6a6172ef6f7d0895cd15714572b2415328b171fc0eaeecd681e50
MD5 94791c55243cb867ad4024674674478e
BLAKE2b-256 6a4f15e25eda9bab7b1eca9a71616e4bf998f29c7a713b82f75bf0b3f03f3f8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp314-cp314-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 ab8f9b78a8c4ff3836c26231ac98c23ca870d49af50fa70f1e9187f089049e52
MD5 036c33a8f0a4ad080dbd1e04dc3e56bb
BLAKE2b-256 d38014e219e12215abf154fbc0f15ea5e0cedc3de0d52d452fb6db03330e7cb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp314-cp314-macosx_12_0_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp314-cp314-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 6be986e504f3c2e6c13327e9e1716877a580497d1058bb72c07b1510757435c4
MD5 01d3387d35f5bd97ebe1ea31df4f4a0a
BLAKE2b-256 b6e499fcb516151aa52d92aaf8c545448e770cc5b1700d04337707f3f0138a50

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp314-cp314-macosx_12_0_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 6555f6167f5e3bd20f08864485f06a8ebb28447985328a45f42c61ca632975ba
MD5 3b9768725001deeb9bb55228ba68ed5c
BLAKE2b-256 6f62dfaecc0ef6807361d80460376f008ce40acbe01bc07bea95ebf2cd289fd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp313-cp313t-win_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 f4f8330be8c8a9f4d0ca1d5078be05feeb64846295d375e14e71f3a442402e44
MD5 721f7df28f5324d4cc265f02038a3410
BLAKE2b-256 94a535518506d1e84bd543ac0c63021cbdddcdd842c2c9ab55b374dc88815c84

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp313-cp313t-win_amd64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13357c9e608d2c06766c96f5f6c9eb5ae9f0feb005cc80fe43a1c7061e645304
MD5 5ada774a0eee80d4760ec9c19deab048
BLAKE2b-256 3dcee50e18d62455b85020711e387767b7efc1126170225453c8f03418d845b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f910b991fcfb31adcb68ebb2e17de2eec7fe956223eb308b7efc06b2868d394
MD5 329a12c64c7cc87ab3ddc691a3f42d0d
BLAKE2b-256 456bfa4397f2a30fa0a06ea3b393bc97e3b34e0b44cdf5d487639a9c062b3366

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp313-cp313t-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp313-cp313t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 68904e34d9d47a22c907ed74653d183e51f5b148833c195881c490867543519b
MD5 169007db07e11f9f4ebed6a829f064cd
BLAKE2b-256 1c6322061f3d4c12cad8716d2f9827d597115a92dd0fa03f4f9f73930927bdf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp313-cp313t-macosx_12_0_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp313-cp313t-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp313-cp313t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 9f376514d7d687adfbb6595767315004281c865c9c1fc1c4c83fab3e203ee62d
MD5 0b8680d050e22bf636f49bbd1d739907
BLAKE2b-256 310e6f787580053d96e2db87631f410d048f7a6ed833765daca2b267270748d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp313-cp313t-macosx_12_0_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c23176cfbd29dd185323a8823cae28f680295860f17d5e0eef9c98d39229591b
MD5 cf672cd434f23bfc467cfb421c88c4f9
BLAKE2b-256 15c5899e78ed9ddc425f838d15ba14593ef1f7d8985f7bcdecdd97577b7aadb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp313-cp313-win_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 846dcb928c700586b83eaa5a2188b28444db00210c8e8e7b4ec43f111ccf3e3b
MD5 5804b5f9f40d65abf8d45424f33e2d52
BLAKE2b-256 18d5c5b1702ea035db7724f7c647f3efe5be04bb28085f7067e7f0b211e4efd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp313-cp313-win_amd64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f81392a5fe6ea4ba45c7a370afbb9c679765407ad7a4b3d39fb93143c95345c7
MD5 6a25a28e6edb556779a804dc22e756e9
BLAKE2b-256 71e5b565167e2b3781601eba06ef8129ea3aaf9b9ff49b71f97976ee08b41e47

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2db3c4dbb0fe06c440266c2725454de7468daafb7900d3478b88d358dd37e4da
MD5 b0755c74e1f11a5ab217f9670f504594
BLAKE2b-256 67bc7d1b4bbb3b5193e8491b39b840ba6bf1e8e9f479648719ff0490d04a5152

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp313-cp313-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 66ca7e14e46d3200da5691de15a91b404436d1cb5f22974420c03703ca2bb253
MD5 13e7ec36444be59fcd4fe6da843ec04c
BLAKE2b-256 1769c73738c374e118ce4094b161f9ec35b9dcd3ef59c4508567d93c42c508b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp313-cp313-macosx_12_0_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 8b9d338c27d398b6c66cc67eaabf34909ae7babbc2cbf13723bc1186fff1aeaf
MD5 0471c5c3536764e9f035f6ce015e247b
BLAKE2b-256 17d48de954963f6454edb1265d537b26c106cf10081c56a9dc976fb210c180ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp313-cp313-macosx_12_0_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ad5adb4c7bf268af8028c52ea7a3edd0eab8a834460624959244f8aca672241e
MD5 79175f4e537a22874d25977eef4f641b
BLAKE2b-256 5b5101b53e4b541a028f502b73bcff9a83d8175b01726103aa3a15825460601b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp312-cp312-win_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9381bc74faaaeb72cbea2930e314eda4ab9d69034b96e40fe4f45c51b2f257fe
MD5 8ccb89655f3253fe0fde24a199c5de0e
BLAKE2b-256 93a24ccf10296c82c79ffe714358e23a22e8bc3ff0263546048557244832319d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp312-cp312-win_amd64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64a695acde8daf5506851b5f5a6662cd7f3b085039fe88081cacfab6db02e123
MD5 38c1a70e0ec9ac312902b78de95e202c
BLAKE2b-256 9236546a5cc297b15bd45c6e54396e5a6fd817cba3736407104ff2fc99154711

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ef597d407cf4e22a07e381ec77b35edd7a64e1f97d584fd1735c8329f0d8ec2
MD5 a50f74ac1f616b8319fd01deed8ad2ee
BLAKE2b-256 3ce419ea231b7d30a9dab276c830e0924162497de747686503f5f4fb9afb22cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp312-cp312-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 1e0e51ae712c744790e423f18850235eef4c2e596ee836a53cf9a6589bdfb5b4
MD5 bf4d230f087dc0b47e5cf01e811e276b
BLAKE2b-256 c0491d3e4b2bc56cdabce0d2486da8fa2360f71103a5971ecbba7a97fa728e82

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp312-cp312-macosx_12_0_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 c96eebc26889b24e9ed7fb52deeaa451c72bc50cdeaf7485d4eb2107c07c4f45
MD5 0b09ef2808589707848c60b1ce9fdb4e
BLAKE2b-256 9245a9fc6afc0fa072a0c7a404daeb46d43f8eb35d1444c535b200ec5f17aea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp312-cp312-macosx_12_0_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ded9e3440a4a17db7b0095c17576890ad169fb4b9686ed2d9acced67786329b6
MD5 54b4cf18268dcc89e6cfaf5886b68b59
BLAKE2b-256 704a27c731f29c5e12f22c3ff12384d6a70f6a6182d14e8a2aa5b69101b1f4e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp311-cp311-win_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 327516f3f9a912afad6a186d7be42091cf047b0db452044d98dc47e5391f1793
MD5 cd5721d07b6d0fe6ae88365f2dc6b6b2
BLAKE2b-256 5b6aa8cd6ba5d018b8c94038b532fb0e6dcfb9dc390a6b5277d623f553cbefed

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp311-cp311-win_amd64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97530761839657f7c660fdfae76fc63e59cdbb19dd26e20206473dbf9dea9f78
MD5 5b26c75a8bc06f308a05c7949daa7c04
BLAKE2b-256 fcc959c27146bfa51d4e10680b4e115ff44e1c5cd5c444139030e9d415ef3fc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4ca984d908f43e5c9ee7bd773eaa84aff3c7f6e063681e4f64a668a6471b023
MD5 2aa4853c409d03d40c19d028779f39d3
BLAKE2b-256 41031100c894e7b864c4d39c7d2b60929f4c301a0dc33195a0fe617ee0971c6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp311-cp311-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 3d49b3e68cb63aba5a26ffdb667e27be9604a894261afae5fe1c8c31e23c65f9
MD5 3101705225a923313641b8e264daa76b
BLAKE2b-256 76032c99a92a4c0b100428a579066d531b431647fa4441c42b1285baf064aaa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp311-cp311-macosx_12_0_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 466e3530d72b781d531eda94a78271cde1f5787ffeaee7262c42841a4994caba
MD5 782114ccae26f5cca083bdc27d0ca512
BLAKE2b-256 77b04257c773f69b5455d03620432583c95005c086ec854af2354c520601a8d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp311-cp311-macosx_12_0_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 afbe2d33f78ea20d0d2d7af72d30521e93e4d60fd8b2be0db562f20639cc766b
MD5 e71d73971e522e9bbf3d5863bebcac7b
BLAKE2b-256 24758f907dac7670ba628e1bda2ae60dd1d27c87a8b997e7a0a49a91f98359f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp310-cp310-win_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bc2a799564e961cf32c7648a69577332ddd765ed89cce085a19991948bc762e1
MD5 c3848563d3cab6ee993426bfa4b9039e
BLAKE2b-256 421769bcd0c36c0ebd52cd246cd2c3e1d2debfbeb410a5cf43ad5b523f01bb44

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp310-cp310-win_amd64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df24a0381568049f44ac867d6d8522126c7335130766ff129d1ff1ff8e45765f
MD5 521f194a49de25f9e620e035ddb98ef9
BLAKE2b-256 36444d31f7b28146425fc0de0c5f7320579f7f97da445dd4d1560904f296acc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b2d7fc174e3a4f2ea5f91961e99c95654539f02e7db45739b0278766aa33d56
MD5 081bacf72edd2802f68085166ddbd771
BLAKE2b-256 c29ba57bd81b810ab0b7c1c83600db7a85ec3b5cef03d7dc7795f561a436bb1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 cb62ddd33ce75392d9634d593c7da3d2675f58d0d53ca4b8c21600d0af3f37ad
MD5 9b8566fc58fd0378ed93b991ce55702f
BLAKE2b-256 656b7dc92e384264d9de87d5fceff40e85a96247f47a6f135bcdbdbea0871577

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp310-cp310-macosx_12_0_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 9be8b5fd65c3e45c08ff6e3ce966bb41378b659ac2cdd6911fbc2233afa99f03
MD5 64ae3f9f4db0b4dcea6294a7fbcf98e3
BLAKE2b-256 d54731e91dc3e54e64b82e38330d3fb65307018083dc9ebc64c8feb99483a4e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp310-cp310-macosx_12_0_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b8c3cae04b6862fec230db7aacc7a5ca7ebb5f6063e28ad6405fd5ee840f07ca
MD5 6520d5441f4609680600c9756598db31
BLAKE2b-256 4b36eac0c8305c8b91b979112ece02b064996bc3e63f11fccf578609ff7a3a7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp39-cp39-win_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fb8f419d56a967dcf8f54d69dadd6ec080e11493c8c626c55929e7a5a366f6bf
MD5 0009f95b4d0a44de26dbcd4188976452
BLAKE2b-256 a7a0e62ea1231c72e63de8c5bd1f4333d7b110e1ffff3d88e77012f983b76c64

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp39-cp39-win_amd64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f88d6f0eb111700e78578f27712ee452e31fc826299c246c72b93075b9ff363d
MD5 6d7aae253c05f619cdf15148b05ab040
BLAKE2b-256 1eab088a0b2577dd9509e07cf320260abb1a6b3db827c7066d69e2c6f02ab6ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aaa4504b21aec8446f5e5789120a90c9434375667b71d0ea1d317a00c5b2ca4e
MD5 ecc16f07245b69e42d4faef8b443707b
BLAKE2b-256 d0a2ba5d43736783850d57f235b12ddd5221031ec34bf42ed6444d70656a93f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 63fc41e27bfa534a239598666949c16e0e3dfba60cd06d12334db87f61763592
MD5 11d9e0c1886e75854595b036d4740d66
BLAKE2b-256 e63b6331ac6d642353dd65b839e06d594f24cca78546873adf6e891bdc7f024a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp39-cp39-macosx_12_0_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp39-cp39-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 b4be4c91fee1367f2f5b265e40d58d88e43c77bd7c666dbde5ce601ce78c7748
MD5 537baf7f9ccf27bd4467c6343175a734
BLAKE2b-256 d9ca3248017547407d5ab8cbc2abf8ba064606717c5ddfd62066a945d075b04b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp39-cp39-macosx_12_0_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 64fc18714d485e026bfc9299b40be9890e813b57c1037af638d49ade06eac47c
MD5 fbdccb23a0d587ec44171136b0dee304
BLAKE2b-256 c30323bcda38ea50a21a963caaa80e4e1375440525da9c5d2df297cf18d93316

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp38-cp38-win_amd64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 743ea76e7a9258c2e8accb14528912fec9de469a021086ff1cfe3f208bfc1a1b
MD5 12ce9073f61230086961cbdaac726baf
BLAKE2b-256 c8aaa523faa81b539851a8350e1a618d15374455c2249a6d23b3d1e0611939f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fdc228b82dd7f2aabc2ea1de13579770c2bb8acb676315e8873c326fe4880b17
MD5 0f4f4a12b094a85b71e53e7766307146
BLAKE2b-256 4db63901ed74382c89cd9f1f4f141f3d1a0649656bba01cf7cbe465267249335

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp38-cp38-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp38-cp38-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 aad12e4c50f822a572be82f80f3f1b457e75aee5e8e6547f8dd1e2284880ceac
MD5 72f39eac7387d138af16fe60361eb580
BLAKE2b-256 b6413d365e5e8bd497653bfd2dbf137007dc6d53a1b65c71107630d2b0302ef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp38-cp38-macosx_12_0_x86_64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sing_box_python-1.13.19-cp38-cp38-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.19-cp38-cp38-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 54a2d613366e508c3b396e0b04939372341d9c7a7e865de87342147a28836ea0
MD5 0329291135077034833506806edde811
BLAKE2b-256 9838d21c060645cfa9de082dc993d7c7bfec110150138baac66f0ef134116d21

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.19-cp38-cp38-macosx_12_0_arm64.whl:

Publisher: build-and-publish.yml on LorenEteval/sing-box-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.14.0

54 files

1.13.21

54 files

1.13.20

54 files

This release

1.13.19 This release

54 files

1.13.18

54 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