Skip to main content

Python CFFI bindings for Raylib

Project description

Python Bindings for Raylib 5.6

Libraries: raymath, raygui, rlgl, physac and GLFW

Backends: Desktop, SDL, DRM, Web, Software rendering

Platforms: Windows, Mac, Linux, Raspberry Pi, Web

PyPI - Downloads

PyPI Downloads

HELP WANTED: writing examples

Features:

  • CFFI API static bindings.
  • Automatically generated to be as close as possible to original Raylib.
  • Faster, fewer bugs and easier to maintain than ctypes.
  • Commercial-friendly license.
  • Docstrings and auto-completion.
  • Type checking with Mypy

Quickstart

pip3 install raylib==5.5.0.4 --break-system-packages

from pyray import *
init_window(800, 450, "Hello")
while not window_should_close():
    begin_drawing()
    clear_background(WHITE)
    draw_text("Hello world", 190, 200, 20, VIOLET)
    end_drawing()
close_window()

Use the project generator to generate a complete project. Example of project

Videos

video

video

more videos

Links

Installation

If you are on a modern Linux you will probably want to create a venv:

python3 -m venv venv
source venv/bin/activate

Then make sure you have the latest pip installed:

python3 -m pip install --upgrade pip

Then install

python3 -m pip install setuptools
python3 -m pip install raylib==5.5.0.4

On most platforms it should install a binary wheel. If yours isn't available then pip will attempt to build from source, in which case you will need to have Raylib development libs installed, e.g. using homebrew, apt, etc.

Windows

Binaries require x64 or x86 Windows 10 or newer.

Use an official Windows Python release rather than WSL, MSYS, etc.

MacOS

Binaries require:

  • arm64 MacOS 14
  • x64 MacOS 10.13, or newer.

Older MacOS requires building from source but this is usually simple:

brew install pkg-config
brew install raylib
python3 -m pip install raylib==5.5.0.4

Linux

Binaries require OS newer than Ubuntu 2016, x64/x86 or Ubuntu 2022 arm64. Otherwise build from source. (Pip should attempt automatically but will need Raylib itself installed and also pkg-config.)

The arm64 binaries are built on Raspberry Pi arm64 Bullseye with OpenGL 2.0 so may not work on other boards.

Raspberry Pi

Using on Rasperry Pi

Backends

Dynamic binding version

There is now a separate dynamic version of this binding:

python3 -m pip uninstall raylib
python3 -m pip install raylib_dynamic

It works on some systems where the static version doesn't, but be sure to read these caveats before using it

You can't have multiple raylib packages installed at once.

SDL backend

This is not well tested but has better support for controllers:

python3 -m pip uninstall raylib
python3 -m pip install raylib_sdl

You can't have multiple raylib packages installed at once.

DRM backend

This uses the Linux framebuffer for devices that don't run X11/Wayland:

python3 -m pip uninstall raylib
python3 -m pip install raylib_drm

You can't have multiple raylib packages installed at once.

Problems?

If it doesn't work, try to build manually.. If that works then submit an issue to let us know what you did.

If you need help you can try asking on our discord. There is also a large Raylib discord for issues that are not Python-specific.

If it still doesn't work, submit an issue.

How to use

There are two modules in the raylib package, raylib and pyray. (There is no separate package for pyray. Do not pip install pyray). You can use either or both:

If you are familiar with C coding and the Raylib C library and you want to use an exact copy of the C API

Use the raylib module.

If you prefer a more Pythonistic API

Use the pyray module.

Running in a web browser

Pygbag >=0.8.7 supports running in a web browser. Usually the latest git version is recommended.

Make a folder my_project with a file main.py:

# /// script
# dependencies = [
#     "cffi",
#     "raylib"
# ]
# ///
import asyncio
import platform
from pyray import *

