Skip to main content

Game Boy Advance emulator written in Python

Project description

PyBoy Advance


PyBoy Advance is a Game Boy Advance emulator written in Python, with Cython declarations for compiling to C.

[!WARNING] This is experimental software and under development. Some GBA hardware features are not yet implemented and games may not function properly.

Getting started

Install PyBoy Advance with pip:

$ pip install pyboy-advance

You will need to provide a Game Boy Advance BIOS. Normatt's open source BIOS is supported and available here.

Launch PyBoy Advance from the terminal:

$ pyboy_advance --bios /path/to/bios.bin game_rom.gba

Or import and use it in your Python scripts:

from pyboy_advance import PyBoyAdvance

emulator = PyBoyAdvance(rom="game_rom.gba", bios="/path/to/bios.bin")
emulator.run()

Performance

PyBoy Advance is written in "pure" Python and can technically be run with PyPy or even CPython (though games will be virtually unplayable with the latter). To achieve practical performance, we use Cython to statically type our Python code and generate efficient C code from it. This allows us to build PyBoy Advance as a Python C extension module, significantly improving execution speed.

Screenshots

Screenshot of PyBoy Advance running Kirby: Nightmare in Dream Land

Acknowledgements

Project details


Download files

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

Source Distribution

pyboy_advance-1.0.1.tar.gz (66.4 kB view details)

Uploaded Source

Built Distributions

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

pyboy_advance-1.0.1-cp314-cp314t-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.14tWindows x86-64

pyboy_advance-1.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.7 MB view details)

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

pyboy_advance-1.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

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

pyboy_advance-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyboy_advance-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyboy_advance-1.0.1-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

pyboy_advance-1.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

pyboy_advance-1.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

pyboy_advance-1.0.1-cp314-cp314-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyboy_advance-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyboy_advance-1.0.1-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pyboy_advance-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

pyboy_advance-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

pyboy_advance-1.0.1-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyboy_advance-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyboy_advance-1.0.1-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pyboy_advance-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.8 MB view details)

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

pyboy_advance-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.7 MB view details)

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

pyboy_advance-1.0.1-cp312-cp312-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyboy_advance-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyboy_advance-1.0.1-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pyboy_advance-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

pyboy_advance-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

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

pyboy_advance-1.0.1-cp311-cp311-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyboy_advance-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyboy_advance-1.0.1-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pyboy_advance-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.9 MB view details)

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

pyboy_advance-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.8 MB view details)

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

pyboy_advance-1.0.1-cp310-cp310-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyboy_advance-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file pyboy_advance-1.0.1.tar.gz.

File metadata

  • Download URL: pyboy_advance-1.0.1.tar.gz
  • Upload date:
  • Size: 66.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyboy_advance-1.0.1.tar.gz
