Skip to main content

moonlight-python

Python client for Moonlight / Sunshine game streaming. Receives decoded video frames as numpy arrays for computer vision and robotics pipelines, with optional synced audio capture.

Installation

pip install moonlight-python

Quick Start

from moonlight_python import MoonlightClient

client = MoonlightClient()
client.connect("192.168.1.100")  # auto-pairs on first connection

with client.stream(app="Desktop", width=1920, height=1080, fps=30):
    client.capture("screenshot.png")          # single screenshot
    client.record("capture.mp4", duration=5)  # record 5s video + synced audio
    client.start_recording("long.mp4")        # background recording
    # ... do other work ...
    client.stop_recording()

    for chunk in client.audio():              # real-time PCM audio (float32)
        process(chunk.data)
        break

Audio capture is on by default (record_audio=True); recordings bake a synced AAC track into video files, or write audio.wav alongside image-directory captures.

For full documentation, see the GitHub repository.

Download files

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

Source Distribution

moonlight_python-0.3.0.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

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

moonlight_python-0.3.0-cp314-cp314-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.14Windows x86-64

moonlight_python-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

moonlight_python-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

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

moonlight_python-0.3.0-cp314-cp314-macosx_15_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

moonlight_python-0.3.0-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

moonlight_python-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

moonlight_python-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

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

moonlight_python-0.3.0-cp313-cp313-macosx_15_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

moonlight_python-0.3.0-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

moonlight_python-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

moonlight_python-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

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

moonlight_python-0.3.0-cp312-cp312-macosx_15_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

moonlight_python-0.3.0-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

moonlight_python-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

moonlight_python-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

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

moonlight_python-0.3.0-cp311-cp311-macosx_15_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

moonlight_python-0.3.0-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

moonlight_python-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

moonlight_python-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.6 MB view details)

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

moonlight_python-0.3.0-cp310-cp310-macosx_15_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

Details for the file moonlight_python-0.3.0.tar.gz.

File metadata

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

File hashes

