Skip to main content

Python CFFI bindings for Raylib

Project description

Python Bindings for Raylib 6.0

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==6.0.0.0 --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

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==6.0.0.0

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==6.0.0.0

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-6.0.0.0rc5-pp311-pypy311_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

raylib_sdl-6.0.0.0rc5-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

raylib_sdl-6.0.0.0rc5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (2.2 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

raylib_sdl-6.0.0.0rc5-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

raylib_sdl-6.0.0.0rc5-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

raylib_sdl-6.0.0.0rc5-cp314-cp314-manylinux_2_35_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.0.0rc5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

raylib_sdl-6.0.0.0rc5-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc5-cp314-cp314-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

raylib_sdl-6.0.0.0rc5-cp314-cp314-macosx_10_15_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

raylib_sdl-6.0.0.0rc5-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

raylib_sdl-6.0.0.0rc5-cp313-cp313-win32.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86

raylib_sdl-6.0.0.0rc5-cp313-cp313-manylinux_2_35_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.0.0rc5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

raylib_sdl-6.0.0.0rc5-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc5-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

raylib_sdl-6.0.0.0rc5-cp313-cp313-macosx_10_13_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

raylib_sdl-6.0.0.0rc5-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

raylib_sdl-6.0.0.0rc5-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86

raylib_sdl-6.0.0.0rc5-cp312-cp312-manylinux_2_35_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.0.0rc5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

raylib_sdl-6.0.0.0rc5-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc5-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

raylib_sdl-6.0.0.0rc5-cp312-cp312-macosx_10_13_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

raylib_sdl-6.0.0.0rc5-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

raylib_sdl-6.0.0.0rc5-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86

raylib_sdl-6.0.0.0rc5-cp311-cp311-manylinux_2_35_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.0.0rc5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

raylib_sdl-6.0.0.0rc5-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc5-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

raylib_sdl-6.0.0.0rc5-cp311-cp311-macosx_10_13_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

raylib_sdl-6.0.0.0rc5-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

raylib_sdl-6.0.0.0rc5-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86

raylib_sdl-6.0.0.0rc5-cp310-cp310-manylinux_2_35_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.0.0rc5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

raylib_sdl-6.0.0.0rc5-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc5-cp310-cp310-macosx_15_0_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

raylib_sdl-6.0.0.0rc5-cp310-cp310-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

raylib_sdl-6.0.0.0rc5-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

raylib_sdl-6.0.0.0rc5-cp39-cp39-win32.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86

raylib_sdl-6.0.0.0rc5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

raylib_sdl-6.0.0.0rc5-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc5-cp39-cp39-macosx_13_0_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

raylib_sdl-6.0.0.0rc5-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

raylib_sdl-6.0.0.0rc5-cp38-cp38-win32.whl (1.9 MB view details)

Uploaded CPython 3.8Windows x86

raylib_sdl-6.0.0.0rc5-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

raylib_sdl-6.0.0.0rc5-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl (3.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc5-cp38-cp38-macosx_13_0_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8macOS 13.0+ x86-64

raylib_sdl-6.0.0.0rc5-cp37-cp37m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.7mWindows x86-64

raylib_sdl-6.0.0.0rc5-cp37-cp37m-win32.whl (1.9 MB view details)

Uploaded CPython 3.7mWindows x86

raylib_sdl-6.0.0.0rc5-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

raylib_sdl-6.0.0.0rc5-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl (3.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc5-cp37-cp37m-macosx_11_0_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

File details

Details for the file raylib_sdl-6.0.0.0rc5-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b4f0884088055292087b872db7de26e973a54016953dc1e6e3e182cb1073c51b
MD5 20bbb52c2267f85258c50eff388422af
BLAKE2b-256 5680170cf465aefd68c66facb72adb29a7c4296cae2a8d09543c1b6c56f0ab33

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b13a5ff0e67e4b525fbf0f2baaa7b04018760ad71cf65b2d8ba03c3cc21216e2
MD5 3284c23d0328dbc3a2572f4f46810c2e
BLAKE2b-256 131db950cb0755973f39734aff495b439f7d33d3cf03e9a9c1d5597642a04e30

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 12398c9b320710c2a1d8ad91c44a949813af8fd48d4b787959fcea239db2aa7f
MD5 a6081eaa726dc93664c7e3becd85c9dc
BLAKE2b-256 0feb8cc39bd50677548cf8e862b8715a1c598fbd8e21bd526236f61e3cb71b36

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1d6d02e5bec4fb744cd43cb3ce2e4999d1eeece0a34fe68a9cd077fd9ebc9630
MD5 ef89933ad37828b70de7a3bd77da1bf3
BLAKE2b-256 0d86e3d42822f438b475c603d4e5ed8e4c14757c1e8399828805f835702fb1c9

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0c2f175d125dec7cb1ca8cd50bab2e7256abd581ab5433dfea3df700911b0aaf
MD5 951275d896abf158853cd5b892a3e13a
BLAKE2b-256 a75b5c34d136c12c010ddf0100807a80623fbd98d7c741819283e9c0dd428b04

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp314-cp314-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 a798163e845e5eabe584fe0a5974a168e6457f702c067b37567a0a1a455b0f1c
MD5 850bfa1d88bf99557f761a81af941609
BLAKE2b-256 a011e269970eb60d1928542cff6c3066ddac29319cb8b032917b2c5dbb9852bb

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9d36ddf6dac886d08dfc7d9eef1099c8609a67058103a1b46a1257a061d41f2d
MD5 6ff72be77672ec0c6e5a7b5232d76d0b
BLAKE2b-256 4228cc981f7c5aaa33b3e52d114b6ac612f20015a72db6f5d3160da2b3fe7157

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 3bf755b5c8d4b6e8c2318f322149074dffb8a04513cb770203e4d96783a03e60
MD5 5a6802ae4615defbfb204bfa13732a3f
BLAKE2b-256 fe41354fb68754fd600aba5abd2e84a27fcf94c8028e096cb45bcd9b7307b5fa

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd6cbff7c44ad1c0c674ae1f91395fd8aa10a553001ba63ad5f12a8a68d2a526
MD5 8f7ac6f74e026b34c0b617f7fe4de483
BLAKE2b-256 b3603b852aaf7be6dbf067d4ae671283ad1597d4e5f89a3dd09896bc7b322376

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9be8a2f00690b64940d5a24950db7ba9ef714f0dd40bb2faef2c11ae6d07be82
MD5 fc633ed15bd8089b1507868b26b060f3
BLAKE2b-256 37caf61e2dbb7134f461c6094d504a6e68376cd5ec5cbecfdeef5d014b1eb234

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4fdf48d1a1a89f6e73cc9b2a89bf1293c2a58b5241daf2f272578a835a45fd5a
MD5 1acd28c7d74665c451f626e3c5be5a18
BLAKE2b-256 c21bae5d93f11ecd40d31d690a0fc739d7ea5815d6d7281bfed97290693c9b72

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8ada990f9d63cab25095ebee7b7b8f9964f8524cc10ad18867f4d1d15c80cf08
MD5 1bd62bf96649256dd7501f7eb7f4ab5e
BLAKE2b-256 10562aecab8aad5fc2c1d30e454c278e80401d1bd4675a233d566eb5831495fa

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 84e9380e5b048cf120c6f2e6d05ef49ccb69dfef2262657eba16f6a78b8ec2fe
MD5 85c9c698aee100958ae692eb2c53ece0
BLAKE2b-256 1af79f23cef8c2ddd58080a4a2da51a3cb004499c61abb0d57e50e43dbffa1dc

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 00b5ca73d70d28a7604816805494843de4eabc425e9daf1415e5f9ddfd5303a3
MD5 aff3250d93e12f0d28ccb3389632a80c
BLAKE2b-256 e38b03f2fc96b29aef6be2fabff22adc45178f6dec7233c8001a0e905541b339

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 94cb471774786eed2b9bdcff18848f431bd742414f563599f917b0f807e5e578
MD5 df240405e67fd8788431e02b1391b756
BLAKE2b-256 e6e3e11683dc0d569b08be05718bf96142da424834d0ed22ff43520132a07eab

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e81f8d84641ecad0506d594471f34d3dac7daa2af97cf75dd8a9dd0af7ad16dd
MD5 0e609c11e0e749638d1440432f61d575
BLAKE2b-256 a16cecf075910616069b1e7591729de1450ada798d0564fc5be8496e8504320e

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 59a41dd42b8bfbb1f0227c6cb6035f4603663750954d173d972e0569a99f67e7
MD5 9037681dec200a99f1cae12b1a5ff8e6
BLAKE2b-256 cae458b19fceaaeffe918d52ec5c08c84a338984535c03df2800af06b02e0ee7

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6235d31a9f575f48729f22702cf737732fd1d8c0c0fca8795476053ca9aca6c2
MD5 71e11c260ee3f567903bcb4239639516
BLAKE2b-256 4307d67c8f3625e6bbcfd0cf8fd9ea17a50d04993b85c84ca44fbebb690afd02

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 75eb4a513ccde7dc99316da45f86aded45e31dcfcaa5d7e4f16874a7333cd295
MD5 84f778dad5726f679ddd468ca5a2cdf0
BLAKE2b-256 44c5b063a101ca35e7fbe6b815c3059b63534a5306b7f54ed33a9207659ac403

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 42ac2bc10a328895e66096cda0de41860a1934bdf89d24e72d9ebd05e6bf66b4
MD5 87acad835bce087efa5d8cf8e37e4a48
BLAKE2b-256 2e17cfc0e8b0cdde11e1a29ebf04efee72812537c42fbf7cd8dc37de2d94914a

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bb4c6ace49f7301484f33e2405583835db8fa49f9f4238e825b740ecad7d1057
MD5 5f36448d59f2bb9c06cb525676a6e8ba
BLAKE2b-256 8e754f9b8aaeb02f6bfb3e5fe8e962287ad91fefcf8ae200987aa205b08fae28

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 42d5713a8f27c2ed135b50a9474e1d4729593a5f0afd21cce2acff609274f9fb
MD5 c212abe8f21fa89952805f71fdb852e2
BLAKE2b-256 f6de881c61566b93b9f36b8fa56066d54075d446cf2dbda1edeb3d8c0d73679e

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5859bdb4b5086a7c45170ca2d61d7b3a0c211f92ce9165020f9969589fd017d
MD5 2ba32b7641eb39d39be565d46c66c505
BLAKE2b-256 a57c368aca499b6778ba16785dc5860ba76ae05bacc476d7dcb49eba13deef04

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b0beb476b57f073a56fa9ac238d5d6e5f75297c9862f3fee7d49bb12229bf5e9
MD5 43f49796fb8289d2c280742832ddaf94
BLAKE2b-256 df4668529b2b888c16ce198b6808d8614c3cacba1d7fc49b537c2a3d34d3e6e2

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 da32788183bb9c0bb31f42d2c0872579fa97fdaf83904cde5d4cf30c0a208325
MD5 e2bb2356879f3f88082c0584bf56500d
BLAKE2b-256 7c71f866b1b9ca443510124c34812918df1296dd8941649fea45b399a331fa57

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 11514c9ffee37b58339390a4703202509e9afa54392ef771929482d224a0c653
MD5 045b3929f2b41a7d1ae5f35739f0f7ae
BLAKE2b-256 5739f34af75e08f8b861bb4f563b01979228a69cd0848f56162c770bdffce2ed

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 c42f09a825f213642f6e06b20da0b5c7123de84c99e77b87f3db0cedc2eb3832
MD5 b59f518d44961225ec2284f4cf6ac554
BLAKE2b-256 25e2d84d11c11b197f4027f0b2648347a7f2fd99bca732d627811502ced4c083

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 83a8d807842c36b107a804db9abe1d67dcaf5daaa3abc4e04868f4cecbf2943b
MD5 2d807b4f9bdb615cfcba26d720d9aa4c
BLAKE2b-256 0805238f918c16546bf57933cbee5d17cd4f84457eeefff1a7f9864923a2fb10

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 817a7e378263bab8ea9c4ac75be78eba61b9464373b1234155cee61f9038f5fc
MD5 040ee0456b7fd37055c8c359552142da
BLAKE2b-256 0b5b176809fbe6388f70079148889c71db0aa0ac4de80dfe25d3d1c7ccf491f2

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2db66bf43d0dbd577daf95c8081e22a5c3f16d1121e6c57507f1c0ff8eaebb03
MD5 6eab5b866b2c1dacfd32c2ac1e20b494
BLAKE2b-256 81f29bf4938b8c7d7dfead694eacb0e81150daf86e8b2fc51fe6231bc5b65b3a

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 47ae565fd3acbdd1f4996da6204360058be075c8ad849f0386ab17f38b4de738
MD5 42dda7a0befa4becb925a49f30073c1f
BLAKE2b-256 d5ee31a36c32e9babf1b4239d0a03931cca8634329b78c06f274f868b7f5fff0

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fd2384a0ed07bf1bb695f383ae9f62b697d194986b02fe5756bd6b653741e5c5
MD5 5b69c285153f26ccc247244727d9e8fc
BLAKE2b-256 ec5cfe1cabb7490b713a42afb3b6231a52f1f973c6f83cabde1c6b6c8dba945b

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 77d80f4e24842331aa1533bbf40398bdbf91b81749978dab0f5f3f541a09a3df
MD5 1953f5d0bd2806a7448d1918ac5bcce1
BLAKE2b-256 829b716edc64bdbb2c0a71359ef69db97cd9d8a261d70ca5303070e029ab844b

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 be72bf63e8af0b685b89d19e0bd0217292c98a250ea604b3fccd269440d37e6a
MD5 bb654b8f3dbe18b0a8e93c01c60d038e
BLAKE2b-256 007225c7aea850910c21e9211bb3f521e65ea9edff23c07473fadea7af451aec

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 836e5c404452a25ed610deb8f6e545554b5bec7bdb9a25ed8985e78dafd38f16
MD5 b8dd64a7bcb3df00707547c284efc8eb
BLAKE2b-256 5cd515cde24fddf17f9b7f12a5f06733c6f226fff398ca3909856d7648f2fb6b

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 3118f47640e3d07fde90f252dfeb09a814a8a51c5c60e833a0f9d88a6c5b9f40
MD5 56f758e00f885a38034457ab97fb0fa2
BLAKE2b-256 9d1658301848cf58c05e8a2e6e20308b3bcfaae59216e83ce88c0e488a5e3756

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e9136d4f4d0c72a0ac38c29b7d73cadffe53b62e680aad0ae18c3b59760d7ad9
MD5 995bc5a33865c131b061d9bb058f64c1
BLAKE2b-256 15f6e637f760c525a18ffeda63017f1601088e9bdd64f807f21b8318eb6828c2

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 810ee7be4026df4759a4e5ab8014a5db774a9371d0b4f3879bed9dca591fc401
MD5 e4d1e16dc8c5bbe2452c80ae128721b7
BLAKE2b-256 35701228c5feb3ff4f92d20d0623dca52fd640b24063a969718f9ca563104d1c

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9dc260cc1e724a2a18f963d86aad5121f6650c25a06651c09e0033ce867e74b5
MD5 42f0a43de3a8e826d1274e7a9dc40be9
BLAKE2b-256 9e845037ac792eb680e1311ca31d6295dab7e04e2f6b8d87099430787fe1fa47

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp39-cp39-win32.whl.

File metadata

  • Download URL: raylib_sdl-6.0.0.0rc5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.13

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d437abd15f7aa6e96aaf1007d06628a4a26895ebf5507290c0573c4a0d6f37a4
MD5 e042199e491b05c4470ad180549e3dec
BLAKE2b-256 97974133d9ff355d3be50fb4801c53f09414e86b25381afd131b6e354bf6fcaf

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 18db61adade1a9785e0da7a47481395ff19ef514ddb1482c4786822e5e88b505
MD5 28b2160118b13dd99464fe410842f928
BLAKE2b-256 866d9964d7c02095211fd780d5c4fda02a2c1f0da7f4b863aa42c135e07d6935

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 8ed634de5229487c61fc8a68f7a4a32d4e76a55b07b12a78cc4790ce85f8b68d
MD5 961eca4a2ff186e2e778962eae0a946d
BLAKE2b-256 217a28d2ecc9f89ed1c1c4dd4d0ec8194b210c8a0f3daff3e225d298ecfab140

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 59d593d5bd4e5e3ab0c3a960b461a1fbbb565ebfda73249113dd43c669a4ac56
MD5 391c6d4232513dabf1f8ac3a456a9d99
BLAKE2b-256 b10230f46eecf25aad308ddf19fd865c9bdbe990a8595390d826ba05c8598492

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5834bef42f882b51e331f26afd4f3819bf5270724fd7bdb59eba53d982eeed2a
MD5 7c9b63845f86532d16fe851340f7f112
BLAKE2b-256 950554c6a3320fafee9538f57afb9565c64d29f3aaa07ae459ef113faeba7d9c

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp38-cp38-win32.whl.

File metadata

  • Download URL: raylib_sdl-6.0.0.0rc5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.10

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c967ce58fb0c828d3730266399ce4df0f473eae03077456425a1dd3644dfcfc5
MD5 b5da0a1bfd5393a0523b4f39c97264a8
BLAKE2b-256 1e78661d4446bbd467a7eaa58edc9b22778b08535efd798f3654f5a65de7c113

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 270f8cbcd7ce223c36e192ca9501e2408c04ca993dba4212bd6c6e19a045f082
MD5 9e52008621e32aba42251350d994f2a8
BLAKE2b-256 fc1260344eb7846b0604b27a0b4f0bd4ded8253d8414055c7e8cc3fbf8c7f7e5

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 1db87fb9b4647cf0c0bd19c7ef144e139dc4b6e262c6ef1417815401f869fe98
MD5 efdbe13f687e487fa12b85eb4fa727e7
BLAKE2b-256 1f99604ab9cdda248a2881c77c6b719cb9b251e5c45e2086e861196c1c4b283d

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp38-cp38-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b029d32113d398987f543e94a147fb611a998d0170480b4481ecbb6608e1e240
MD5 b8816ecdffcc7b46e11305624040b4b0
BLAKE2b-256 ad235ea4214b7eed458baace91954d5174c7fe703e68ce6e8b3a4821c33a02a7

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b1228fede190f9c76e6db502a813977ae1b83dde7c7d6615584ba9b7f0f49d7e
MD5 c558effd0e56d5daf70b3456c0efdaf2
BLAKE2b-256 308b914c0ae5332ee55aa59180c1145f663023ce5a1d6552a4206408e6bcbf10

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7523eccf16fdead5da5ce364a0d1627fe3b53d50eea9c7b2eda2e5dbf9e1c2f9
MD5 3e4ac0f069d6f11e5ba191e90d9a03b7
BLAKE2b-256 b5a48b248ef7ec20aa2c4d13d4cf0edc67e2a15845da7ce1ee506d5fca29469c

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ba7071494f154faf0e342447a6c7015c25fa025ca5f9d6af562bf5b31af1635d
MD5 c6b94f756dbf8897f1ae8cba5c5838e1
BLAKE2b-256 d2ccdd08f119ed2f49bf046109e68ddb3ae90dfa20d536ec14606244341b0332

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 6b8a6f2d5a37f1668d984725986e68ef3b604255b6fd8f23c8e8e4796962fc0a
MD5 7196ed08f88a1b811694a6180681c508
BLAKE2b-256 4e9db384809630f887d0289bb8dc0df9a82a190a47783c6c92a969a3a37e64c7

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.0.0rc5-cp37-cp37m-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc5-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6fdb1dad0910bdc7dcf7c249688937ed27c30d54561c5fbcb97bdbad8ff72920
MD5 8800fff856f2b6c09d80396ee0f522d2
BLAKE2b-256 42b9ee6b2e40eecb3c7f564c71056f7c3f96ba0e056ead595430eaa5b546bcf0

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