Algorithm Hash digest
SHA256 59a1acdd1579904506bc2cfcbcbf43c8173703ab8c2640e5c6daf162d40d4f9f
MD5 5bf79fd9f5efc41335a377ad7324cba4
BLAKE2b-256 3e68791fb39b2f382f53ec913f348a5348adee7be399729af55a07dc21f2999f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1.tar.gz:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 63220a397fc91e91987b061269f7b2bb23500bfd43339447722a12cb82d04e11
MD5 6f4e2a5629f43e54ffc2c3ce825f3a4e
BLAKE2b-256 0e837f5ec2509bd51b4757840fc0f51c3d19ea7bb13fe49e6ae217543ddacc0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp314-cp314t-win_amd64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b34f86102034d3b5ebcc2ba2a7fcdf2456cbc2b96f7fa1844378dd7446a2187
MD5 cd99fe4ff5b1f4e90da8fbcb1aa4d920
BLAKE2b-256 5c35b2c4a095704c9c4ccfcd8790052cf821fac1186fc58aa257244855453322

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 461ba1b403f24046a6d89a658a254141dd289762d906581f2102c9ae4b5562a0
MD5 b0c3830d9a9ae658959b5e5a3e1e32ff
BLAKE2b-256 1cf7f78a8ab097fdc6e3358d2ec9cb76a5661473d005a81ca35dbabcb76e3348

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95524af7665b228f48727dbc4243c741a75cca416a85886acd202c5f0aca9aac
MD5 5d5e93551bb18fadfee0d40d80eb231f
BLAKE2b-256 9cfbf9cfac1fb19c02c4d48e365165518dd8b060f149ed317c42967a237f4f87

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 396a0aade6626fa86202909b3d924ed44415ed8b55b1f79e9dff43c1dc2f8402
MD5 37864a93ebb8b73b41d716819064005b
BLAKE2b-256 4fa942d1e42915275c4ecd53188da54edfbf74ae4b0231a24e51742e556a5351

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f0ab5ceb315e3c1ad961b8504635486e39a6630509bc14d34652bb6f55f4cfb5
MD5 7485fa63c5a178c936a6336a02825769
BLAKE2b-256 6c16c7783ba213db53b84cefcdef55a5288b5c5a33be48f2e456801d4d9fc790

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp314-cp314-win_amd64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a322cf954327945056ba2146caa8c766c502784184c66053ed04aa7d1569085
MD5 607d9df8886db76b90e14a9cd30545af
BLAKE2b-256 58f4ac05e17b63c39af03018bb5cfcd5577f668e5bc07ad3e6c7cdc5330c5451

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63b59370409b2653d0f387c2bb4daec5c24af7a72b8de1174a3837095d415c09
MD5 952eb2a70e551bf8056bea3264e2f746
BLAKE2b-256 608dadf7c82a43c093c831031eece696d72d2a97c8e51398ab70f1b9c271912c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86e38a932aa78d79e46b375e33cabe3abb72b00ba8ea6c92ee2969754a2d94b1
MD5 875b2c312e638474bcc316389108fffc
BLAKE2b-256 2e48286f85f6d440f80e18facfa7b9cf5a9130540b81491ef78e9a2cbdb3fddf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a13db05a783ddaad1d657097735ee37ed15f95f753eeb28f756baad5a4b1ae9b
MD5 8165a0328ddbf5d30bf31b87af3afcda
BLAKE2b-256 64eaa1daec34f0033a2964e2a97a4577b649d50e3a55d391cbced508646360f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3074e6b73141e59a6be21c1ee47221337ddba43ecebed2dd74285a3b8a963a45
MD5 246503e2d6f45d601cb1fddfe5a2f2fd
BLAKE2b-256 9d7aa40c1ac50c2e7b9abf0a5055356216f37a9f88daa530353eb03ad0ee6ddf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp313-cp313-win_amd64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6353f627e807501abb7f20f9f7a01bc6950ca7cee80efa5e9a38e4f2026e599e
MD5 91f4ea42cf190010872cb981f9b8c4f2
BLAKE2b-256 3057859cad454bd5cbf4a03066cce330732bbad997666f837be4f2373d9e3600

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a60bfecd8b85e20e0005a55213fe04a6119ce1b1faee2f20e0bb5915654f68d7
MD5 842d49c9b176755074c59110a1a32944
BLAKE2b-256 b398b3d1d46e87346668bb2bc37593505d356ee39a7620c99b9edd1a96983b9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c03597bc90d946b3a45b226f8393141f80952d3ca581d6deab5ad3ea9cb04a41
MD5 55c61e7ba03334c48419de52c3e9b638
BLAKE2b-256 8b43110a6953af8921e7d81ffd76db8d4ba206e0cf35b176d25c87dca2a90930

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 272ab2b72f705da941d052d41900acf969c5f878928e1c1e2465ff5e48cc794c
MD5 6fe8fd83911387e28515d9a3ce69fc68
BLAKE2b-256 2cb8253d58e3dd5ca67209032a1dc1064c2c69a13f315f5c89b503f74a6ae72d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e23a3be8ac19fff189aefdba92ea6dd6b212e4ee20ed25b3f075722f16e06aa0
MD5 96437f50404555c970123b4d1ab23829
BLAKE2b-256 362a9d295d7fcb58ecbac65aa4c473f2d5bad729e730991e26029ef6d95a0718

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp312-cp312-win_amd64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd62a884aa1c1d417dedfb9ecbd0c333e784e6a43dcb86ed7e045776a1c24740
MD5 a61dc7b5524030a35e6ecfe01559277a
BLAKE2b-256 8703e4a7b526a17e1bc29841b192738637e789e9635c0dcd360dc95020815ce9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4441b3c130c70126947fbcaf4680c502f7943bdf13548a978a0292fa74078952
MD5 17dd7d1a9a6d401e3b26685aa874fdcb
BLAKE2b-256 a26505f69ef280ae275d74ffdac06febd74e0e658cc95136c2393e9d3d88faea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 838a14f79d67ba3a958787e68e8efa6bd18c80820a64f95ccaf805d83ba1dded
MD5 8c4fd5a4f99f3c88416b423e0c5a4c5d
BLAKE2b-256 eb00a0db86e6a505715b926036473805d9cbf7a61de563ba53de3a90b1a5b9d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2e75415f54e588117baa3c3546b0a03e26424b0ee2528bd9fbdbe36416fce446
MD5 179e87a7ebf6dd2ae9ac8c884148f793
BLAKE2b-256 a93d95e66a54082a873f6694ec60b6da84d18f178d10af53e757970fc504bf31

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cd28599b4ca62f86f5d22993d6e6a476316d132ab4f3cf12fc4d5a80e8bbb6d9
MD5 4b0cff44a38fc14ddd582e2a6eba4bb7
BLAKE2b-256 3d4fb6f4c75a319bd1bc379ad1fb4b42ca0dd70570da6c41e745094f6e212c8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp311-cp311-win_amd64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 acb662bd2ab700713d3df2667b2c24d3d191da510db3b1a8c55f288fd31debe5
MD5 646ffbf02868e87dafbeae31a10b2634
BLAKE2b-256 1ad7ecf543f5f466559c3bc7c27cecadb6719404448eaf9f7442e792e36ad26f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11cc0df964ceeddc780a04baf07b145a0b751a6bae1cf67d141191ee44ef9d0a
MD5 6e42392426c7d8627f36ca6564c72cc2
BLAKE2b-256 e855a06d1f199f83cfd6599e8e68a7dc815e4da3af391289dd7bd368745f3124

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab492d82ef6844d24194649dba0730663f0067e7462da994ff2611f1e12fe696
MD5 633b41057ff946db26a28688df7b81f5
BLAKE2b-256 746ab6f0158387a10f36c73b7ca4ca37e58e23b3b6330cc34745f4fcaf97a09f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25b45db790e501d27b8e8fcc3d6b1db983c992f9395efb1077479951e139b4ce
MD5 110e5f3ab6ef088ac68c5a82f84fe4ad
BLAKE2b-256 96200ff869393174a97e8c6b306825167d32fbc4df792cbebbf872bb301204d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 678b697a3cc9d242bc4677366f3f7a9bd6517b0a4c8deba2cd9842db3bf01a94
MD5 af95898417e4cffd401d22042384a0aa
BLAKE2b-256 5f1f290d89dec40007e65dda1644dea49c5e75b6bcad76d3ece504d40c1d5a50

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp310-cp310-win_amd64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8f19e8029a3b0965818a7fddbf8b7edcc26f33413ad82c8cf367f5f2a9f2092
MD5 d72c46e548dea1723b4dfe2af92840e3
BLAKE2b-256 ec73b0e08bf415b56ea4729cffbb14ee193195720bf8d7ab17a4e876daeb1f9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e603a0bb792661ec5eced0d9e80371a670fc7c474400cb02ea214c289defc76
MD5 a4a2dc1e8613c5d7c1ebda8500874a88
BLAKE2b-256 d7ce08c144f59515dddfc30d8bd42fb6a5453e8df4aeb423b84398702126a058

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2bc4506fe4c3a8962efc93600a34fcd1bcefa6d5ba5893d5d68de333953f3d45
MD5 8b2dae4cb37a051573284b26b71de0cc
BLAKE2b-256 c6911229c1404cf664ac022cc3e5696cdbf24f4e54853b4e978db26b421af2c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

File details

Details for the file pyboy_advance-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c713025deb5c3da44c842b4575a79596076cb71fb3414bdab870b18a9bd42ffe
MD5 0e8bd4e5523eb0c331d2eaccb03c24dd
BLAKE2b-256 db19c8e7945f7c2bc44e4a0b3fc64eeab5a57ff211dc5ef105e7932d1c847345

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish-to-pypi.yaml on williamckha/PyBoyAdvance

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page