async def main():   # You MUST have an async main function
    init_window(500, 500, "Hello")
    platform.window.window_resize()  # You MAY want to add this line
    while not window_should_close():
        begin_drawing()
        clear_background(WHITE)
        draw_text("Hello world", 190, 200, 20, VIOLET)
        end_drawing()
        await asyncio.sleep(0) # You MUST call this in your main loop
    close_window()

asyncio.run(main())

Then to create the web files and launch a web server:

python3.12 -m pip install --user --upgrade pygbag
python3.12 -m pygbag --PYBUILD 3.12 --ume_block 0 --template noctx.tmpl --git my_project

Point your browser to http://localhost:8000

Some features may not work, so you can disable them like this:

if platform.system() != "Emscripten":  # audio may not work on current version of emscripten
    init_audio_device()

This is all done by Pygbag rather than by me, so you should probably contact them with any issues. Carefully read all their documentation.

It does work for most of these examples

App showcase

Tempest-raylib

KarabinerKeyboard

PyTaiko

DOOM-Clone

Tanki

Alloy Bloxel Editor

Eidolon

Add your app here!

RLZero

A related library (that is a work in progress!):

A simplified API for Raylib for use in education and to enable beginners to create 3d games

Help wanted

  • Converting more examples from C to Python
  • Testing on more platforms

License

Eclipse Public License, so you are free to statically link and use in non-free / proprietary / commercial projects!

Performance

If you need more performance, do in this order:

  1. Use Pypy rather than standard CPython. It is much, much faster and will make more difference than any other optimisations you might do.

  2. Every call to C is costly, so it's slightly faster if you use Python data structures and functions when calculating in your update loop and then only convert them to C data structures when you have to call the C functions for drawing.

  3. The raylib.* functions are potentially slightly faster than the pyray.* equivalents, so if you need a tiny bit more performance you can switch your inner loop functions to these.

  4. There is a version of Python that is faster than Pypy: GraalPy. However it's not fully compatible with all Python packages. It doesn't work with CFFI and so doesn't work with this binding. But it is compatible with the Java binding, Jaylib! There is an example of this here: https://github.com/electronstudio/megabunny/tree/master/raylib-python-jaylib

Bunnymark

Library Implementation Bunnies (60 FPS) Percentage
Raylib 5.0 C 180000 100%
Raylib Python CFFI 5.0.0.2 Python 3.12 10500 5.8%
Raylib Python CFFI 5.0.0.2 Pypy 3.10 95000 53%
Raylib 3.7 C 168100 100%
Raylib Python CFFI 3.7 Pypy 3.7 33800 20%
Raylib Python CFFI 3.7 Python 3.9 7700 4.5%
Raylib Python CFFI 3.7 Python 3.9 Nuitka 8600 5.1%
Raylib Python CFFI 3.7 Dynamic Python 3.9 6300 3.7%

See also https://github.com/electronstudio/megabunny/

Packaging your app

You can create a standalone binary using the Nuitka compiler. For example, here is how to package Bunnymark:

pip3 install nuitka
cd examples/textures
python3 -m nuitka --onefile --linux-onefile-icon resources/wabbit_alpha.png textures_bunnymark.py

Advert

RetroWar: 8-bit Party Battle is out now. Defeat up to 15 of your friends in a tournament of 80s-inspired retro mini games.

Coding Games With Pygame Zero & Python is a book for Python beginners.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

raylib_sdl-5.6.0.0.dev4-pp311-pypy311_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

raylib_sdl-5.6.0.0.dev4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

raylib_sdl-5.6.0.0.dev4-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

raylib_sdl-5.6.0.0.dev4-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

raylib_sdl-5.6.0.0.dev4-cp314-cp314-manylinux_2_35_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

raylib_sdl-5.6.0.0.dev4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

raylib_sdl-5.6.0.0.dev4-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

raylib_sdl-5.6.0.0.dev4-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

raylib_sdl-5.6.0.0.dev4-cp314-cp314-macosx_10_15_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

raylib_sdl-5.6.0.0.dev4-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

raylib_sdl-5.6.0.0.dev4-cp313-cp313-win32.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86

