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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

sing_box_python-1.13.21-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.21-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.21-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.21-cp314-cp314t-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.14tmacOS 12.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

sing_box_python-1.13.21-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.21-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.21-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.21-cp314-cp314-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

sing_box_python-1.13.21-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.21-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.21-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.21-cp313-cp313t-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.13tmacOS 12.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

sing_box_python-1.13.21-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.21-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.21-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.21-cp313-cp313-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

sing_box_python-1.13.21-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.21-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.21-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.21-cp312-cp312-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

sing_box_python-1.13.21-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.21-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.21-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.21-cp311-cp311-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

sing_box_python-1.13.21-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.21-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.21-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.21-cp310-cp310-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

sing_box_python-1.13.21-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.21-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.21-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.21-cp39-cp39-macosx_12_0_arm64.whl (24.9 MB view details)

Uploaded CPython 3.9macOS 12.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

sing_box_python-1.13.21-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.21-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.21-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.21-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.21.tar.gz.

File metadata

  • Download URL: sing_box_python-1.13.21.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.21.tar.gz
Algorithm Hash digest
SHA256 91e6e99008525887bf637dc9c840a097a262c9bcdff22ab52e1128465eb9eb8b
MD5 72c17c0414423355fc5ba3101d0654a7
BLAKE2b-256 a1f5c832753ac95af0b71db50b54081b335a34423787173ea057b92773e60d6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e3ee5e611c23477b558d3b7ddfe3966e6fb6bcdf3d6c62c475a5145c3892cf8b
MD5 bc34bddf4f2e4d8e3f4a13abced92cfe
BLAKE2b-256 5c3263e695574f98432263951c4275773896760c742ff119132788ddad25e5f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 400f91245114432428a1a0c7c3d28c1d7b8c3e38d2e1d08586a37c7ddc034db6
MD5 efc3655c47bbc328f864f9139008ff7f
BLAKE2b-256 2d4780849666003bfd9f9d3891f293bb20261f54eb8cf5272e9bf810cea3cfa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 653f6909b01d7f605cfede50999e53aa3f46ee7afd8cdb528e3819a33917b6d3
MD5 2e271de6f272dc7b70147f93f64eb476
BLAKE2b-256 ac48890c1cb96eab02cf7a77ff226befa53bc1c4b49218ba840b3ffd40a5c28b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 30e5d0e2f0a4023adfe607b691c27034c0531d58810be8195894c34c793d4c09
MD5 69a4b39bf5101bdd223570f76ecc0d91
BLAKE2b-256 c8c3083c6e10306c570cfc1858e48f8979234177735032987c93d58db2e203ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp314-cp314t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 8bf8e7da28f6cf9ce3e24614fb685f4aa0b506cda0fdf3b1c962cca88262862f
MD5 f0a9801fa35213ba2b306b130f4e52f7
BLAKE2b-256 bd86fc71bbff3e4442bbbe8464568bb037f4212a0948ce516b0ebaf8c8beb7ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 8e1c1a8397a318a0dfd4eed2217130e4058e33cf88aa35840d0f54a3d0cd5d6d
MD5 97c230cd2965bec0560743313c17d21a
BLAKE2b-256 65130615710af5973e2da28235b0f38e2ae2e171b509ecc3418fd6a082bde79e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 fe0fcfed63e462132e8284f1d48f11c71a88eb32f42ef4479968d468240c8976
MD5 e5995d0ed2f25170348fb50b7ea31ec2
BLAKE2b-256 f649b5dcc38c227d7d526e321203960c7d5424d46eab147ecee43e68bb07e07c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 63d3a6cecc31b7436fd7b619906e38dff43fc52a0a41ebe568719b419b968263
MD5 a9e372b3e85fe8b32cbd0277e50b6b87
BLAKE2b-256 f2a146854c6177f457895441e9047c18839552cb909fca79c84a084be4ce9f04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9a30abd9f74eb613390e5a75a046c4031df9fa64d3350298d7966adcf6d7c828
MD5 0559b28af7cd9777ec66f73d8e7a794c
BLAKE2b-256 c9f6165baf309735d136a572d91d5fe0077ddd8985bf578785c43a92d21743ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c2c0ee7826daa3b3300377250aa5d59423cc7721a38a17ff309a4add50f10e2f
MD5 c4320dfab1cce9fed858ca30bf427f97
BLAKE2b-256 dc5d1c15493ab3ee5885d6385ff02d43c2dec729e70640129aef6cbe3fb17476

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp314-cp314-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 884334e854d4caa55e3bafd9369f9e3773d4cf89e111f4e7c7fbaac0af8743a7
MD5 9509c34bae0af05aeb6d9d88443a25ea
BLAKE2b-256 e353b0c76662e580fe5f81d401265a247f84086c194673b898b673899a52f6d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 0de2e3fd8b06a616f6234ae0808fbf478caa51bd8b849e0865c22445d7e9d8f7
MD5 cd7199cf370adbd2baa35e368d1abe86
BLAKE2b-256 807068e54695e143edcb9054c7e3c24c1b71d18694f28fd46953e8117f90aa5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 1b6ccca53083d7ae55ee1a26b4a745ca775fd7b736c804e6fbbc2192e385aa09
MD5 6b6a09c5810bc294207d1e00b24be1a2
BLAKE2b-256 5619fcbdfc153af75b28744e7afa0f9586e7bf11861a75b642e3ba60f25ba414

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 a533f58f9155070fc53bfda68b50a06a10330bc02ed43c6bdd0dac88355b81bc
MD5 2c3c3d9b1b32395f57c04649d454aafc
BLAKE2b-256 457a5626d28abdbd9fef6fc218b3e6390e36c13acdf1f422500f17b2c848852b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c92ca575c3fe28fb28ee536f667e3c445f1ada18642936c6b7d637e3c29538c2
MD5 ea0e64696e466179f7833bea60e38f72
BLAKE2b-256 cc06fc1cf7d4e289174879a9ffac46ac575816f095214dacd6bd1e222fa300c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 93ef6e43955b1e1e3a01b5f90bc98f5f887490b0e4323c63151cf9633c731de0
MD5 318f0182e9c5f0cb5d05484be20cbf87
BLAKE2b-256 bb21d9ee56143bddc44f5db4bb44bf6c2bc38e26f5882cff2675ccbcd45c4439

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp313-cp313t-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 1c469e983b84f91b0c7d4d56f5b43ce2c555007a9828afcc32c431f5d0d2b8ae
MD5 ec795a14c70651d4ea7319ff27a6ea68
BLAKE2b-256 7c69f7d6b54772155b80b6366f3652dbbd834770e42010425ebf54a66cc0722b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp313-cp313t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 476210abc44040137906e772dcfdbcc446adbafd6c4de0bd35da08d834117fd1
MD5 5e8ebdd6181bfe2c97d9ae85b49ab1c8
BLAKE2b-256 c530ac0204f2703e5e6dea2ccddb677f415c1b1dbde892fa8f79000849a51e7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 668db80febb8d2cf8b03805fdea743a09255cdcf61a1f6313ccef88fc74accda
MD5 e41b3f8bde285ae4a2d7379347b7ca28
BLAKE2b-256 765ebf137459a266f76fc9f213ae70c92ecf0f38228ee8bbdb5f3dcc3523f4f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7d7f17090bbc147679bc2aa747c72e2c7a003ab3941522addc87a37ace4e22fa
MD5 6c0389a34da80ad6d74a582063566cf1
BLAKE2b-256 a43034c4a4e998eb28b19df8756882ff48d68f9788456c2b690e21cdfe9b3e78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 47506cabe41a76082eada1fa366dbe6eb61474e060c54422376f8aba9d493171
MD5 b029d92efaf03e4910011197ee43e00d
BLAKE2b-256 4d26850d809ba170f2cf6ce7f5bbe9f1440db0ef93d2d2f30109ec27a387e335

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 85a3e4faee29765bce8c37a0ed353562baf6f2fb96df59ba226c71f97a4f5b30
MD5 216aeb0d3e53fa7ab01023077fba487d
BLAKE2b-256 039fb23ad2d6182b29d6b7627b2d6134af96180ed4e86592ba337144d867dd9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp313-cp313-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 4d43a5c4de0f5d24378e4a0cc7a95cc13b847691146c8bf6969c407af4bf4a10
MD5 191ac47b42ce045f0985799c21db1c76
BLAKE2b-256 71716f7e7dfa48ddf5e369e35397c05e9fa6b535b239d6fabf33b083526139e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 cfaf020776d8ad12cdd610544ebfa1ee55c13f379dd2271bc4792fa243a0750e
MD5 6b1337c8a579fcb58349e4e4c3c18d52
BLAKE2b-256 a987b3001bf665d7da30198a462d0624eb127ed92430440ef119e96adadd826c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4779117a7acb9f2946a721ac5817e89d9ea92598d570171641c42f163d42685b
MD5 df77f60c58ce832eb375d09fe222ec86
BLAKE2b-256 8df2b763faa78dc9ec63ccf9904b6788044b5702b80df30690aa38731e1408e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d0fea8fa75be8d149ffdb7e9c2da55f81b11b35f8d97400cddab948621e51ae8
MD5 454bacb49f625115726513cc43067569
BLAKE2b-256 7bf93b73c62bce7b277e39a1ef598297cccb714e66e3d95454011835afe18ebb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 37b1efdbbf1ad2dc6e9d7728cf5a983e6fea00fa4b996e9044c89f2f3c8bff64
MD5 a89519f0b8c9f2ec8edbc1a2aa1713f6
BLAKE2b-256 82e3cfe2bab5306836768d8a18f81c94af421939aa681f688731891ec264d016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 34aeee4af1e8ca4aa9b6f9b8256fcef71a06d48c752c85e98ea9b8bb38468bff
MD5 4ed9816f3f954bb7cb6262002c0f8568
BLAKE2b-256 4617aa40cd6541ac9170598cf1b29b09eb143ef12b2b7caca9756b821acef89d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp312-cp312-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 404bad00c82c7a263db47f6b88d7f479a61b3b987f94e937eba4f5f3104de305
MD5 32d0575b8af77237868e9bb4533ee6ac
BLAKE2b-256 1edf0e07ccc93aa2ea4011d9207bcae235856225480f233c8d967b8617899b08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 ac6fa519675a4986c8d4b6348b485df8d9585c9d663e8fa9bd5ac6ba4dd942de
MD5 981d77771efb8dcbd43f86dd6cf76721
BLAKE2b-256 705d95bb2027d5b76a15f1a288b4b784fc51b81a5920c3ab0bf690fa4f1ccc25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4cf7d070f48f0f85b5a6d9db65ff67d75cc07a08837d946141d32ca7f5454191
MD5 51727b3d44cd7ca37d2d9a7e65f2139c
BLAKE2b-256 233ba1c163a3ac8ce2925397aa098f08e13fcbcdb54ea7e59debe76bf8176158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 54ea71a02529e4456742705f81b84d5e906169c8026eaa6305e510467ca9911f
MD5 4b5c614138b4929d2c1606a1403d0743
BLAKE2b-256 e00c33a83457bc3d3e2d6a583a22eaced9dbd276e0edc902af65b9e5592574a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 14b77d39a908145b73f3bae91e919d1a5e50afbbd37c8681b071ec28117201cb
MD5 e5baa74c5dc60e8b344a5bb825bdda17
BLAKE2b-256 2fe1521b056504450de86a553f9cd09fdfc42459f659caf1eb0c79c10e5e806e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 66bd5afcfc71cadede283f232a6209522dfe46deb3ee1fe5ce701271e6c11eb7
MD5 2580ba1f89d0ed0e96a00cf0ef194e70
BLAKE2b-256 6078b5d1458393f04d8ef957eee7482d5f4d4a4dd1cc3fe8e3dbb65a59216ff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 eb2bf3a80f89e12be42643c96a734c5ce94d93d75b5fe898d9bc57b040f80c45
MD5 a0e0686b7af6639622b3c87ea0745171
BLAKE2b-256 ec365d9b902fe76564cd23fd6ff8c99dcda4f481efc5d36c747d73cd98cec282

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 10cb1675d3435f1152d8a7d940855d82310029b9bff23b4c5ed7067540eb0a54
MD5 3f1f02e745398ba6d2e9d94fbe34d942
BLAKE2b-256 64c7e3edcad1cb0a61c63f34c70595d9993d91d57a610064a91848f1878c6a9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 02c50314e047219d9b6730036f4e130c6713476943a77d40df549c943f3e5472
MD5 a48d01aad841be5d2d3367acd30f58f3
BLAKE2b-256 eb88fb507bfbaac70f12ad3049438e836d87f57c1eea0ba179effc338a95064a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13fb71e9f1abf2cfe3b7ac88e89dfe92659c7d66c94ea944b7d3e86261f566dd
MD5 aec643de4b0c5fbac721f0693ed18890
BLAKE2b-256 8d61d8c21a0acf7b4b01cbc8650325b08e5cb23d21b1e0480a876331da8b6439

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 997ad8c79f05fc76a9d0d32db4cb063ca895db57d0f0b5df4ce6ae2d50b23e8c
MD5 d6795b380fd0cbe4cdac8c720a7245d2
BLAKE2b-256 5eb0bbb6efddfdc69869b1818001d4fc5dd426cadddc0a984f2e50e2ad08199e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0edde7d73bb045e1f3bc437b817aa0ab83369d195dec9f4a12be36541c63d71e
MD5 0f33cdbca2ad4e0fac5e076dd5aad3ea
BLAKE2b-256 6148d158f5432bf76611a35bee5a9ddbcec98cd8efb9852c1ae0d87dec953925

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 93eb920e8c2e92b6f9005412f123dc4a7a2ade7168950343fa0f2cb1976e48bf
MD5 06ecc6dc0b64012c8c2b64683d2a1827
BLAKE2b-256 4ef481ec6c3cf6ddebd7cc65c46033914ac8101910be5933e40b360fe10233f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 3a2d147feabd0af92e30161abcc50d8f6ad3a61f95d4851b3775d24d6e86256a
MD5 f6aefc87d53b938b02e5164cbce5d7d2
BLAKE2b-256 46b163d6253aa517940437ecc9e562cebfc1da8c4b48d3fd466c0250d69faed1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d49528c1db7b805310a69bbddae7cd9046b56d7886f8dd7d668e7ae16f5b95b9
MD5 20dfdf5b784e364f7cbe1b288c1af5c8
BLAKE2b-256 f0952d141d9ab5cf82ed7d7e2546999a66272bd075c347e909ced24de7ead4ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a538a5dfb4b6af598c640d4eb52d37f0a62b8ffd11d841e9280cba3d676d656c
MD5 766bc9d4d205c503ffcc9592160da422
BLAKE2b-256 84005484280aa7e724aae7d9bf5d55d2b49c3af619ba3a3953c77c41090b42b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8581f9ea58c45f69f7ec544df62fc4b60e1c390bf63fb78089b69d8f67e36c44
MD5 6c24c0391b53b4b0117b5fbf5c59694d
BLAKE2b-256 2a24994f0eac4b0cd39fa70604810aafd7588f2d12dc6eaa77d46c26d887e629

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9f37565c9887bed0d7c0d6e680d262ca8ee40cf7a661bb1fdfbca639e50c7eb5
MD5 fb308bee6920759838bf62b52c50b1db
BLAKE2b-256 294510108c617a45ab97aed9cfb03383f1cfbdeda5055f2f41dd70a2e32ff478

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 f0113f60cb487ac722a102b5e62678655fc06ce7407bfde68a4e3a6fd5ce24fb
MD5 5689e6fa6addbccbbf6039b82316870d
BLAKE2b-256 e39d40ce42d10a8ef9f7467856f331ddca5eb78cd2ad7d16d1047f3a64efa655

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 33569539358319531df2478891cf173a970640cbd5f55506375898157c10d5cb
MD5 c7ba969835a010b8dc0a0a556453e98c
BLAKE2b-256 752786c76d113abedc436da979a7767abedce0e4d04add9e9ca016a62d457dbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 74a18b09034eaac1f95462b76ee109721770abea245f7b9d1829be47f5ee5f8d
MD5 e5be83e04b0fce31ed01816252179d53
BLAKE2b-256 6ca356be52ce6da770b86422673da3f0dbf87f9b3609807d79397a77fe6385bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 dc3fd08eec2f58dbb767d8d85224dba998f39bd50080b9452dc96e1650bff371
MD5 07270ea958d013927635f67229e1cd5e
BLAKE2b-256 582fe0a3c1068e5548fa183053c4320527fe8c523248704f6e8e5432a585cafe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a96acdaf90f7d201d8b811da0cf2858cbaab8c0d21135bcf02e60478d259f487
MD5 601ce0681c5360e315584867a8ca1cfe
BLAKE2b-256 5d863041ba806515d06f7cade91ebc6d87f97292acf4478fb8f99954ddb6cfbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp38-cp38-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 46d0b8cbc40ed51a5e0c91a618edb529834cfa3b50d8fbc9a94646a23ae7656a
MD5 c4d4770781fe6924e2e66500b1cfd00a
BLAKE2b-256 43cc17743625f8122b9ff4c59ed70258f73170afc7bb497d0b9b84eeddb20563

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sing_box_python-1.13.21-cp38-cp38-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 345649a3d3a9f615a680e5fd54238f6f2e50b7c9076e1adc43cf88af11ef3319
MD5 eb8d622a27e1aa4af85ad4e2f59d8916
BLAKE2b-256 b890ff79c7e9ecb86cd65a462ff3e20873be615aa36f3d0af775e9a7dac8b2e8

See more details on using hashes here.

Provenance

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

This release

1.13.21 This release

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