Hashes for moonlight_python-0.3.0.tar.gz
Algorithm Hash digest
SHA256 7f425f410c9f0ed27fbeff32e3a4e040a86f2123ea3aeb777e689f3ac26d2910
MD5 78f22c3da782998c289fb531b0b2fc36
BLAKE2b-256 8a205f06521fdbfb28dc08cc4147eb8bd7b73f6b31bd54a4d99c835b7a0592d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0.tar.gz:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 81f4198c734b28e44209eba5cd5e166128808fd3666d8c0d41dab004121f42e4
MD5 a71aa503830330ca211c9729aca4ad74
BLAKE2b-256 c6f57eb518c2181d46743c993312bacb7c69aca387bdac085318822bf97b7ad4

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp314-cp314-win_amd64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e14fba7141c09dddac1e9299f15ca5e43920857a575a7996b40030ad58c99aa
MD5 b97b03df8419568a31310922f92da74b
BLAKE2b-256 5777b77eb84fc63c4e04a4bc0d289e2350b246cb8c1c88ea829cda04de2af254

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e49a547dcad389fd47b615cd14689eb22bf7aad30e1b3a29e67d90ed0eb2f9d
MD5 46e51228fbe33140532cc26fb5cda0e5
BLAKE2b-256 2c2e2ef8ac751b94d7b62e98c35b83ac4b302466c489f2a0608609534627de6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 23e6e1707affa18410dc048fd6e3940a3da408b0bec65dd2a35da0da756963ff
MD5 6a42fd729e50d4969a7021791517c6a4
BLAKE2b-256 66b8f8668cd9d3361e01d8f1ce470e5269a032d136824a84b5aafdc0a003eb03

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3fe7d7c26e68bf05c4f57d54bc312dac44649c5e1b06a6727a258be78ed1c482
MD5 d4abed5a64a2d6daf94b6e166ab8cd40
BLAKE2b-256 e4caee2c9a93cf1a1a8b52b23540a15a3fed3afc54e3774093ad976b80cf5273

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 069c71834abb79d86df949d5c7a5b5f136e7d9b2210bf309b6eba6beb15a1048
MD5 baebdfae20c2b84cb8f99bb59bf4f9f0
BLAKE2b-256 56ffa8cec463e5beafeafaeacf2be6b86accde3571d05318725ec7d790aea428

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca0549bab7c5afdd7d1611e9722d8889f0f1d05718adafecac583d69ee6f7ba8
MD5 76c3a4a6ec4888af9717ffa15c1bcb1c
BLAKE2b-256 de5ccb49730ff638ad0279414631a23cc2420fb5466a3d3fbc367f87643e72a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7f6b2b79853191135c872890d43ee54601675b803da46949b767e50e627b9f96
MD5 75d0cae5302c71f4e24c80c126a09fc2
BLAKE2b-256 93cc5b2b928f171c225d6201c91fdda73ef4f67a19e2017cb8581ca09a45a3c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3653a6827f933acef3ef735bcb7010461b7f4b22f7e0b5c748dece0edb823391
MD5 8972cce8f265ee922fc283db6d5ca4cf
BLAKE2b-256 9d85abc41bff1c7a8f3d26b623a19457a0754240d1fb0091f926e4fa3f84c98c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45f4b3352a05b012beb3681849a21405ef97a232cd7c05f39998a803d905d13e
MD5 00a81db2508ccf7f9e2114bd24194198
BLAKE2b-256 124364c594c2dc6fc6154331bd28ae2f0ad46a5c797b76ae2831332072e13760

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c4b88bf3a7ec0c89b6904c7dcdf25c7189b83dfc882b9af8a0aa8a31b07b648
MD5 03d7900b92f9d27bd93e2302bd622071
BLAKE2b-256 18761a749c6517e21b5883c8106476d65214e83788fce1c5209653527f0da40d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a17f344592ae094e11e950437fda760d481604e38b906207001e0daaf5a0cd9c
MD5 2bad238d5b2e811f4eb33ac86bdc9a5e
BLAKE2b-256 ecc78e615da60b1adb5281c00d937bd048a4c80a327fa8cce5e5490113979867

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aa6234a0900891a6a1e32b33da2753e90b9db37453c1074400ee840e3ed3f265
MD5 636749857bd2941807d84474930b0b5e
BLAKE2b-256 c494acaa6866f28e8d3e0ff367418bae2354d4abaff1fd965203eae675904bcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7cdd953d174aabbd02e36522a84371120391a288cdb57f6bde58d6f00c5c5292
MD5 2adbaf723a9a2985eace303296359ac9
BLAKE2b-256 79f9a3c3df9ea4b2f5a8e23d12cd55fdce6d855e99d64d2e1c7b4fcba4666a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8ca3a84f90c6d9007efa54407a1a1c50d75e748bf0d06d474027343cc3967d1
MD5 3f988174e080c944a19c20ae26dcce96
BLAKE2b-256 e504e36b74d9ab33959476e60997ce8ece79fee42d7d2f48d6f870d2009aec1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ed91431c8af5ac8b90cfe68f92a47394aeb62d517340cff06db38270320e9fb5
MD5 8333c2d22cee7813b458f724c0f275a5
BLAKE2b-256 a0ca197d57f41e606459c7f5fa298c0cab1bd9841076031eeccddf2152269ccf

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 81f757bf4034562dad8ca6378d7045935c269314172bc960d7e34f6a118d405f
MD5 20ebb30c86d7b15dc7e7d52eb265d917
BLAKE2b-256 fd50f13e4080648ee1d889d774be37c2f8edab010337d2fc8c66f7caccaf302a

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0ac5d7ddc3be51420539c2c218815cc5bfc4c2b72a590cfb443af40054e334f
MD5 fe9ecf81de7b6a5519d1cd456589c8a7
BLAKE2b-256 93ff12b92ef5f95d8806f7479df700f2f75633eab057e9aed53b334db36253b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4c9e620e6f2b413b86a767a955dbb4600eaba2b882ace392e83981ff60f450e6
MD5 e3346128ea13c82666a706f3b4b08bda
BLAKE2b-256 d2928a1b45c9f0ab5d6df2fcacea3d1ece4a825ce945f7ca868299c90a956337

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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 moonlight_python-0.3.0-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for moonlight_python-0.3.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e61f939c749346798e3a9a0da698f87fb678eb7b3cfbfee4b5ce08a0d3832f58
MD5 7b1452f922b934bde8b6ae2e602528d1
BLAKE2b-256 3eab3c0d29768a2078495895cd17d2f68cf186bffcbb4845dcfcfa0f65d4c37f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moonlight_python-0.3.0-cp310-cp310-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on StanfordFSL/moonlight-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

0.3.0 This release

21 files

0.2.0

21 files

0.1.0

6 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