Skip to main content

sing-box-python

Build and publish Python distributions

Python bindings for sing-box.

Install

Prebuilt binary wheels include the native Go and C++ binding, so a supported installation does not require Go, CMake, or a C++ compiler.

pip install sing-box-python

Binary wheels are published for Linux x86-64 and ARM64, Windows x86-64 and ARM64, and macOS Intel and Apple Silicon.

Build from Source

A source distribution is also published as a fallback. If pip cannot find a compatible wheel, it may build the native binding from source. A source build requires:

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

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

pip install .

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

The build downloads sing-box's checksum-pinned, platform-specific Cronet Go module automatically. Wheels contain an isolated Cronet runtime (libcronet.dylib, libcronet.so, or libcronet.dll), loaded from an absolute package path during import. On macOS the build converts the pinned static archive into a separate dynamic library so Chromium's private C++ runtime cannot conflict with pybind11.

API

>>> import singbox
>>> help(singbox)
Help on package singbox:

NAME
    singbox - Native Python bindings for starting and managing sing-box.

PACKAGE CONTENTS
    _native

CLASSES
    builtins.RuntimeError(builtins.Exception)
        singbox._native.SingBoxError
    pybind11_builtins.pybind11_object(builtins.object)
        singbox._native.SingBox

    class SingBox(pybind11_builtins.pybind11_object)
     |  An explicitly managed, non-blocking in-process sing-box instance.
     |
     |  Unlike the module-level startFromJSON function, this class reports startup
     |  errors as Python exceptions and does not wait for operating-system signals.
     |  Call stop explicitly or use the instance as a context manager.
     |
     |  Methods defined here:
     |
     |  __enter__(...)
     |      __enter__(self: singbox._native.SingBox) -> singbox._native.SingBox
     |
     |      Return this instance for use as a context manager.
     |
     |  __exit__(...)
     |      __exit__(self: singbox._native.SingBox, arg0: object, arg1: object, arg2: object) -> None
     |
     |      Stop the instance when leaving a context-manager block.
     |
     |  __init__(...)
     |      __init__(self: singbox._native.SingBox) -> None
     |
     |      Create a stopped sing-box instance.
     |
     |  queryStats(...)
     |      queryStats(self: singbox._native.SingBox, patterns: collections.abc.Sequence[str] = [], reset: bool = False, regexp: bool = False) -> dict
     |
     |      Return available runtime, Clash, and V2Ray statistics as a dictionary.
     |
     |      patterns filters V2Ray counters. reset clears matched V2Ray counters after
     |      reading, and regexp interprets patterns as regular expressions. Clash and
     |      V2Ray sections are None when their corresponding sing-box services are not
     |      enabled by the configuration. Runtime memory counters are always present.
     |
     |  startFromJSON(...)
     |      startFromJSON(self: singbox._native.SingBox, json: str) -> None
     |
     |      Start this instance from a UTF-8 JSON configuration string.
     |
     |      The call returns after the service starts. Invalid configuration, construction,
     |      or startup errors raise SingBoxError. Starting an already-running instance
     |      raises RuntimeError.
     |
     |  stop(...)
     |      stop(self: singbox._native.SingBox) -> None
     |
     |      Stop the instance and release its native resources; repeated calls are safe.
     |
     |  Readonly properties defined here:
     |
     |  handle
     |      Opaque numeric instance identifier, or 0 while stopped.
     |
     |  running
     |      Whether this instance currently owns a running native service.

    class SingBoxError(builtins.RuntimeError)
     |  An error reported by the managed sing-box native lifecycle API.

FUNCTIONS
    startFromJSON(...) method of pybind11_builtins.pybind11_detail_function_record instance
        startFromJSON(json: str) -> None

        Start sing-box from JSON and block until SIGINT or SIGTERM is received.

        This process-oriented entry point is intended to be the target of a
        multiprocessing.Process. Configuration decoding or construction failures exit
        the process with status 23. Service startup failures call os.Exit(-1), whose
        observed status is platform-dependent. Use SingBox for exception-based,
        non-blocking in-process lifecycle management.

