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 many games do 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.0.tar.gz (60.5 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.0-cp314-cp314t-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

pyboy_advance-1.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.4 MB view details)

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

pyboy_advance-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.3 MB view details)

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

pyboy_advance-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyboy_advance-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyboy_advance-1.0.0-cp314-cp314-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86-64

pyboy_advance-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

pyboy_advance-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

pyboy_advance-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyboy_advance-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyboy_advance-1.0.0-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

pyboy_advance-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

pyboy_advance-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

pyboy_advance-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyboy_advance-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyboy_advance-1.0.0-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

pyboy_advance-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

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

pyboy_advance-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

pyboy_advance-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyboy_advance-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyboy_advance-1.0.0-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

pyboy_advance-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

pyboy_advance-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

pyboy_advance-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyboy_advance-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyboy_advance-1.0.0-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

pyboy_advance-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

pyboy_advance-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

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

pyboy_advance-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyboy_advance-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyboy_advance-1.0.0.tar.gz
  • Upload date:
  • Size: 60.5 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.0.tar.gz
Algorithm Hash digest
SHA256 9ba180abf3363f675ac0425dd9fea763a245c25e83c70939f6adb69a06054c80
MD5 fd75d5e4c1ab2223a7162b709da8924b
BLAKE2b-256 504399a2f53d88ce97308d2eeea8039e7e647b07096d071da2d98dc250872e27

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0.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.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7c5e6c1a186a1c27576935d43f3cfb56a35aafdf1b9d9280eaf4a9db428f4e8a
MD5 3ec6f804b741b6988b7278882c134347
BLAKE2b-256 b260a8b542ed4d780897a7b174c989609bd7c7aadcd52b2a29f8a42a69780c83

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d506712a09f095aa723f57fadc7722083b761266cced07e61ac0ba6c2e1b853e
MD5 dcac41b71b61c60bd4b426e03750c5f7
BLAKE2b-256 009ba647f8c56dc3cf6bc3aa3ad3d330027ca675a4474292b638e604806438db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0874388d31241c530c3bdd9bd0dac4192d0ae7e00b4b8e558f999c61414308dc
MD5 42dc5ee0cfb858f1898c28e88f8503e5
BLAKE2b-256 8befacc9d8e5a78d4ffa2ff643fbccbf36d9efb8d807109aaed3d8c2c18125ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fa36b951315748f257f9b562b98a12fd9401d778a16036151d0e6b3176e43dc
MD5 2dc343807fe2b415471560d7de88d902
BLAKE2b-256 56d95c0f2899dda46d00a77b4ccd573ee3cd94f469e1a13a67cb5c9a46440dab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8de889b99490ac6b475be0086727b41aad32ad0c1cd8fe80f4f92572ee21de9b
MD5 bd8ea7c2b68df2fddf6a5e56c512c2db
BLAKE2b-256 d2445e792ff6928d2c5a09ebe8870e205f8b27dcbacf66a4902e7302fb0483bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 728c4000277686053c2bb57726aa2b53c5b3a0a0494ba17b93c38d98fbc259f2
MD5 0cf86b9d90fec242a6e767342e24c4f0
BLAKE2b-256 6e17e62da38161505f62082a67e21810aefdd905558e56dc902a34c40f024fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a60b81d0020ca76a34a86195086e4572290e259aa42ef2826f14dbd79cebb2c
MD5 8fd8274ed5a97eeb87bdb19e9d585add
BLAKE2b-256 791f97a95c766105d0763481ff4fdedcbd19cf1c15806c3d83ce13c54e09cf79

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dcca0a905fcfff0115b692641083dbebea921bfe44f984eb7d488d50729e8b0a
MD5 1e2afeebcc70f5e89bf3a359dc162da5
BLAKE2b-256 13edac1928c232610f19de6c51898b5b9ead71415cb69062753e7c2a2e8d873d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 141b2e3ca8b53f623b66476c5f35e6fd37d58d2f10a7fbc7e594f12dac1acd0c
MD5 c837c06073064db767fd082c97e3e982
BLAKE2b-256 d2c10f1bc03299a54a95449e1c4f74cc552c212c395f22f93e2d7bccbfb60402

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3727f9d6ceee9e95bc04cf213df473bf68f5fa74e1c16c75255395f89119c744
MD5 a02b9310ed28949b0fa943b95388d01a
BLAKE2b-256 27b336d7aeea472c410f1038cf382b161f032c925c9b318e92fe292a928122a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c7736cdacf91d99722fc4846cdbf296e5b401aad78f54a1517ea421c84e12586
MD5 f781ea0653e87f0ee8e7f86946f70f42
BLAKE2b-256 dddf59060ebac9764046fb1ad42a09d0e8aad17f6459904ad519522e044987cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3aad8243d5e4d8dc049ebd2d0ee2c01cac38f026e1891690927eccf715b207b9
MD5 a625897092f4ee09d83b154e9881ff7e
BLAKE2b-256 9d21b84455d7d10aca528a657fa30ee31785dcd6d10fa70e329d05c4013bd7c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bca966ec6723b8402353374ff386638a92f70c7b61bb063a1e42cc63f5436148
MD5 c2eeaae4c77d1c8d0203bf0be9cfa767
BLAKE2b-256 d09ef02ade48d49e74f5d84de1d1abb1ccd22d17de631a889d6f8c21fa77e15b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c2f8f059285e33f39c6248dac8f4e02a4e680b144ce95eae2319245ad6d7889
MD5 a60e3ad2e44012d3fe3a98f45138a045
BLAKE2b-256 f8c73bc6414888bf941c7e4515194a90f0689909ec556d59edfccda9f455ed88

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d3fe8e803aef968125d715586cb1529aaf4095d6de8b9d4b25c1631b89ccdff4
MD5 07f7057c221f28cae045a3b83f87615c
BLAKE2b-256 622ad204b28ccebb1ba1833c9b6d26c6015a3f953a65a84fe8e21034974b1f3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 45f285ec7d97c2d3483a045689240c95f472ad252449f42633e0077fca6628b6
MD5 6125b6bb540d095f0e4ea0a97d53a4b7
BLAKE2b-256 99faf9dbd9c768fc99243d0f4d8c993edde462087c41fd069675089a542a7d33

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6c18f9410bd6175c3ee2f020c4e21b221a563a76c994dfe38f9458c4b7ead7a
MD5 f661020e1df20a7ef88b6c81cef67a7d
BLAKE2b-256 17df8dcc0842f556aaa9db65a81cc51a2ce3f61996188b6f197754c4cedc1cd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef8493691973d426413ef63dd85df3567dab940ce7f6cd2153c5b66e0e342f94
MD5 cb0a3fab520f1c1cda0cf1bd683fadf7
BLAKE2b-256 2de1eb6d543b0462fc768b3e89766fee5433d1c949c68db688aab787606f8749

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c682e9f3d3c4946d104d1e04db20344749b41105bc1bf87ce33d2c5c2100dc8
MD5 34e76e4a2cb6ca59da0dc26c70f37d10
BLAKE2b-256 a3dc1483f57a4b90a8d80f8e181637fd1fdf087144e15a8883930fcaa1f898b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2cf3f758bd658b5f5f252404e42eb04388d3dbf7eee79572a974025cbaa54672
MD5 b0590ead9714b1f82c8a6110947955d7
BLAKE2b-256 6b772e9841cdb6a62eb7234fabd9dc1ed330822c23d14a11b4d5869f7535d1ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3e1ca1b9899fdd576f048e8ebff1b8cc71f1bf1ccb7209058e9746e4866d8cc7
MD5 4c4a5f3688d7f06d773004b004dd13e3
BLAKE2b-256 7b39a67c9ac2a5a80a88ceef23895fc6e6307c8f0f9288765376ac6325caefb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d89dbb901a2cc117a59ee6f2bc842fac83ba2e45fb33df0a66cf5e6689d5320c
MD5 95545c67110a8d50fae0a0877725c5cc
BLAKE2b-256 254f71569d28855bddde1aee73d9540d73b4bdf87965f2e0a9807f2cdd2f5450

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21c63c0dda6060a9f71fb44a20c2a514a8cd0463f9b95e44e4cc0ea26575fdcb
MD5 388286485daea44947cec1d71d79ce84
BLAKE2b-256 5f0bfde7bd21f4eab5d0776aad0e8fd0e2b64105f1d3ea3c80ad8ca991ba0990

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a42f61ee0be1e306fda0267b893c6896ddd375e665c504afd9104f1bdaa1f9b2
MD5 093ccc9ed1a1d66a7482d5c9b639eee3
BLAKE2b-256 4f1376037ba0a404f6c2c780a7fde3cedd07b04d458a6b9315b3aefec10156cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f2e3a30e10878ec2ef359f5776d57b02c117141949ae55b9f8429147d0e8b8de
MD5 e63653543ee99d31ca0f661acb0169c0
BLAKE2b-256 0de8940116c73b6d467886cfa087ee81491b5fe2ac8ae65f484f6b30d76d6d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a3222055b5d232dc7799677843c7ea1d3483b1bf0578cff5196532efd78dcb8a
MD5 338bbdaa8813c9bb3c10a7f7d3b09eb0
BLAKE2b-256 4d4a72bf2bfbd9ef85edb69fe7740477e082e7333b3d00c980a5147b7d97a230

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b88472237874ee7605be66d756cbf2d84a4da9e350ebf29dd52bfe70c5a979f
MD5 1315bf1b204b0a868bc9450885eaf4c3
BLAKE2b-256 01461a6dc6e40de34acedd2ae6d71beb3a65defa12d8914e654ff60bcd735a9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ed9f954dfde3e0abf13dcd3f620fbefcd96a801dc607280bcef5aba72b89877
MD5 8bbaa111b5d710683cb9131c1418ce72
BLAKE2b-256 2850c7fa78ac17a1873465610387d5fad014b3e7172a69d8b787104f511dea5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d06988f19bf82b1f2c84f33e3638aeab136d841d222872111c0b9b3180cad510
MD5 a602151b39d4f19566570b8d9c524293
BLAKE2b-256 ff8dea73b4b9972cdac696829344ff00645fc68944d7b38b6013229b4fb7715c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyboy_advance-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5162ea60c801815e26c2d1e45be268b6567f5b4231cac7fcd9ca9a98c0343b8
MD5 105ea021b2d2f1b619e3e934f20293f3
BLAKE2b-256 907682b043f457aacfa3260be911161b4a119355262e66a84afd9c83cd7bf6e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyboy_advance-1.0.0-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