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

Uploaded Source

Built Distributions

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

pyboy-2.7.1-cp314-cp314-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.14Windows x86-64

pyboy-2.7.1-cp314-cp314-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyboy-2.7.1-cp314-cp314-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyboy-2.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

pyboy-2.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.5 MB view details)

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

pyboy-2.7.1-cp314-cp314-macosx_10_15_universal2.whl (11.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

pyboy-2.7.1-cp313-cp313-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.13Windows x86-64

pyboy-2.7.1-cp313-cp313-musllinux_1_2_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyboy-2.7.1-cp313-cp313-musllinux_1_2_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyboy-2.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

pyboy-2.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.5 MB view details)

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

pyboy-2.7.1-cp313-cp313-macosx_10_13_universal2.whl (11.0 MB view details)

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

pyboy-2.7.1-cp312-cp312-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pyboy-2.7.1-cp312-cp312-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyboy-2.7.1-cp312-cp312-musllinux_1_2_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyboy-2.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

pyboy-2.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.5 MB view details)

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

pyboy-2.7.1-cp312-cp312-macosx_10_13_universal2.whl (11.2 MB view details)

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

pyboy-2.7.1-cp311-cp311-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pyboy-2.7.1-cp311-cp311-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyboy-2.7.1-cp311-cp311-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyboy-2.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

pyboy-2.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

pyboy-2.7.1-cp311-cp311-macosx_10_9_universal2.whl (11.1 MB view details)

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

pyboy-2.7.1-cp310-cp310-win_amd64.whl (4.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pyboy-2.7.1-cp310-cp310-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyboy-2.7.1-cp310-cp310-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyboy-2.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.1 MB view details)

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

pyboy-2.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

pyboy-2.7.1-cp310-cp310-macosx_10_9_universal2.whl (11.1 MB view details)

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

File details

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

File metadata

  • Download URL: pyboy-2.7.1.tar.gz
  • Upload date:
  • Size: 173.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for pyboy-2.7.1.tar.gz
Algorithm Hash digest
SHA256 91d2c91e49e01e56e9616781998b0802fd0ba15a943362a94d4331ccf41fea74
MD5 3c68d39b55f67277453f516d6b78c9a2
BLAKE2b-256 13c2e457837e3d0231ce71296eb901e5d4fdbc35759e7601399c5d779ea94009

See more details on using hashes here.

File details

Details for the file pyboy-2.7.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyboy-2.7.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for pyboy-2.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cd72a0892cae8ff3d8b79d1f212446ae649ba21cebaef5e4a682cc899a75cec6
MD5 4622d0f2eb377ca210331087ac95364f
BLAKE2b-256 90408fa5ae610fb41c64a8c9599400468fb58766d968e311481436e143a49d9e

See more details on using hashes here.

File details

Details for the file pyboy-2.7.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyboy-2.7.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0edca70a61427aa537b206ed827061da96cbf9ef09517f8d35381938f3f1ca6
MD5 e1500633f34caf8b6bd112ee8d79cbfb
BLAKE2b-256 bc29d16a89ed5d6a5c44d61ef60c7dda68a30af6973a58e60ddffab99877b670

See more details on using hashes here.

File details

Details for the file pyboy-2.7.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyboy-2.7.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e4de86583fa4f90f8dab5e5a5fa008cb398ca0ef9fad428e07658d2c9e3a034
MD5 2ed016b5f1f526a35b0dc45b963d279f
BLAKE2b-256 01d753cac3016ec3525329cb66c7c94038177d42e46489405084ec81359ad284

See more details on using hashes here.

File details

Details for the file pyboy-2.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyboy-2.7.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bdd0c8fdb91c2e05f7c5e17c8f9e37e6115a55f8c175bf4ec9cfc530caae3c03
MD5 47a848ae1b02731349b8dd5a4bae96f0
BLAKE2b-256 5b2c4a625c6a74dc1d57e0ad6239670610a53cc1569eb7086eb37d7273ba69f6

See more details on using hashes here.

File details