DATA
    __all__ = ['SingBox', 'SingBoxError', '__version__', 'startFromJSON']

VERSION
    vX.Y.Z

Vendored Upstream Source

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

  • singbox-go/binding/main.go
  • singbox-go/binding/cronet_purego.go
  • singbox-go/adapter/binding_traffic.go
  • singbox-go/experimental/clashapi/binding_traffic.go

The two binding_traffic.go files expose the small traffic-statistics interface needed by the Python binding without depending on sing-box's concrete traffic-manager package. This keeps the binding compatible with the package move from experimental/clashapi/trafficontrol in sing-box 1.13 to common/trafficcontrol in sing-box 1.14.

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

Upstream Release Synchronization

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

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

Run the same operations locally from the repository root:

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

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

Binary Wheel Platforms

The distributions are built and tested in GitHub Actions.

Platform Architecture CPython
Linux x86-64 3.8-3.14, 3.13t, 3.14t
Linux ARM64 3.8-3.14, 3.13t, 3.14t
Windows x86-64 3.8-3.14, 3.13t, 3.14t
Windows ARM64 3.9-3.14, 3.13t, 3.14t
macOS Intel 3.8-3.14, 3.13t, 3.14t
macOS Apple Silicon 3.8-3.14, 3.13t, 3.14t

Naive outbound is included on all wheel platforms in the table. Cronet is bundled as an isolated shared runtime on macOS, Linux, and Windows. The macOS runtime is produced from the pinned static archive during the wheel build. The Cronet artifact comes from the platform module and exact version already pinned by the vendored sing-box go.mod and verified by go.sum; the workflow does not build an unrelated Cronet revision. Custom source builds can override the complete sing-box tag list with the SINGBOX_BUILD_TAGS environment variable.

License