raylib_sdl-5.6.0.0.dev4-cp313-cp313-manylinux_2_35_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

raylib_sdl-5.6.0.0.dev4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

raylib_sdl-5.6.0.0.dev4-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

raylib_sdl-5.6.0.0.dev4-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

raylib_sdl-5.6.0.0.dev4-cp313-cp313-macosx_10_13_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

raylib_sdl-5.6.0.0.dev4-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

raylib_sdl-5.6.0.0.dev4-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86

raylib_sdl-5.6.0.0.dev4-cp312-cp312-manylinux_2_35_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

raylib_sdl-5.6.0.0.dev4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

raylib_sdl-5.6.0.0.dev4-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

raylib_sdl-5.6.0.0.dev4-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

raylib_sdl-5.6.0.0.dev4-cp312-cp312-macosx_10_13_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

raylib_sdl-5.6.0.0.dev4-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

raylib_sdl-5.6.0.0.dev4-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86

raylib_sdl-5.6.0.0.dev4-cp311-cp311-manylinux_2_35_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

raylib_sdl-5.6.0.0.dev4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

raylib_sdl-5.6.0.0.dev4-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

raylib_sdl-5.6.0.0.dev4-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

raylib_sdl-5.6.0.0.dev4-cp311-cp311-macosx_10_13_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

raylib_sdl-5.6.0.0.dev4-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

raylib_sdl-5.6.0.0.dev4-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86

raylib_sdl-5.6.0.0.dev4-cp310-cp310-manylinux_2_35_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

raylib_sdl-5.6.0.0.dev4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

raylib_sdl-5.6.0.0.dev4-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

raylib_sdl-5.6.0.0.dev4-cp310-cp310-macosx_13_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

raylib_sdl-5.6.0.0.dev4-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

raylib_sdl-5.6.0.0.dev4-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

raylib_sdl-5.6.0.0.dev4-cp39-cp39-win32.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86

raylib_sdl-5.6.0.0.dev4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

raylib_sdl-5.6.0.0.dev4-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

raylib_sdl-5.6.0.0.dev4-cp39-cp39-macosx_13_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

raylib_sdl-5.6.0.0.dev4-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

raylib_sdl-5.6.0.0.dev4-cp38-cp38-win32.whl (1.9 MB view details)

Uploaded CPython 3.8Windows x86

raylib_sdl-5.6.0.0.dev4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

