Skip to main content

Game Boy emulator written in Python

Project description

If you have any questions, or just want to chat, join us on Discord.

Discord

Train RL agents to play Pokemon Red Rewind any game
Play the classics
Create your own AI
Beat world records with AI

Getting Started

The instructions are simple:

$ pip install pyboy

For details, see installation instructions.

Now you're ready! Either use PyBoy directly from the terminal

$ pyboy game_rom.gb

Or use it in your Python scripts:

from pyboy import PyBoy
pyboy = PyBoy('game_rom.gb')
while pyboy.tick():
    pass
pyboy.stop()

The API

If you are looking to make a bot or AI, then these resources are a good place to start:

When the emulator is running, you can easily access PyBoy's API:

pyboy.set_emulation_speed(0) # No speed limit
pyboy.button('down')
pyboy.button('a')
pyboy.tick() # Process at least one frame to let the game register the input
value_of_interest = pyboy.memory[0xC345]

pil_image = pyboy.screen.image
pil_image.save('screenshot.png')

The Wiki shows how to interface with PyBoy from your own project.

Performance

Performance is a priority for PyBoy, to make your AI training and scripts as fast as possible.

The easiest way to improve your performance, is to skip rendering of unnecessary frames. If you know your character takes X frames to move, or the game doesn't take input every frame, you can skip those to potentially triple your performance. All game logic etc. will still process.

Here is a simple comparison of rendering every frame, rendering every 15th frame, and not rendering any frames (higher is better). See pyboy.tick for how it works. Your performance will depend on the game.

Full rendering Frame-skip 15 No rendering
x124 realtime x344 realtime x395 realtime
for _ in range(target):
    pyboy.tick()