The license for this project follows its original Go repository sing-box and is under GNU GPL v3 or later.

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.14.0.tar.gz (2.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.14.0-cp314-cp314t-win_arm64.whl (29.0 MB view details)

Uploaded CPython 3.14tWindows ARM64

sing_box_python-1.14.0-cp314-cp314t-win_amd64.whl (32.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

sing_box_python-1.14.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

sing_box_python-1.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

sing_box_python-1.14.0-cp314-cp314t-macosx_12_0_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.14tmacOS 12.0+ x86-64

sing_box_python-1.14.0-cp314-cp314t-macosx_12_0_arm64.whl (30.9 MB view details)

Uploaded CPython 3.14tmacOS 12.0+ ARM64

sing_box_python-1.14.0-cp314-cp314-win_arm64.whl (29.0 MB view details)

Uploaded CPython 3.14Windows ARM64

sing_box_python-1.14.0-cp314-cp314-win_amd64.whl (32.3 MB view details)

Uploaded CPython 3.14Windows x86-64

sing_box_python-1.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

sing_box_python-1.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

sing_box_python-1.14.0-cp314-cp314-macosx_12_0_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.14macOS 12.0+ x86-64

sing_box_python-1.14.0-cp314-cp314-macosx_12_0_arm64.whl (30.9 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

sing_box_python-1.14.0-cp313-cp313t-win_arm64.whl (28.2 MB view details)

Uploaded CPython 3.13tWindows ARM64

sing_box_python-1.14.0-cp313-cp313t-win_amd64.whl (31.6 MB view details)

Uploaded CPython 3.13tWindows x86-64

sing_box_python-1.14.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

sing_box_python-1.14.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

sing_box_python-1.14.0-cp313-cp313t-macosx_12_0_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.13tmacOS 12.0+ x86-64

sing_box_python-1.14.0-cp313-cp313t-macosx_12_0_arm64.whl (30.9 MB view details)

Uploaded CPython 3.13tmacOS 12.0+ ARM64

sing_box_python-1.14.0-cp313-cp313-win_arm64.whl (28.2 MB view details)

Uploaded CPython 3.13Windows ARM64

sing_box_python-1.14.0-cp313-cp313-win_amd64.whl (31.6 MB view details)

Uploaded CPython 3.13Windows x86-64

sing_box_python-1.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sing_box_python-1.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sing_box_python-1.14.0-cp313-cp313-macosx_12_0_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.13macOS 12.0+ x86-64

sing_box_python-1.14.0-cp313-cp313-macosx_12_0_arm64.whl (30.9 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

sing_box_python-1.14.0-cp312-cp312-win_arm64.whl (28.2 MB view details)

Uploaded CPython 3.12Windows ARM64

sing_box_python-1.14.0-cp312-cp312-win_amd64.whl (31.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sing_box_python-1.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sing_box_python-1.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sing_box_python-1.14.0-cp312-cp312-macosx_12_0_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.12macOS 12.0+ x86-64

sing_box_python-1.14.0-cp312-cp312-macosx_12_0_arm64.whl (30.9 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

sing_box_python-1.14.0-cp311-cp311-win_arm64.whl (28.2 MB view details)

Uploaded CPython 3.11Windows ARM64

sing_box_python-1.14.0-cp311-cp311-win_amd64.whl (31.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sing_box_python-1.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sing_box_python-1.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sing_box_python-1.14.0-cp311-cp311-macosx_12_0_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.11macOS 12.0+ x86-64

sing_box_python-1.14.0-cp311-cp311-macosx_12_0_arm64.whl (30.9 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

sing_box_python-1.14.0-cp310-cp310-win_arm64.whl (28.2 MB view details)

Uploaded CPython 3.10Windows ARM64

sing_box_python-1.14.0-cp310-cp310-win_amd64.whl (31.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sing_box_python-1.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sing_box_python-1.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sing_box_python-1.14.0-cp310-cp310-macosx_12_0_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.10macOS 12.0+ x86-64

sing_box_python-1.14.0-cp310-cp310-macosx_12_0_arm64.whl (30.9 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

sing_box_python-1.14.0-cp39-cp39-win_arm64.whl (28.2 MB view details)

Uploaded CPython 3.9Windows ARM64

sing_box_python-1.14.0-cp39-cp39-win_amd64.whl (31.6 MB view details)

Uploaded CPython 3.9Windows x86-64

sing_box_python-1.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sing_box_python-1.14.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sing_box_python-1.14.0-cp39-cp39-macosx_12_0_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.9macOS 12.0+ x86-64

sing_box_python-1.14.0-cp39-cp39-macosx_12_0_arm64.whl (30.9 MB view details)

Uploaded CPython 3.9macOS 12.0+ ARM64

sing_box_python-1.14.0-cp38-cp38-win_amd64.whl (31.6 MB view details)

Uploaded CPython 3.8Windows x86-64

sing_box_python-1.14.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (32.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sing_box_python-1.14.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (30.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

sing_box_python-1.14.0-cp38-cp38-macosx_12_0_x86_64.whl (33.2 MB view details)

Uploaded CPython 3.8macOS 12.0+ x86-64

sing_box_python-1.14.0-cp38-cp38-macosx_12_0_arm64.whl (30.9 MB view details)

Uploaded CPython 3.8macOS 12.0+ ARM64

File details

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

File metadata

  • Download URL: sing_box_python-1.14.0.tar.gz
  • Upload date:
  • Size: 2.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.14.0.tar.gz
Algorithm Hash digest
SHA256 43f4711b70a4ab1fdeb6fc037cd75ce63cafe3545c31a8a2a169ed0c538a0e18
MD5 803ee870ae5ee9ccf6f30dc2bce20c3f
BLAKE2b-256 e19b106cd9e546e25a079221dcbe6c18f11d456c72e2570468fbaf7880e33eca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ddd1db435acbcaabe21fee160ffb96a2576084c2b5a86fb44e2cf89d59eda705
MD5 cbf4f570d3e8b9472438564748976cf7
BLAKE2b-256 03257a6613c8ac2398f068a85a5141fe73f392b9dd1fb9dee7e797e25309515d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 96ffef9fb600d17e1335f815d326eed8827e36b72c34c65fbc44b8844547c23f
MD5 d1855fc9a86300f3569a622ec85827ab
BLAKE2b-256 68549ee74922e32bbe31c2430d3a9e690fd70bb085b22f8ae71341d98d844da6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 96295028a6684f307c53672d1fa095b4937950dce882ff9214d60bc0c0ffbcd2
MD5 7875df580ed50cf54c028381a4110d63
BLAKE2b-256 a5915e6392e1f692ece324d560200d2e35cdbf2aee23d07f18dbff44f9f42f85

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5ce380030bf9694162d89b293ddd42ea616a447da187040e806c8b98759a5158
MD5 d3285c2d936f4edafc9fa945fcfe81b3
BLAKE2b-256 da83694e40123f9096727aef4ee34dd3b2ac9da411ed58f22b2fe0f90bdbd97e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp314-cp314t-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 a97ec76160d77280b3b5f4cfed8181bd7305ee8451e67e80180bc0a643b63ddc
MD5 ff225381ff99eb11a2ff5025a82634e7
BLAKE2b-256 03bf422a2993653b5d537fc0d46b93b3a474fc86887d246cceb439e27919517b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 854ecd5c4554393a85a1915b3ebf9309d2a3898b7d23dcb1626298deb319bf76
MD5 274e790d21b3c192ddd12bc8614de491
BLAKE2b-256 f82f3ea674dbd661e6e05f6b130772250354e3584fd9aebf218ca40ac87d8cc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c9607463075720b501faf98102cfe5158972e5f1dcea237ce6dcbf9d2743a1a0
MD5 1ee2582da378d76e58b0c6ccb24e0b2c
BLAKE2b-256 9c98f86bc707c33ffc8f7626545cdeebf9a5392594f42c467f131e71cea3579a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6d8b085a537ee8560138cd14d94456e8e14f3d59701945d9269a403d8c334835
MD5 dcfe6d98608f2ba367a66a741246551a
BLAKE2b-256 329ce573c4443780b438da7863f8531b6276ebe8ff2304b2b2722053964794cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 39a55bc7a70f15f4753ce2cd05021cfa3136d2c1440835df0854a1e73aca4c6d
MD5 e322f6bbdeb0f77b49037b31daebf589
BLAKE2b-256 2e4de7a244036d00b21722aafbc751062c7ce6c75e0ef874698f35e0bda8e08e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fbd6e0332957f45d34b13742e6415ef54b87b769eb109a0824d115cf80ceabc5
MD5 2b05b0f67973b96f1df8f3d2b5f9db46
BLAKE2b-256 da7c29528b1ba3ca5d12df0c4d84291da6f4216afcdc605a729c8b7e93a2d0c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp314-cp314-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 0b9c7219f786877a10d6016dd3f87778b81bdce1a350a99c6c032012bf4bba47
MD5 57eb331c109d71a7439ff01f617ea369
BLAKE2b-256 4a0beb2d14a01431a692e949dc0f29f6ab0321061015a77fe06618e37f438999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 50ecbb92950527c089fe8e1788d4f2abee91e020e77426ee6a0f6a814f9cffc0
MD5 b52011f2a2b810bbd414d2450124b0a2
BLAKE2b-256 dd7f10fce0214d2fc1c907199cdffba7271b1a2fc8be715af883e09b436e3dc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 dd9e464c1473b5563ec62c86a5b173c131b44480458557d0ec6e26305d87b5f9
MD5 2f1dff061b7adc761acb0c83543bcf31
BLAKE2b-256 9e409bdd3edc8d21624f7db560938ef5045ae64c340e2467cfa02f95560125ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 830b073ff620be5b2c45d566adc5a861286c02c457e40a16c01f4ba8ee384841
MD5 3edb5b6172ea9158abc2c88043d6e0b7
BLAKE2b-256 0aae2f02d90d832286820b971a50f3c6ce11514613b29cc51318c344723e188c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f8309424b785cd255df0ace4517a0e4ca358489bfc88fa43fcef5b311e00738d
MD5 88fcc2e42565a92dc4ad7be5d42ddbd7
BLAKE2b-256 b31f2f2beb27af758d8ce5c87f348c8a0726aac75d7197a1c943b8b553c8d1f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fed3160cec69728624ec83981b66e8216e010e7696f9d14d22b05de2a4b26ca4
MD5 8143fb93332347ea8eef89e3986e8f09
BLAKE2b-256 ffa5cdbed9f96276a1e327f25a6845f73d90098d0083b62ad0032ad743cd76fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp313-cp313t-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp313-cp313t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 8ac09c1cbd0495603464159e8da442fcf64290ca2e4319cc62dc63eda811ea7f
MD5 eee648fb8730b39f57f575a013ec8a45
BLAKE2b-256 03cc7c0f07826f602561129d054f36797dd37e47830d19cf28e17e1a2cdcdbe9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp313-cp313t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 5995e1802ba504b6a5cad9b398be12f255552a24f289501717b97041a93bce06
MD5 0e71a622c42d10ecfb272eb535c1a524
BLAKE2b-256 00d5b10e4a9ff15db15521648306ace1a6e2aec7ee69253932ca1450d1c2946c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e9b93e6e53dbc4dbc9355fd2ce25ee9022a5e89cf15b658764320eec46f1d52a
MD5 1fe1f4f79c858d449ffccf9465c3b988
BLAKE2b-256 d96283716d21a4977758177446428d37cbff3152ad765de22f3e1baec83dbdd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 32fb05d29ac0a025123d51e8fc459dabded1484c399494c0f3958355a9aaae80
MD5 09e21ac3c156ef15381247619aca867a
BLAKE2b-256 e63ae712798df6dfa511c6ae52be4619b823b400b70d087b69085af2d71fc385

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1956b3635abf2d8542acde10056a7c4346152f6d3e4b321ca14db173f12fe285
MD5 506bdac28c486e2002eb07b998a45aa1
BLAKE2b-256 6d169809f6aeb91638f242914a76fbd7991587b16ad0e924a21af2cfadd19710

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cffef1e4f3ac6dbeff616c6813519e6af04e074cb4a7e19be9954feb37c04e05
MD5 e5b6123f0e9794eb73995383443df339
BLAKE2b-256 afc63604868a265d76274901b7aab17adc585c8ffac0cba93de74ede2f93dbe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp313-cp313-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 a8ab0e4608c95385fcb23ac4fb9e7de499eb2c21c635d9cce0de7ba1839c7b10
MD5 a7af7286a3f414ad7e8d5caa9542eff7
BLAKE2b-256 86218b84128e102cbaf2d36d74a9c5387207583f5ca62166f2428ef2d5e13585

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 7cb5641da3dafaf39b9ba5fc964d7e9fcd6e440d2173a76700e12cd95cc0d570
MD5 98607956e6824d3ac4a8f1680b261878
BLAKE2b-256 c92e1291b248a840aaf354d9da2046a92d716fdbb17d892d481d07173287386f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2b65479b4bb7024fca9c0119894fe4ff098cbaf9723f449ecf6cad35c0fd43a1
MD5 c2a94e75871cf6bf3167bbdf61f7b986
BLAKE2b-256 9cbdff15618cf27104017d4d756c67733200de6c6be56c0d665c23b553b07bcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aca4d01f177e55b44f73c3f3b0cc9de2d76507194bf07c5fa77143bdb8ba7bae
MD5 eea5649a5101d8d6e26a3834eb2415b7
BLAKE2b-256 5dc6f37ecc711e4936dec3674f2967d4ac866a2e63d0b81048a4c45688b7bc94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 66480f4e1dd12377449420b0b18acb21aeba8a944a868c66a1e08f63010e7672
MD5 4f3155e2c784c9f3352f8db362ba8663
BLAKE2b-256 e96af95750ca04e7e6d002b3e2c5d3a2ff45234f406a8bb2782bb4f923f74cc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 68c149bd4bff1f6617f466f3c18bbcf509586fccd20f2961981a5f76cd45a8e9
MD5 2fd34a149f50d3bce01192d3e09838c0
BLAKE2b-256 f571de8cc533a249fb1ad99b7ac6e5b46e2e1ef0282e14caf5ccbe9a4376ad32

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp312-cp312-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 513257a0073ae41e8129ac83b129f35ff4eac5057dd3663985e6632ec3802cb7
MD5 4f00819d0625292bda790a52587c6483
BLAKE2b-256 e7c8bc24377c5c33126f90da54b9c2b9e4d5659860081d2cab7bffef5252d486

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 cfff259c71db71b41ed13add2957052df29f68648799cfa368dfd351fc4c5226
MD5 7d95db4273ec12182d2a9b111db03e04
BLAKE2b-256 06a657d3566f35f543f5c05e8e2dd09769d27abce3ada22965f6fb20a01e6862

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 185e875399dbb81e58beb71b39cec17fe04b60809473c0b36e9aa1fe5416d576
MD5 802f5140faf3b8b980d53263fa85ca75
BLAKE2b-256 7e1d733287fc3dbb4c8723ea09c6a007b8304a97e8db1b9e2165ae4cf029ddef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 30a80af76cc3c6014933957ed2eb6f745ded0adddfe81f35bc1c523cafd2b0a2
MD5 ea2579125d3b279e5689504150410023
BLAKE2b-256 8e6ec6e866abaad514805a6de756933e3567ca4041ff1b8c1b57297e695301a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 adaa057ddbde57846d3aa12578fb710c25a230be5c4cc9d2993aa9ccca81bef9
MD5 a18ec734f7ba4015ea34d53fc3644c16
BLAKE2b-256 106a4dc61b519062cb8b0da54dfc141e5ee6a3849e6b7ae3bf5071d51c8ea257

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b400025b2aa92854c651bef19b8475200f9ffc67fef9744a57742c5d33500f59
MD5 f575983a4032f795095a1e837a292f82
BLAKE2b-256 2d61d5de8a4169efed5c42d5ecc53bca9604516337d2cfc07450ca2a33e25d86

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp311-cp311-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 0866e9fd3fab00aa662f3321307a46c52b18bb5ba378c77c04e93d399c1c90ea
MD5 30ae0d53d0d94fff36d1cac9d6644a47
BLAKE2b-256 42440d5c02c576bdd6b9f38b01f8c00545f2558af9ce77271956746e7b7cebb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 ba90ac6948dce040077228fcc4f029c8f096eeea729324c7114a4f2fc3a94801
MD5 c578e9ec9ac9095f8524426026de4bf4
BLAKE2b-256 17dc6ec94ff16d0008245717c60507e87ec36143887c555ef122aa28d2209787

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 59126f3a4d3e5642a29618bb1a3239aaff5e64611e5681556df70b9cfe564122
MD5 8074b22bb3664fbc4d5e13b200f6a19a
BLAKE2b-256 3c7cad2a688970a6bf0afd1bb0e6191cd43adbd246fd758cd7a24678183eb210

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3dab71c601cc51058831f40c7ba96a773a9326ffbf91868f507fd827e0e77f1f
MD5 2a95218caac2f87d2019103aee07bdb8
BLAKE2b-256 004c655a83bfcf3634df5c9646ce9b8ba497f1a89d1ca9c87e73750b3b291056

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a2b5051aeec28631b81231c412660fb5a7adcf708be657b936a11d603ef92684
MD5 4fd908fe2b9919b90d90ec69edf67c59
BLAKE2b-256 d1df7642fda6283c4cfe4c582aa0bc38237ffba9014f9d2ab8698058f8571190

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cda7b143b0b8afc638edcaea2cdec748b09f8e98f6b83503da91f6f30df3d4f1
MD5 435105ae08a6d0f43b764d7ad3b7720f
BLAKE2b-256 16e33a0aa9f6df973fa1100782dff63f2b78494d8f28df2b4dd4059c2ff31d6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 d2d5c9510405ee236a54d24480d22155cce2953bd900363e3af15ed6e5f70ad3
MD5 3000929f29ee6d5ba760285197bd0af4
BLAKE2b-256 58e0cfd002c867eabde6c6bb32ef60dd09cac3b5624eca6fe2a7cc52f22e8e9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 7c8bf531d63cfdae3f42ca00b7bbaa1b05d158d6f034a3ebf0680bf6d4bfc676
MD5 2d3e67524fe6dbef40ed635f6d1de0f4
BLAKE2b-256 75f7e5bc2774aa9e3f2378eaf90a6fecd2f422cc8ef8e419bd551fc050b63a00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 584bc78c73a4032e2c6da8bf8872904d52253e72c91620aa2a9d7473d02e0b7c
MD5 dfdc058c1be88ac89dbcff477c1c9e1b
BLAKE2b-256 dd4977a174664dcb128a600285fcf59c6933d1574861e9250d068069cdb2d12e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a09cf261e14d77cd544d7b44b96701eef39767db023d4163c953a9a2d9d5487
MD5 4a955c23a4efce0bc532579fed9052fa
BLAKE2b-256 ae010aefcb58e4e22c5d0250aa212f6814027c043e9785276e2b00f695c77e5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a3b8adc8489c4a07269dba0e13dc6f9f57223740158e0c30cfa759195dad4baf
MD5 bce7329942a0f3096f1151788e436342
BLAKE2b-256 69d50d7f122108aa027b3d0b04b3a7f623052622827aa30820b839b6646e9c4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 dbdc054ec6c2fe4681fceab780b2e4832aa92225d77d9b33441b34242237472a
MD5 1cd9a10636542d03677402702fb17419
BLAKE2b-256 59d4e653efbdd1c675139e8f3b9b5cadd48ea468cc433dbdf77b96c702adfebb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 50d931ebace838be01a1b5d9939b1c76dc594f7cdfcb1a92a455bf9fa637758a
MD5 4698ff409abd9dbad4d7be2cc6555c8a
BLAKE2b-256 201bbe20fe712397a511f48f8afad6de9f2ac54cc917b713213b906afe4478f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 5da5a276bfaf497d1a36abf1b2e9dacd6aa5b10ad14d0e387b2fd44c90ddc1ef
MD5 76147b0074a88e20431c2d243474d0e7
BLAKE2b-256 d3ba9544a761f78f2614261b69b5b37584f349b6f70dada20ee6a9c696baa242

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a1aa99a93d35534c3560c254b2b2d736b5f448aa9d4f997b49f65b69f1506d16
MD5 12ea6f2df60e6f08ba7bf1af9c14a3e5
BLAKE2b-256 601eea106c8e32c015d4ea187485c4eb16744d1ab301f2f854938539941111bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cbb7566e5109499c8347420a47558f21854f7082e5f1de4628216ea3d72b2534
MD5 fd262f9324539feca67aac48b24f547f
BLAKE2b-256 637473c8b0bd9e76c654ab1d994db9e582f13a65a8cc91154f6d00566aa27b4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4817af451a6d2859df921bec2b2338f8eba73cc325a0341a7b6fd41904b7f9c4
MD5 70eede8e977a7776e8df087a5e41b5c8
BLAKE2b-256 88eb5c35c09ac2f68ec1a2b3534327140456bbcee31b0db6b049e6e8cf973570

See more details on using hashes here.

Provenance

The following attestation bundles were made for sing_box_python-1.14.0-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.14.0-cp38-cp38-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp38-cp38-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 9e0561c9fc4e9d6f26ebc75b020047ca44b6d790348c6548c5a65343261d3423
MD5 1baad56b81865fb25128cc5de0125f6e
BLAKE2b-256 3a834badcb5b708e16d85208caa0aa7140ecee4565b93ce062dfd2038007c788

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.14.0-cp38-cp38-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 0d2069a0301a1a877f4ccdd3ba1c45a7862bc477aa1d96fb7f1ebdcc705e0c40
MD5 a32e9ccdb1038a51ee017fa17b87da7a
BLAKE2b-256 1db81223432f6f82576ec37c07ed94c6a528e45be5b82402fecfaaddc063ed21

See more details on using hashes here.

Provenance

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

This release

1.14.0 This release

54 files

1.13.21

54 files

1.13.20

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