raylib_sdl-5.6.0.0.dev4-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl (3.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

raylib_sdl-5.6.0.0.dev4-cp38-cp38-macosx_13_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8macOS 13.0+ x86-64

raylib_sdl-5.6.0.0.dev4-cp37-cp37m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.7mWindows x86-64

raylib_sdl-5.6.0.0.dev4-cp37-cp37m-win32.whl (1.9 MB view details)

Uploaded CPython 3.7mWindows x86

raylib_sdl-5.6.0.0.dev4-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

raylib_sdl-5.6.0.0.dev4-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl (3.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

raylib_sdl-5.6.0.0.dev4-cp37-cp37m-macosx_11_0_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

File details

Details for the file raylib_sdl-5.6.0.0.dev4-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b8cf279d980c04ffec8f3eaf61a9d1eec8909681bf7138ceb6a20ab1172523bb
MD5 855f3f8dccc1b425de9a951f8306d648
BLAKE2b-256 76e22b1f3350420d88dc7259c43df34d2c6817ac2da26e66c0085637a03bec5c

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ede14979cca1cc41830f45460cb51ef6c2b1e2b925769378490a9f79461d4b0b
MD5 78987f89d7ae3c66af3f39febcb428f1
BLAKE2b-256 9a6690757362e8d0f2dc4ca42ced7824ab34aa6c104c0c12d506d404776f9c06

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b94070eedb74959c7cc3fd4c8a20ac940a07b3953519df59a2be4c2d4db2f043
MD5 fd2e91fc097b18f15974d17ce6f736e0
BLAKE2b-256 f1b336f5c78ce58bac4ab8dea491dcd71f7c259226489969fa5aa1180603543a

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2286b3e6e0ec5a3ab5920312cf277c0f216ee72bf00a8b66103166006f924ab9
MD5 f99cda5510f18b1640dde191e2467350
BLAKE2b-256 13f1e86d7622acb10d7a596e20b76eb45aa0c382e153a105414821c5de9388e5

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 dd5aa698b7454c0213e75d2ca5c3ad9bdb4fdbdbf5a57a0d36ae544b3cb67467
MD5 f9e85c5990270d01ba6e8569fa440179
BLAKE2b-256 a9db5651de7971c68b99fac5382a7616e75782bf8deb5b433bf49c32b80e1e70

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp314-cp314-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 b419d9b0d8c71f5f85742168094b01674a782cad1ca695db99edab2a387bce65
MD5 bd83c82d6c9ead80b4cb3bdf83fc5309
BLAKE2b-256 d4760ead93dea3f266b63de88270bf9634419e01670167a6489d0ab6d8e1c441

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 403609f60f0b98e6261645b64584f7fa1aa587a8592baf7b62a23c2f9fefaea3
MD5 e6881552899f7decb93213a20bd8cd7a
BLAKE2b-256 108a6e71cabd764f4464c6697759912c2fce801c88e9fa527ce1e33d5a2efd9d

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 fa84eae1e46f63f6c11a5ae6d2cf96fc0773ef33647b28e8b8af0f44f3065204
MD5 fda5a46acd5265c0d9cf93b1ecda108f
BLAKE2b-256 365f913e0791af803e4fae2e5d0a93c9177b40694d43bc74afea107d412462b8

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2e5f8f7fa7ae0e46f004cc5adc0566163db4924e4ac6d8fbf733fbe55b2dfea
MD5 67af5520a47e9eb768d40f421a5d8c06
BLAKE2b-256 91c0c967eae63bea2c5d946c974c1fa331c962e66e9bfce7ed0d785a1249e937

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c1f6baa51496516e0cb1fe9e6a87969145149f70f54a5ee706412c85a42e3105
MD5 ed3f040b1a6a90bf644d5cafaea1fa3b
BLAKE2b-256 0e836d174c15dd0d61ec613b9e5019d0b85ce4c76fd5d1b0b186cbecdb63a808

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4d93c8a314171cb3204989983a671a479f00f31d1326423714b8f53c7d660362
MD5 045de7028f79f3145cc244d6565b381e
BLAKE2b-256 70ed28c34bf7b268191775b6e8f04bf16b8c6d460236f3bdeb3bf8d0b5276e2f

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2f40bd9dbd9f29f77e842189b9dc70eebe7387786021f16e3ea58e078bb2ff92
MD5 a82d1bd75a2eb332a36663565eb60b5c
BLAKE2b-256 dff56109a215bf19196379ebd37253adb160d6c582008f94585a8fbec31398ab

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 2f69f7e775d9eeab88e24daa78fa957da8f30d17055ab3cc83b0f607ffe2ffde
MD5 00cb197e2596d3b4f87d447f9e98b80d
BLAKE2b-256 67c698bf23251fadeaf206fd3ac20fc4c8e29e38c2e75bdf1fb8672ee6e1d47b

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1d69dfa7146a0485cfe3495eac039514393f6eda0d1c4879495b2c34793cba03
MD5 4133739f187db60c1f40b8103d40bfed
BLAKE2b-256 0aedde0f1146634259de7668e7e7a482e49486b38327cd511c22d423a46b06f2

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 51f6fc7a17b17869a26c587e036e25c1826ebc30c4557ec5b1bd14bad96a13a1
MD5 f689b1f0f1a0d24cb64b9c188cc9076e
BLAKE2b-256 738e097d6d48e77ba2feb55870021d44a366d360e1d485402dd6051818f77abe

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86bd85f6a14d8a93f4c89e0aba484dc6537f945ead1057969ebfb7e9e161ae69
MD5 b11319810e72bd7f76e2da505d17d29b
BLAKE2b-256 b943129cd815415fbab27d40ed815af4e52ea8f9a2e8c9ce2dc4ebe3d258acff

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 df57c35aee46f671df6aab5ab1e52d3159478b102c766598a121db03923e9987
MD5 bf6e129d07a02127bc62a7c6b47e528d
BLAKE2b-256 a2a90a3b8be12dbf121d39db044188c6c57e72fb4b4d487e71b35d0d32f9df45

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0c39e47d69f9dacfa92b528c861817a5dc5f08cfa1bd41ce28aa909b007bc6a9
MD5 29f9277ad2c36d6d1fcdc4db57b28095
BLAKE2b-256 78f0cc6de1b2388eb077788dc172a1fa066c90630c77bcc80e82dc423c412761

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7cdaf568844931f63446d8a076582974dd50a9f968498245bfb7c3a563c6303e
MD5 1248fd1a6b3970fe116624141ba61198
BLAKE2b-256 c3d8b485f4e5d7730702e14bc37f59f7ad070562a4a8d6357889d4073ddb00e7

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 eaa05893e059a8f4247be0f43970326f29ee4d18e0ddbd654faf095a90712121
MD5 3b7d81adad4081e4f8513559e36dbfe4
BLAKE2b-256 12d527bfd4677a1428f2cb33b3036978825246d488a2605cb785ffe562773ce8

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6fda53dc5f1ea9bb70fd68563757aa7d606c80665da17596c5be06b2eb5470b1
MD5 59c656e31d67b45d035f6595522886dc
BLAKE2b-256 d45a5e7855eed94ac0776cac39f1eda048e3a0b0df9f562d6407af646858f1f2

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 fb1308d10cbd6406661c02fa2299af084b8b4af9f572adddf0c51d59e3195d45
MD5 2993a49ab6dd23e1bd50e56aae6c932d
BLAKE2b-256 42688343c699bb2dce52e5cd767ca25a20404c76d3da0c6cd88c5d29fa25399f

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03a387912c133ffaa3d4abd483d6a64bfe83d32d725c46cc3b051408487eb51f
MD5 b573a2cf9392a7bfd0dbc95a3c8b1663
BLAKE2b-256 77e5aaea5d051400eca79d688310f1ef64a7755fd1ca97adf91160895b9587dc

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8614fd0b54f598ed13c8fe7a19fc28bf93351a2f0532245ec2d6658c33de33ae
MD5 d1cac8960fe697889fae4a19332130c8
BLAKE2b-256 0ada16ace93a46ef939e9ccc3f12dadb6ab326b4aee46979e6f0afae89762cf8

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5fab5909598861a7467af58c93bb33b1ee5d5e62dc26f02f6136b7bbe4a9d29a
MD5 1a620ab9527239daf99513f814ac7560
BLAKE2b-256 1a41243a3825f475b846590fecea1ddbe14887f472f4cc375bb632595b04b12f

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e37a8f265fe8b23ed41e40f043d6252bac01eb7c2f64682b8cf9336b4b2f94ab
MD5 9aa684a0656971d91d6e9415bdde1a15
BLAKE2b-256 d2f1915240119f337534f440860af0119dd9826cd22124450163f9cb86b4713b

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 4709052d7f4352a651032001f2f7daad1e901c5f3d5fd71b92e44fa68c686ce7
MD5 b260895c301c559c4dc1969f635f7c6d
BLAKE2b-256 976af108f22e753aece748ae2591e2c9cf26dfdd2a74e19158fcf62be1eeab2c

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 67cb4324438963239496398799f864625377163e01f642ef20be8154b4f1d5ec
MD5 ba01eaab59585994f0ea55ccd900291c
BLAKE2b-256 831d7c8ce64321b2310687da6abcf0d97196712e5d675f7eb4010d3dd5c32f14

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 acd07760896c6ecf1931222698581b4b463b26de9431bd660ed3ef1e8f8d576e
MD5 d50ef4f8eb548eae458fb835a97dc7d9
BLAKE2b-256 6dd866104e662a9364e5ae965f4cf1c78aebd6abe81615f15b356f93bc25ecdd

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3b0c595974d1523b195df7e86caee5ab06fa8b3b76f7dcb2d463e0d2f788a9a
MD5 d2e7c8f1aa89485e9307c698e66f6e03
BLAKE2b-256 6ad36661257fe99cf147d319e4f5eb22ddec04afcda3e30fb3528e9cd5b9aa3d

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e72627087bcc6e8f4860db2150293d4ba619e0638420035573f6db702d7253a2
MD5 515825519d19ea15a524eaaded0a4f80
BLAKE2b-256 35cb879ead13fc2693795f6e30f2a478f67ad58708fc26cd54be22c1148ee092

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3cd20e07c406c8a3529a938c8958b66509fc5d5d2637ed185d4dec9b1393fcba
MD5 acc531412a4109b30ccebf705dc767c1
BLAKE2b-256 958d38f2acc60a9c294c5e55d51dbbebe805df2768b30c7f981a2d1084f4df6a

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4978bb5b8001cfad9c0ded63c2188c13dc956cd13334868b27367b0e41f81c0f
MD5 8a5fc91def424c83f4dbb9dd1f6d5ad4
BLAKE2b-256 439ad4032861947892e3d1a46bea432a7ca645c5d00c68851daa8cbc24d14e8b

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 2cd9a18380af07e675684dfc11c21ed4fb38c4a3672981bdd7347ac79a3d5462
MD5 22c2e3c08d7dd3f8e36122fffd5ff252
BLAKE2b-256 8c10bf34f157d18cf83a434698781720b8ca3796507ac8d33fca24de3bd424b7

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 56495d1f77bd5fac281812ef4bad2d3e906ebda53d10a1918c3e8902f9d55bcf
MD5 5513b351fed31fcf9a45c33ad96a712b
BLAKE2b-256 454353f4b4d2e9482e019fd6097c67323e69d1cb78db55c414add67fc76ab7b0

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 d50597469439d637ff5d2293ced99f5398d22be7a72c7e1f9986ab2cf7c35f35
MD5 01801e66aa12aa6388e4d9dfaf8da446
BLAKE2b-256 36ac324437056db2beb4b7fed195d90d650d0c95dea59cc9c15b0f7229285cc6

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6107d9313c78dd3cad67dc23c6bb564e4f86d119d20f54d854b4ee7f35521347
MD5 0aa37ee20d54278293b2a7719ae3ae28
BLAKE2b-256 fc219c97739efc09152ec85050d29f1f5890989b0b36ffc1a17f34ed52aae049

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e74c063f9cb83641675296362a8efee105908f8a7257c471eb15ee48972471f
MD5 1c468cf7d2b0819ffeb3614401799c3a
BLAKE2b-256 9457b07bd499245d1be6b3acb0604c019cc249c303c3e48eb203a1c2efaab6ca

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c8a9f508b01fe0f544be9b71a3037f6c551dc3c2559f43f0bc9114fa8444856b
MD5 b130e7915ff32c7c7a6b5aa7358cb86b
BLAKE2b-256 01e4eccebff64f8aba2d06c8f2272b9a8e591c52c7b6f90c8b3a04b159820790

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 81ee1c19a3b0c26afa33a29ca6ed143300b0cca52e50c413ecf6c98e3136106a
MD5 bd63d3b2ecd28d26dfc6b5054ffebb24
BLAKE2b-256 f7aef8bbc6514e02da308acc6ad51857e13c47197c5820031cfc1cb68213e4bb

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e86380213e96a82ae1338b364ee9bacd63d84d89f717858eed98386cae105a7d
MD5 7f59ccf23180bc4bac07031d95fb8043
BLAKE2b-256 82998977337d3a89f5704994a6916299e2c0b85044b9a897d3dda2eba4a9a52d

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 9d18ada2488e7bf93fa1ead752becc15a0cfe31e6c0bd7010fa4dc4dd54ae1bd
MD5 6167f2b121e280cb0f7781deeb2b3deb
BLAKE2b-256 49b71606c2603ec7bc23befb00532f4699e42b24cfc60592d0347fa5ce578124

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8df20fd0760b104cf01148c9a1d44ec650fec73ea91130eea7dca999b6ccf23d
MD5 0b9525bece64d48a171e68797b67f54a
BLAKE2b-256 3a8c8964cebe8bb5aaa78648e09d6f845aaeaffbac1cf7e83b3921d0765c4083

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 77036493cb511ace8244665cc5fe219c85d8e5bbf46fe62854296231e4208af4
MD5 474d781a2d9a84e2d67ad9bdffdba5d0
BLAKE2b-256 9cd65c449009947c49d6d083bd7926d90f4e807d2c9fe34609f7532b267cc80c

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ab08818eb419c6f60308f391b40faa1973b0a4a7f08d8a20d4381c42d11c5338
MD5 870d9e9f89560a98ebb350e1a76ccdb2
BLAKE2b-256 e4fdf6d761b8e65ed75644cfccbc683b1cd01369a5625e9b15da3880a81762c5

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d73185abbc730bb9413a28aa4179595f4158d88077ef57c82a3d513568976fdb
MD5 c88b8bb243befb97f619f3fb79c7ba1c
BLAKE2b-256 0232340e35ee39bc060525707e9fc3505bcce3db6064da739393172c266cede2

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 e278e7e1e44799b58307c60b5ebfb45674dd2b1f083d2e1d28de0b82b08eb532
MD5 82354e6d893cb0dfa9f0933554831a70
BLAKE2b-256 6157e7539ec85d2fc0ddbaed01ec08ff4c1a5bd9eb19f214a35d7cd99bc32991

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp38-cp38-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2161d30c5ccb95e9f090f76f95b526a934630081b91963da4b4454984cee54fd
MD5 2a43b8cd6c03212795d0ac948c9c13ca
BLAKE2b-256 7a44067192d38cc28753f02b88c500856fb0aaa3f316d116fa04be87ca38c5b1

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f727eccbcf4252c34b762fab5ec7894bfeebf92f336373eb33a4f972da964bb1
MD5 2992a1a44318fbaf09f245e6d47d8a8d
BLAKE2b-256 5b6b6e33dd307bf5e5f1c420ce47cd5ce864e62661653f552c226c63242d729f

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a8aca6a4bf98c386ebd4e881467dd868e04b2013af14f1135f8b9cc6dc58b557
MD5 6c78effcae6f05c7db933e5664a8a320
BLAKE2b-256 c931b05b1314996026dfd7f59d45ff5fc47c8d70c8b58aee9866bf35fab8bbab

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0efd369755aa6a8b29f299a9bbcf083a16def6d73e1575bde505fdca4dcdf264
MD5 8c8d45a945ce3b8d1726d74eef83ca46
BLAKE2b-256 7510d7ad3ae36141743e76bd2ae7183e40fb0f0ce8983a66cf5d97d386c64391

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 108fe63e58efeb0e48399a30a3b0be51eba3e5b7670879cc96ff7f7e4f66c7b1
MD5 b86663e8a931a7643f14eaf650b2cade
BLAKE2b-256 d58c7913a162e6f394b68a08420f9be18b622fc832ee0ccf04f31eedd8a42abe

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.6.0.0.dev4-cp37-cp37m-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.6.0.0.dev4-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 89897e7e94e05ae80462c9add249ead33dcccfe577517301f118efd1db07509e
MD5 2c6f61ba233d3263cfdea4d4f2a6e0d1
BLAKE2b-256 3682eaedcdc4bcc6f349010bbbaeaac0b790253245a327131d9ab26e411e2d38

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