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

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.20.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.20-cp314-cp314t-win_arm64.whl (23.0 MB view details)

Uploaded CPython 3.14tWindows ARM64

sing_box_python-1.13.20-cp314-cp314t-win_amd64.whl (25.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

sing_box_python-1.13.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

sing_box_python-1.13.20-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

sing_box_python-1.13.20-cp314-cp314t-macosx_12_0_x86_64.whl (26.9 MB view details)

Uploaded CPython 3.14tmacOS 12.0+ x86-64

sing_box_python-1.13.20-cp314-cp314t-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.14tmacOS 12.0+ ARM64

sing_box_python-1.13.20-cp314-cp314-win_arm64.whl (23.0 MB view details)

Uploaded CPython 3.14Windows ARM64

sing_box_python-1.13.20-cp314-cp314-win_amd64.whl (25.5 MB view details)

Uploaded CPython 3.14Windows x86-64

sing_box_python-1.13.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

sing_box_python-1.13.20-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

sing_box_python-1.13.20-cp314-cp314-macosx_12_0_x86_64.whl (26.9 MB view details)

Uploaded CPython 3.14macOS 12.0+ x86-64

sing_box_python-1.13.20-cp314-cp314-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

sing_box_python-1.13.20-cp313-cp313t-win_arm64.whl (22.4 MB view details)

Uploaded CPython 3.13tWindows ARM64

sing_box_python-1.13.20-cp313-cp313t-win_amd64.whl (24.9 MB view details)

Uploaded CPython 3.13tWindows x86-64

sing_box_python-1.13.20-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

sing_box_python-1.13.20-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

sing_box_python-1.13.20-cp313-cp313t-macosx_12_0_x86_64.whl (26.9 MB view details)

Uploaded CPython 3.13tmacOS 12.0+ x86-64

sing_box_python-1.13.20-cp313-cp313t-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.13tmacOS 12.0+ ARM64

sing_box_python-1.13.20-cp313-cp313-win_arm64.whl (22.4 MB view details)

Uploaded CPython 3.13Windows ARM64

sing_box_python-1.13.20-cp313-cp313-win_amd64.whl (24.9 MB view details)

Uploaded CPython 3.13Windows x86-64

sing_box_python-1.13.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sing_box_python-1.13.20-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sing_box_python-1.13.20-cp313-cp313-macosx_12_0_x86_64.whl (26.9 MB view details)

Uploaded CPython 3.13macOS 12.0+ x86-64

sing_box_python-1.13.20-cp313-cp313-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

sing_box_python-1.13.20-cp312-cp312-win_arm64.whl (22.4 MB view details)

Uploaded CPython 3.12Windows ARM64

sing_box_python-1.13.20-cp312-cp312-win_amd64.whl (24.9 MB view details)

Uploaded CPython 3.12Windows x86-64

sing_box_python-1.13.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sing_box_python-1.13.20-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sing_box_python-1.13.20-cp312-cp312-macosx_12_0_x86_64.whl (26.9 MB view details)

Uploaded CPython 3.12macOS 12.0+ x86-64

sing_box_python-1.13.20-cp312-cp312-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

sing_box_python-1.13.20-cp311-cp311-win_arm64.whl (22.4 MB view details)

Uploaded CPython 3.11Windows ARM64

sing_box_python-1.13.20-cp311-cp311-win_amd64.whl (24.9 MB view details)

Uploaded CPython 3.11Windows x86-64

sing_box_python-1.13.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sing_box_python-1.13.20-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (24.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sing_box_python-1.13.20-cp311-cp311-macosx_12_0_x86_64.whl (26.9 MB view details)

Uploaded CPython 3.11macOS 12.0+ x86-64

sing_box_python-1.13.20-cp311-cp311-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

sing_box_python-1.13.20-cp310-cp310-win_arm64.whl (22.4 MB view details)

Uploaded CPython 3.10Windows ARM64

sing_box_python-1.13.20-cp310-cp310-win_amd64.whl (24.9 MB view details)

Uploaded CPython 3.10Windows x86-64

sing_box_python-1.13.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sing_box_python-1.13.20-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (24.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sing_box_python-1.13.20-cp310-cp310-macosx_12_0_x86_64.whl (26.9 MB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

sing_box_python-1.13.20-cp310-cp310-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

sing_box_python-1.13.20-cp39-cp39-win_arm64.whl (22.4 MB view details)

Uploaded CPython 3.9Windows ARM64

sing_box_python-1.13.20-cp39-cp39-win_amd64.whl (24.9 MB view details)

Uploaded CPython 3.9Windows x86-64

sing_box_python-1.13.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sing_box_python-1.13.20-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (24.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sing_box_python-1.13.20-cp39-cp39-macosx_12_0_x86_64.whl (26.9 MB view details)

Uploaded CPython 3.9macOS 12.0+ x86-64

sing_box_python-1.13.20-cp39-cp39-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.9macOS 12.0+ ARM64

sing_box_python-1.13.20-cp38-cp38-win_amd64.whl (24.9 MB view details)

Uploaded CPython 3.8Windows x86-64

sing_box_python-1.13.20-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sing_box_python-1.13.20-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (24.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

sing_box_python-1.13.20-cp38-cp38-macosx_12_0_x86_64.whl (26.9 MB view details)

Uploaded CPython 3.8macOS 12.0+ x86-64

sing_box_python-1.13.20-cp38-cp38-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.8macOS 12.0+ ARM64

File details

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

File metadata

  • Download URL: sing_box_python-1.13.20.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.20.tar.gz
Algorithm Hash digest
SHA256 e953843b914a9a1b9635d696fc0e8807d89f03a2bd1f274299eadd9344e76a37
MD5 e9bfafd344087fea33aaba0adfd0a06f
BLAKE2b-256 da39a1748a5d97b59c9b5ea0a8b172b5366f19d487a7642a8f6ad01dd30f2e3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20.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.20-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 94f6cf75b88a300558aad3b0e352f6133814b7bcaf5b4f4b732802a35201c0de
MD5 4024cff5c09296cfdf45eb8bb6b144f6
BLAKE2b-256 cc1dfc611dc67059c71cd9b09b2388b7252907df56387c33e95c95712de3a619

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2745f492bab5cb5b23f38e179ae7d43f9b58c47be7f1bfd67175966160d78d00
MD5 c22d17a06d23e135bc6c7a8004a6b1fa
BLAKE2b-256 d96e1eff1f70c14189eb7b95e5df2e0c702a8812911349f3619ac4447b9fdd26

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 68f321ce3f47ca696b41a6c993902233352d99f20ff951cb82ed549bb21e4ad1
MD5 debbf4558ef39189909e480aedc57758
BLAKE2b-256 c548faf3ddfb946f455e96a8ce0a6c2c3090046452a9ff781b2768a77ffdbc4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_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.20-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 01e797dbfd962786785f2673334f8d0cf15561b4bb3facd3db4c52e04045cc93
MD5 36aed1eefff6afc003af6d3a30a628ba
BLAKE2b-256 cffd8a9d003f7f6b09992fc2fdc65dd0f04f6ad8a3dbb15c82ec4a6dec0ef41d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_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.20-cp314-cp314t-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 c8691eee6c15c88814d6e855d76f9a620c8ce8aa600a9d5bb087fe85367e3391
MD5 4166c949df9f5f43c69caaa081a31fd7
BLAKE2b-256 08c4e917a97344b2367aea0a5da5f28c80083f4f884dfc7cb13c084a3fb24d23

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp314-cp314t-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 4766ce510ba2a23b066ac6f45b86c4bc920aec47efd6899553445327ee15eba1
MD5 a52cc762dc19f1200a7ea5a4601982fb
BLAKE2b-256 0a3b56c25aab7b36873b5ac4276057475333a5b5d57639c65dd80bf93d9f4429

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2143f67cddcf691853cedcda20db1f7bcbf45120c157f36d4fac44edae98931f
MD5 68d0edc4cb9569af46ae3e9e7c887307
BLAKE2b-256 bdae20c7e07ff2994fb9b723253f4fb4d72296c4a74a3b34e67f2ecf61e8d622

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bcce3c2c25e174ae6d56c7293a75d1d3e177320a6e6a795785f32ba97784582a
MD5 082f52f2c18d21ea4773ff71cddebedd
BLAKE2b-256 1aedcec296fa88244d2f30b5e99c94f81942d35fc6ee7ba9fdf4723f5e84e98b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b7ee2b64debd6aa781f094b5a16f4c1edfa59dba8d0a989c65f350a3c951f288
MD5 2803094496d79f97e52f982e852925f6
BLAKE2b-256 7a09815d504632884bb3e2b1af25ff86c2c4f5a49215c64a601d112e360476ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_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.20-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 065fe7b2f730a6d151f5534c161646d7f5291091b168efc4c4f0a5ca2f1f823a
MD5 570462c6cdb4426ff26175e073ad6ef5
BLAKE2b-256 9ab649d3cb2dfbf221fefe1bb2a48af91dfec912c17d7917ff999d05d8b10e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_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.20-cp314-cp314-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 0e37ed6e710b1a931221e25765017a2b1c295962bebb6b808d2f86ff0ec50797
MD5 a909ac97f7aa54de8a5564f3019d5a6e
BLAKE2b-256 3ee0e6c84c956de81845c4d60d1935b152d992241cdb0446eeddf268a5e899c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp314-cp314-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 84c0fcaefccda0d15e1f9f79b288871d5008214dbf77a53502bf218ce3278bf6
MD5 55f9a4741ef4a6c70faceb6e6f6531f8
BLAKE2b-256 2818e5c9b52b82737392dfcf3836a159e71490f7dfbdba3de46a003776b67e89

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 7ad377dfb5d69c6b02f168d5a5f15568c10aacf93d33c4b8321e849008d98100
MD5 1ba9650529bb0878087f8d7e9a8f5b9c
BLAKE2b-256 4a53e80555333ba842a0bf7e5a8337d65bf22e527a7dd7db82bc4ffb9404ff54

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 2ed27db26f70d46d44a07d32ab24ab277c881b31373737328b8f7e9217ce7967
MD5 a200f71bb4988e6801f3e69c9103dd2b
BLAKE2b-256 183b9760a2a2764dae81e5fa5b1fe567ba70a90c5be76a4a0065bb915a140c2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7e1c1cad40d8655decf5365d542d829a6fa528c5957ab1099c9df37aeec2b86f
MD5 0bfbdccd5e9a60121bcb28760b3178fe
BLAKE2b-256 2fd27f63d2ce12e3dd186ce8af49c62aa2f6e7287e1c2e7aca514a3d664000b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_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.20-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e2bb03a7f2bd1b31c1e591ed8abd2436557298058162b3e65a2d1ba907f1acbc
MD5 96eca8e760809b767aa6e6780d1a1cb9
BLAKE2b-256 48c42eb6689180d9fb1ea8f0e1bbc1771106cc2add8b77a3691754106c5895ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_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.20-cp313-cp313t-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp313-cp313t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 351f5a723774836110665783ebef303a0e38e337de66e3ccf26d6fe85f44db05
MD5 ef465896e17bd8f63086f51253dfadf2
BLAKE2b-256 eed35e7b85f70ec58d9b8de603663bf124a09adb482dc7db6b666f6b31b196c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp313-cp313t-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp313-cp313t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 29128dcf16801c12839e78adebf6e3668f4a6e59639de51c952cfea9997d3693
MD5 ad374c4733d81f916075446a42b310f7
BLAKE2b-256 8824ef9673e867f4d47fd12cdefbe1cb966ffd1245652f954f61f9907da92656

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 83a8dabfdcd5a7c2a4d2b01f2f81f062fd043a356018977c0afee440c16930f1
MD5 95c1c18480ec2b977d8f4cb0d4ddae6d
BLAKE2b-256 1732bfc8291a012db9833890eff06ea128480626aa7255420d47ce587db68b39

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5e04d8851ad9498435f277b55e474cebd02ad8a0141e24eaa6043b432beda56f
MD5 688523bb71831c4ec890a6e99e16e285
BLAKE2b-256 61f57b6e103d3dd1d7075eb7f4b81d4dca91fb5e054036610873f2323ae7645c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cbf0f7a91e0b7e13af4b176146cf55533bac65e1534c86fdec7c7126c6108428
MD5 c42f57ba7106f11083c52ce5df5333c4
BLAKE2b-256 3a33af347df55b76c2c7f21eb40386fd2720a09c2a1cea81499d5db5d30c5ab5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_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.20-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 09398e5a599b997bba76fe25836b67b00c1af934f310b5c3281a0db111e12b3d
MD5 03c7d0d464528d396d262e2621f8ab98
BLAKE2b-256 101489ca1930ef60eac33dd2fc5d394f7663bb98fd61f3607ad106626a95839a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_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.20-cp313-cp313-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 34ceeeee1e07a5fd25f8ae4ffed48db53f3057b20cc3c203727d6e57d3f2f4ba
MD5 28466ca6e05674eb6ccad3a5ac57338c
BLAKE2b-256 13127bc09e4c4d9f34dba0b6eead3d219744076ed099f628894718fba8a867e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 00e8208479193433d94aacdf67f39e942edec78b9940d5fe618ca3f8a76b3da1
MD5 48d64e3839be721dd13266cd5a939988
BLAKE2b-256 28195610f472cf248ee223f75891c5828a560eca7b165b94578e026070ec0d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b2aa1ca7d8582517294c83a68d9921d49b37dca712606f7d2144310f0b717877
MD5 93c262ecc42f204e665ff448af60f53b
BLAKE2b-256 4806c47e95c63715904a2971a60dbc2632ba56a2539ff2dbefe9f1ffa0bb555a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8c32f85e323196516e49f397244940563a5df841e13c1f001e17efa8cc42fc9e
MD5 5ad6c58b643c0b021c72668138449471
BLAKE2b-256 fd42b1a36ffc03121e55e2fc75fb6567f76ece7074bd436dbf8bd78f321d72db

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c476ff3342d7002351999ded6493bb834b6930ad8865286df22dd8afd528f852
MD5 d7c76984b7a11fc1571198a59bc7167c
BLAKE2b-256 dbc347e4d54789479bffa33f8cc57f88fe44d1f9d7379b4fe04bebc0b38f2fbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_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.20-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c2f1fde95049edc4db455e21ede42304eec47bfbc33205994e654b31e40e8de6
MD5 d6d5b6fc1be73bc033847ffabd3497c6
BLAKE2b-256 84a34b302a9242b14ecd881e528d66c1d460ee9529bb9d18ed1d0d43a17256cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_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.20-cp312-cp312-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 d27485904aa9ed5a973b7322b1cf58f60bf09ee78d8076defc710faaa4c97557
MD5 1684abbe5265c8e1c93c5e71f06e5968
BLAKE2b-256 0ba9a21e9e8721594bba1eba4ddb0ab827e6bdd938a6c59fcb08ed5270954555

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 573f10972bf2bed97a5af2b980a05b6070bc1d67216e5646be46bcf7ef81f11b
MD5 f759363030d56ff71679fb9d6a4795a4
BLAKE2b-256 2b14b7e14f6b0890714f862cd8ca357a2dd0be4b08f4217ff3525ebdc24a77d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f4eee7ef025370d6661db53acaad4e72c7dcd34cdc1ce6d4f9f72452997e8b26
MD5 6db13b1e9a737152a055bdf0f65f7dd6
BLAKE2b-256 d0a13d4960d76a864032c0ef2272684f36ebae466f0448139881cf9e066519ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9f13b03c938b37dff2a0e68cc22775b3117f417e1bce5c0ae3194273e09709f4
MD5 d7281986fba6d9fc078d5de1818d1d61
BLAKE2b-256 5fa82e1d3e9747ca865af6192c3b515321d91755a85ad441ae272a1405625650

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 316d499a31dd9199ef06b4039bc6b1e64b0126de10da2498e9b4e8529b947977
MD5 62493c8c96018cf7ebb8d31be6e94a2e
BLAKE2b-256 945c4ec28258f1ab0ed91fca5b5c268cdb463ebb6459387e03ecebc3d116979e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_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.20-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9558a811c7062bacece5ee94cf2b048b09716a239b159cd450b57b84d1ce78c9
MD5 1260919d18d5909fd63fbc79e6df1f64
BLAKE2b-256 34af10ec123a005424491107e5a884d93410e272dd06cf940f273b12e96398bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_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.20-cp311-cp311-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 a7860e58dbefad5a3eeadf00224d660b0b7b02ca3f2503c0d14cd1d336c2d4ec
MD5 8e71d4b3157070e7b74360c95e993d2a
BLAKE2b-256 a49b8a4446dadc202dac6199e6618ed9a4c7a31ee8aba461e65fd587066d0369

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 0b7d4e339c06adbf67d92e52a3c1f55a89ef1d63edb753f15ec1d5b464c38764
MD5 43a7b1fd9154b85785a088cd567c0f1d
BLAKE2b-256 bb7932235f714e022b67a0a58d6f05393e1184960a52ad427ea4d4abad7b0ac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4985999c103f5ec9526aa2504a9f8ac579df267710ea8921153e9dcde8152c94
MD5 8f1f770b6d38a171fbe8e28500fb1db4
BLAKE2b-256 c04d8c59236ed6930c7da826ba9d079c58494de3ef205adffcc2f59f7675f1db

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9ab64a794e7e23851c9611e443b91b2d3ec607f5d6ea038a2fcad7e1bfd4f274
MD5 7767661098e60b81158d73d2ba4ca258
BLAKE2b-256 a0d6d93ee6ff5b1c8c8426515f16aa846142fb206c923b7366dff0711b6a370c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a7b8b41ae0dfcc2dff74fa93db3962ac5d8a24669a25afe4bbeb3f5e341c064e
MD5 408d90a36ad9a71b592f144c7c61eef7
BLAKE2b-256 97fc11d9e1c0fed145b3a0f0a489910e06468b6b59d99764a77a37c17a87af9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_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.20-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 26a74d568eca3e644f23202966934fb7703269c49c35ea12e13614f7fd95db1c
MD5 8ea0b953ed33ef6fcec2e1e825c7fc4c
BLAKE2b-256 ddba5f5001ccce58d2c9343e3b60744d14ea3a901a951a98bfd5e45cfb65fd3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_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.20-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 5732fa7a217b7b4507e76c3296da61d22711cca610d2a22ee2fc306270f645fe
MD5 3cabf025886f1e631b2cffc009461f05
BLAKE2b-256 9ea4a72ff5212d703b99c794e620c34064dd8193eef2f016a35a12463119a83c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 da0374b8ed54f2382aec1ca12f32442f05208f8316a417352d9cc2c6f9ee9d2e
MD5 b14e5b44c616717b993534bebca82705
BLAKE2b-256 dacab37d6b171ac72499cfeb2f123b718dd2e9972d0c9f14cbf247bad2273cf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4b4e5c52aa529bd167846ae1984a0dfd6c7d78b8d0bf5340f7210fa159242f18
MD5 6d68e8e962f2f089beb96a489eb9bf91
BLAKE2b-256 c7ff3358f53be5fc95585803132b3c657dc990c1ff9b7ccfb1f0ab73454aaae9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 02accb5adeac5b80ec74fdd6cb3abde1f6213719511a0f23f1735c86c0ebd092
MD5 3f3746da2809bb16b140d81545cd828e
BLAKE2b-256 114453d615881173e39534ad7acd7844605bd53ded3b6433bc1d92f68db8e2ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d74b762fab0c981fef0121c4080b1b7dfd5e6fd991839477acb45ea2da6e2db1
MD5 109ab776621e0982b02c9d5a29485988
BLAKE2b-256 5454a0a04f5f835bcacd995f3e3ad495e00d6517435bfbf7bab9a35a7a96cd77

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_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.20-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 02971fb43ae7c48c9af72f1850755738c022e9d3ec0334566cb169df06737c74
MD5 9a482f4fb266856befc19b9df20093ae
BLAKE2b-256 e46cde29d6000df31283c8a9405b339817b2d8ce8c3a2859d271f7baef68a882

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_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.20-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 b85a61867ba6d055c45413f6d8af9ef9b3fa87dcc3746b5816c3c17697763cf4
MD5 69d013d87668b6d353824e3f7f2385f7
BLAKE2b-256 c57c8dff48a2e248c91ce0aab951ed37cc228968efa179005a68a5c2eb23ab79

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp39-cp39-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 4360c363a5b8f7585bfdd1e81f5706e48168f22df5175f34114dad23d6567f19
MD5 ff4fb7a44dbf7688123ed67e3c30bdd7
BLAKE2b-256 1db0020af15853a735a8d6e63a1f2ebe416baf5abb3e97d6d704fee66e5e558b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 590d80da06167806fd4d5b745f017788bd2e4e45938a4c82707fe644fa487b4e
MD5 64d091a77b7ba161a98028d5c0c5023e
BLAKE2b-256 1d8a4578d9ae430c03d2590a4cfe7819e68f79056a70168b33a9bd669e22271a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 edcbb229bd29ce2372fd2c7b400b5f5861de46b99857c48d7d76571e860e6d67
MD5 a81013e7c6ae737785f19273de4239e5
BLAKE2b-256 190a5a9d1dfade87926e2fc23d56492e7c86fec73f174d57aaf507929a2e6164

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_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.20-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 766f022a5920ef3e4acfb037e8e07b9d60cd047aa88d4cf8095684a3feaf871b
MD5 9eb913f3a04a12bbeb00b18983f32882
BLAKE2b-256 ceb9ae5b27bdbba55ff4bb41a228c3c6dfc3e6393a7836adc2f0907ed17db64d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_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.20-cp38-cp38-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp38-cp38-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 202770092a54e57f977b227bf8f91e5aadab143d74dfada5530950b716efae5e
MD5 a4c405bc0273a858a8a74edf7b30d0fb
BLAKE2b-256 5d3c71b284dad1765c008ae990db49f9146f0b114ff176319cba7571acdf6004

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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.20-cp38-cp38-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.13.20-cp38-cp38-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 aaf4c673e4de02edcdaaa779d6d1ddbe542fc14e8b5508c197e71738184cb1d4
MD5 799eada66dd52a7edb45341434528b66
BLAKE2b-256 4cf304969da4a397d1c9890bdf3f0d30e0ae10816a74d36a796369a0535ad21a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.13.20-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

This release

1.13.20 This release

54 files

1.13.19

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