Details for the file pyboy-2.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyboy-2.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8c45d33a46ad5eb92d9de2413fc0070e4b5050165c8f3ffddc3f2d322d9ebd6
MD5 25b12bff15a80e6a4562aa070ce13b0e
BLAKE2b-256 ef9ac2c8d5a6bff0295b568519e98b0cba2bdc6fba3d5d3bb0e675538731ff24

See more details on using hashes here.

File details

Details for the file pyboy-2.7.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for pyboy-2.7.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8ea65a0013e5e4a09cc5a0dfa4e73b83b93a9cfe38ea3efbf62f3d5b94597c7d
MD5 6b15f19a2d7129aa565a7315105fe48c
BLAKE2b-256 641decbc000ee86e2a6aaa4f70c67e3b4d14b91bbd4c5c703003fdb988fc6470

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyboy-2.7.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.13

File hashes

Hashes for pyboy-2.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 95b664668f389638811218837d7d4cfead57af28f7a2c1f6e5cded0a7c42db8c
MD5 7f6c2c91852b471cd77805a2783daeb7
BLAKE2b-256 13b7f851824ba4d100079f11dd72df0b68e07989cb4d5624bb934ce809b699dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a7e4d2f94b1576bc3896c76409a9a2c3a685e6af31c9fc31c63ced64add9fea
MD5 eb1b1662031c17d6606e5eacc527af3d
BLAKE2b-256 0db19cfd64f14f138189432e8fe3b7236919a67420fde68bd30942a86fbc460d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 edfa603e0cce6c04e5c18fddbc3ed7f580648f65edaa51112b63e47285e87f02
MD5 a25cc8b31392e5a68852960b056c1502
BLAKE2b-256 d01c141a12c35bf3549d298b835cf810f7438969c3472db52c699030ca9309ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20d26b6d59316fb3f9f178544be1c9228416dcb51d2725091b2b1ff7697c27c2
MD5 ff1ce8a63eaeaff1847107ca240f0975
BLAKE2b-256 8b887d4c0f532b583c51cfaff73294ee81dd801f12159335a6c6269e4de78106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5773495920fe6b214015d810ecee21a3d88ec4a1548d57a2729580189743c3b
MD5 90cf83643932dda5d60d5921112a0d3b
BLAKE2b-256 3576bc911a605cd676552743330b18098ce6820daaab1ed9d7518637b97760e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e4e5af21084b13b4dd4ed193a2bb2bde349875d6222055287214550b0d9656e6
MD5 9f17370d402a47e0472f2daa6172b362
BLAKE2b-256 dd8708bafa1a0aab23779943e2f6540fb6e5ce465428aad4a231e53647ff4667

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyboy-2.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 116fb3a7eeffaa5188a9d4f217e06259339379041d73853987b0aef87c670349
MD5 5d571a790f6be0de5582f9023cf95a73
BLAKE2b-256 87547cc620544eb58cea6b222c401af0c72138fcfb9fce14351df986d7fe0afa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d978fdf6eb66603b03f759802effd4318a32c4158818806d3d54ab7e6f03159e
MD5 bd81ec9ae1eb0693c69680f5d0a8d627
BLAKE2b-256 100abb8edb6ceeb15084bda438faae9c8a9f020fce3aa0e551f6096c97d1da7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e904aa130754e143624023355f9e3c19c90d6096091006c93637fbbd677b28e3
MD5 eb608bc6810525b85c186041ef34504a
BLAKE2b-256 cad41dbefba572b7a414f413c4d2fe771c6e393be1500d8cc92e1ebd59b582de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2235c4984275d3efe98d524ae0212e79fff37f21089831fd4aa0c6a1c0cef22
MD5 e9a68c1d961a902e227142e98142a878
BLAKE2b-256 3ea8bc8e2cb3b7f8f56d5a50a4c8e5d05ec174c3a94a4f846d07989cb049704a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ab0179647c0edac826a4c73f85f130109c8b24d923aafff711399d473522d22
MD5 5a0e7723034f3cb0a7ada9e4ec02b4ad
BLAKE2b-256 7cc659f15f27d8205fee89debf8983bf27e3b6f69699166626de32e25f2c0db8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 5e38a8342d572e1a00094a16dad30a4692ab08d1307e3e9b7fb3a377ecf061de
MD5 065aeaf65795b87ff1f9551f90e22584
BLAKE2b-256 2847f655454510332c54fd8620126ba60988b88d31dee5d4114f80d1070ebd98

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyboy-2.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7ffc3fc065e2ca7a4867060451ad86726f4e14a7fa8282baa3e5ec9045bf8de3
MD5 910c184da2e5a291bc24707d3e05749f
BLAKE2b-256 b7f6d88d64ff289a537e11771df6910730ebeefe32a37112017cf728408b4ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28942c74bfef33588037bdaf7fce11b68f351c509c7328f90372f4cefc4b12ce
MD5 ee0121e3a7c026263df4a08f1a063a37
BLAKE2b-256 9990be5ad589a03143da84656fd8dc2da03f448facd5fc32e93a0c029f505297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e902fc6e7f67722f8fc8d0f959bc1b0f2c8e94987529407a77fda11bcb4c4a1
MD5 6a52c7fc3a568dcd2c97214c0c59eb15
BLAKE2b-256 a1c3ce7a6b13cf7099cf55f7acc5993474481676ce334ea8bb80f9f299eeef66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3970d8eb71ea8c43c54c6a8a37c4abadefd40a8a9571685a807938bdf15c410
MD5 b556a76f741a6378994aee38521e86c3
BLAKE2b-256 344f812373604a6bbd077d7c249b0e25d6b52e4af17094ab150a5602db1d3b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ea242f374c1464393d9b9be2c7090155d24a11fc27c65377d2dd39fa83673ca
MD5 7c253de07e7373281bb86855e68d6255
BLAKE2b-256 9059cd36d4dba493a09e64da56fbe7cd4a8e3030297a87faa4cfc9b85d95c1fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0707edec1c64d854c5ab5db3d5001308f14691d412575c79f366740035667c61
MD5 dbad686c240d286a853294dab7ad101f
BLAKE2b-256 863e74cab34530b86a45e259f5c1cc0775844436198d9967257a45ec3ca74780

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pyboy-2.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 700d0317c0e0ae9d3fd46b51a81495f2b456613feb52ceee53f80d9e26016644
MD5 8b82aa7d3a79b2a954e1322bd2231f76
BLAKE2b-256 bd744a8bf9e6f03ddf421fe2a35775f6cbbf17984c141e413cec8f00a05b9ef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0c708dbb22e5d81b6cbe7da271a21ba7ea48f1f8da5971e7d7735441b4817af
MD5 82a511b5b73b8f0c890185301f8fd10d
BLAKE2b-256 e550950a689976d4eb75aa857399f9380ba65126f9215a973cec41742a993c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9b5475b61ef65a60f75e155602975bc7b749b2021383f39fa3fb757f1634e22
MD5 46aeb98c791f1998a7a21a11e44fa7ad
BLAKE2b-256 417620737bccfdf1c392bb7f6ba9bc57bc86798242ae147bc472af4ccc3f7055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca65a205f03b16e16aee3ceac1cc80ba2da181bdfff356e1b28169fd565b1741
MD5 f7c054180c205959812f463ffc7b5bd1
BLAKE2b-256 b13ec984c3d1df52937a2afea8acbfc6fcd917a8ecbd82df09cd280fbe85b7db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac386904ea3285645d0873ebb5bd953ec045623445a45ea2cba1343d585e25f8
MD5 12c98493e8487fabe01e39e7286a12c3
BLAKE2b-256 cbe8511b9211f2dd59494f6c44beab55661791ff749192811829b10c41c17d70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyboy-2.7.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 130ebf6eb002a4464a7f41b70f562294c66c4f716b22b241cacd70a0f344e606
MD5 b7df887dd3d9fbe08f9d99a3b15013f3
BLAKE2b-256 48d9d0ce0847a0013e00df7c333ce11dffe0e3485c7d7aa5b21502a449837309

See more details on using hashes here.

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