for _ in range(target//15):
    pyboy.tick(15)
pyboy.tick(target, False)

The Game Boy was originally running at 60 frames per second, so a speed-up of 100x realtime is 6,000 frames per second. And trivially from the table above, simulating 395 hours of gameplay can be done in 1 hour with no rendering.

It's also recommended to be running multiple instances of PyBoy in parallel. On an 8-core machine, you could potentially do 3160 hours of gameplay in 1 hour.

Contributing

Any contribution is appreciated. The currently known problems are tracked in the Issues tab. Feel free to take a swing at any one of them. If you have something original in mind, come and discuss it on on Discord.

Discord

For the more major features, there are the following that you can give a try. They are also described in more detail in the project list in the Wiki:

  • Hacking games
  • Link Cable
  • Debugger (VSCode, GDB, terminal or otherwise)
  • AI - use the api or game wrappers to train a neural network
  • Game Wrappers - make wrappers for popular games

If you want to implement something which is not on the list, feel free to do so anyway. If you want to merge it into our repo, then just send a pull request and we will have a look at it.

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-2.6.0.tar.gz (169.7 kB view details)

Uploaded Source

Built Distributions

pyboy-2.6.0-cp313-cp313-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.13Windows x86-64

pyboy-2.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyboy-2.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyboy-2.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (5.7 MB view details)

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

pyboy-2.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

pyboy-2.6.0-cp313-cp313-macosx_10_13_universal2.whl (9.8 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

pyboy-2.6.0-cp312-cp312-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pyboy-2.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyboy-2.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyboy-2.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (5.7 MB view details)

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

pyboy-2.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

pyboy-2.6.0-cp312-cp312-macosx_10_13_universal2.whl (9.9 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

pyboy-2.6.0-cp311-cp311-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.11Windows x86-64

pyboy-2.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyboy-2.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyboy-2.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

pyboy-2.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (5.5 MB view details)

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

pyboy-2.6.0-cp311-cp311-macosx_10_9_universal2.whl (9.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

pyboy-2.6.0-cp310-cp310-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.10Windows x86-64

pyboy-2.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyboy-2.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyboy-2.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

pyboy-2.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (5.5 MB view details)

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

pyboy-2.6.0-cp310-cp310-macosx_10_9_universal2.whl (9.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

pyboy-2.6.0-cp39-cp39-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.9Windows x86-64

pyboy-2.6.0-cp39-cp39-musllinux_1_2_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyboy-2.6.0-cp39-cp39-musllinux_1_2_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyboy-2.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

pyboy-2.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (5.5 MB view details)

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

pyboy-2.6.0-cp39-cp39-macosx_10_9_universal2.whl (10.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file pyboy-2.6.0.tar.gz.

File metadata

  • Download URL: pyboy-2.6.0.tar.gz
  • Upload date:
  • Size: 169.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.11

File hashes

Hashes for pyboy-2.6.0.tar.gz
Algorithm Hash digest
SHA256 1bd718766e0d88beb7546811ff355d6ac23b05a8f11f134c59af776466f09c60
MD5 ce64a621c8588e3834e28b41e382f26d
BLAKE2b-256 023e7d50654dea8ccd3b5f035b3fbdcbdf677905dde588d6040df8779ba1537e

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyboy-2.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for pyboy-2.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d1fa34c17915911feb12c718d2d042cbea53d9b98bc273a418eebc4f7a60c073
MD5 b7d883faa703e0fb1f77e4194f3677ea
BLAKE2b-256 88e395140b006da4bd5feeda5abd707af9bbd3c35e49587d2e0b05371a800ea3

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b49585c693bd56e794e7d192a04b018c351ff58664ec2b42850f925485f5aec
MD5 473e0163bfd1fe30ed63659bb490bc99
BLAKE2b-256 9c72cef2540bd036b155658b7defd918c6e99b0c7ce84ad41bf05ad985354f4d

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb1fc65eab0e4d00f6371a05cedc8f09bf34e5f8a3f90fe96de507f02997ce3e
MD5 dd86ca97204e2e39b8f383e992e3fcac
BLAKE2b-256 c1fe4281d7b1bc6c60bcfd4def6e66ea5f1e252190000b3143e4eba943897cff

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea13fab641615f575b6145d701f5fd3911eac91f4b3de4a97f2922a4f8f743e1
MD5 5360c1104ec0c0be33d6dc5c8f54142a
BLAKE2b-256 857d70f3238dad3a09646d037b130675356e84ce5109d81d3649c8378e30dcc3

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a979f5b3be806c548cbf865f8f13bc2172589c5674eb596bd59dc4e922982d7
MD5 f20f0b95c412d9b36ce4f41c66bf94ef
BLAKE2b-256 aaa12ccb31d5dfdd35f627cc295b56da88feef0936cc2d756f361edf8a828e8d

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7c93fc23bedc449b254dc85cafb9d1aed8242bebe0ec05377bb7d05db308c1ba
MD5 fca57ff20a9639e8fe84672b73ae0132
BLAKE2b-256 55d9734abce27aa0383065eadf4fa0770ff35368d3aa8dfb37b018ffec46226d

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyboy-2.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for pyboy-2.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aa5400439093da26b42949c5a8469ebe9aca166dac4b6315a9f500667f28e610
MD5 6dcf6557bc026111f1c9cfdd5707df3a
BLAKE2b-256 29ba083e1e0ae657e36c0d08fee4c742d2155a2dcb05ba1275963b9754af957c

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edb5089fe5f3f5ea0035c6f3e46b1f0b015d0a06bdef72fd00a88e62330907b5
MD5 2d87ef78cc908601a278bcee098967eb
BLAKE2b-256 627db52d8a6473d5c18b4b3890abba0822ebde044d2a382044f6eeedd204f6ed

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91eae67e891fcd6df36f2277bb650618f9a8ddbe8bbe2e973bcbac247f2525de
MD5 c0af7b2c4c5d96a65d8d8b2236b25202
BLAKE2b-256 0fa37747d66140e3c16216d893d712a27d3239b00aa3a90c532a59d379a58415

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 616584db22d2ed5000e67a513528cd092546306f052df86f997e14d79d2dc162
MD5 3a0442092eca22c61185612d47ade139
BLAKE2b-256 74be0e40c4eca33d9bf88b3d8f854fcd344db6536e402c383a3e6a919b1bd201

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ef95895b64ec9c27e919716ae3e474c7196fd689883c8b5dfab649ab7f71241
MD5 a8602ec5ad528b0067a5dece8efb3441
BLAKE2b-256 0102b1bd19257c02f0b9c702a714980655c848ffbcc93755e782eebecb91b379

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 1ab4694409c6bfbcef237b8d89f7d70da6fbefd1e529163d702d2434caf32614
MD5 dfd22b9b36bd3716f1ec43770e1921be
BLAKE2b-256 1cfb0210dac45b9181be37ccd1ac30b692b492bc736577335fa433201a562c29

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyboy-2.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for pyboy-2.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 be821028c7f2e18d5d1aaecfe0c35ebfd27c3d5b397a98824631c42465f609cf
MD5 9f9e52d565e76fd30787db6c905e8bc4
BLAKE2b-256 287fb48fc9fe7fe4cfbff30e2f0585c017e7515d26dc4d7b785fc50ad9a2f8cd

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0663273c0d1ce274dc14ac198a0e33471bb38f685e3d0f7d7376ecab0e6151f5
MD5 7130f4c9c2c1e1366bfb4002c40a6a79
BLAKE2b-256 89cd94c8aa6eefb70b287d47feeacd6852b3f971c8811b4950465c87138a13b8

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 679f298315feedebbd81ee9c889a64e9a4610684066a12d1930c6273f3601fe1
MD5 73c5049148a3a427b6e05b700328289f
BLAKE2b-256 035c51061fdfb8334fbe8614d7bc4a06d77a0c2555c5cb4284ecd14e87d28aaa

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e7c7ba2c9cb5f3f1ffb4c8bc49c9613d9b6675f5c044313c3a2f0f5fbc9a76c
MD5 7391732c9c0b9e2aa0ffde142627d80d
BLAKE2b-256 3f99a88384c29df0a63cf5cb46764ee4bcc51f6b8ea7272e5e3e1562e726f87b

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 222ef6e2fe5c20403b96da212150acd51be7879da49c5b79759a0476ab8575f3
MD5 e819e0e1c31277efb5edeb0da4acff2b
BLAKE2b-256 da2d5451e6c8397b5dcee5c71029da09a60f8e0e8d7ece978373e4edd4393b17

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6740d9b98024d036b78394b613e0f20c63f48a7d7bf0faba70e592937eed9db0
MD5 66355f1a982127f6b4a84b4f063c826a
BLAKE2b-256 0ba4f01c9533581b996d5cb4444bd8299e70805fd8867a4a31df0046d2a0ff7c

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyboy-2.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.11

File hashes

Hashes for pyboy-2.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 37ea18a6202944ad5dea3c31d2c016fb4bae287c0fad91c6a96844c4c20dd619
MD5 c9eee3acf2819674e5d221ca52fe2c33
BLAKE2b-256 7dd41ce8b9b8e5ce884eaf4b1cfc8935f82c3daf22bd89e7557186dec54c0e42

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c5ecad1b79e9dece8ef1223ff389801c9ad8f74f13d014feed3447023a23ff0
MD5 93df4cdc3896988131057e3644568064
BLAKE2b-256 18ad18192613604f67573315f7dd3db2440b30bed2bc77ea489941ce222a6ab5

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0793d0b02bd3c0ab1e7e23483faa984009c3c26c881d338c71a44a6a54f18900
MD5 a104f699fcd4af70cf9c7126f62b25b3
BLAKE2b-256 107893138983c77fbb66d06316573940d61e4c593ee61ae1cdc3e8aedf348b1d

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4dacb698b652b65129fdb2e36290f84eff24579141c0e45e0b781db96fd3fa45
MD5 f9dcc2893dff14ad49a118b5c1bbfbe7
BLAKE2b-256 1adc0dbdbb933e6609a4ed1d6a5a45e6c6b84efbbab6748758fb3ca2d2f3701b

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 398dd3fcfbd5f9afec2b3102dc2ad0c1b3a19810b81978d7512087503bf670cb
MD5 19053679eaa12ee19d89cf4b11561522
BLAKE2b-256 753a261550c3ae8c4a7287f2de5bfd5ff61a9e34d042df02f68a4915d630cbc5

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1fd1f23785b4f6014eb67972ae81667d9b619b0e58382983cca1c66c0a111965
MD5 209498d6adee257eff871f060990258b
BLAKE2b-256 e7cba46c2b119ae4306748b65436af9a601d4e9f71c17123fae9ad563ad120e3

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyboy-2.6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for pyboy-2.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d86e3a5eee1917b3857359bbce4cfeb3daa0426211dcde506e1d04c90bbcabe0
MD5 a036c44d6672d441828ba71d2c55be34
BLAKE2b-256 e0e38072f79aa9af900e807d9dea2d8edb723d1f9dc5ec92c5724b868e1ffd9d

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6866f46aaddb90e1c86174124bdc8c965a99e471f4596e003578549c227ca4d8
MD5 0eb2dec2c88f26cbbbedd05ee773db1f
BLAKE2b-256 e11b1cfbb4264c3004e9b6ecf89db9c380a202de0ff1eb30cbca8f74b53c2216

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af16ebef0ecf14e3d2804e0e792f329ba0535189bf85b9254ce4365b3d755af9
MD5 25d0e9e86ea04f84e8170ae1814f67c7
BLAKE2b-256 3bca8d79e67b00bcd42e7c56cbe59c57c3931a138b7834db0fad74ce548edc2f

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ebe1e4b0527373a28db21e739c1073dfcd025c6edb715be10e0e97841ab1a222
MD5 86cfb35e287bb0e329c8b57712d5b783
BLAKE2b-256 6c6641740b8007f67d865e566b0b96f7e20aecee952c110169b973a0e4f1e131

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy-2.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f8883a851df113cc639406b500d9dede9e3cb13220ec5990338489cc31ce96f
MD5 1e4b07e0b6d4707f292449ba054a9cad
BLAKE2b-256 9f3b91bd14c36059f8351a6d8f0c41314eb237042f4f8c3b95ccd7f413b45b20

See more details on using hashes here.

File details

Details for the file pyboy-2.6.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: pyboy-2.6.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for pyboy-2.6.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6240f2de84c839f89b20554dd75db4148c24c6040d335678c267f438a57295dd
MD5 bfa62ecb1b6d15b9d7422f7705bc78d3
BLAKE2b-256 873c93505094bcc4cf0eafa48ba14028cf728dab80feacbf1f4639247326f8ad

See more details on using hashes here.

Supported by

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