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

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

Uploaded PyPyWindows x86-64

raylib_sdl-6.0.0.0rc4-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.0rc4-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.0rc4-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

raylib_sdl-6.0.0.0rc4-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.0rc4-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.0rc4-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.0rc4-cp314-cp314-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

raylib_sdl-6.0.0.0rc4-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.0rc4-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

raylib_sdl-6.0.0.0rc4-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.0rc4-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.0rc4-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.0rc4-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

raylib_sdl-6.0.0.0rc4-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.0rc4-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

raylib_sdl-6.0.0.0rc4-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.0rc4-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.0rc4-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.0rc4-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

raylib_sdl-6.0.0.0rc4-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.0rc4-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

raylib_sdl-6.0.0.0rc4-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.0rc4-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.0rc4-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.0rc4-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

raylib_sdl-6.0.0.0rc4-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.0rc4-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

raylib_sdl-6.0.0.0rc4-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.0rc4-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.0rc4-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.0rc4-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.0rc4-cp310-cp310-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

raylib_sdl-6.0.0.0rc4-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.0rc4-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.0rc4-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.0rc4-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

raylib_sdl-6.0.0.0rc4-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.0rc4-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.0rc4-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.0rc4-cp37-cp37m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

raylib_sdl-6.0.0.0rc4-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.0rc4-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.0rc4-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.0rc4-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2c27ce580dee39dd7d5e0c837b4f3a4f2038c5eb971ade9b650da5b638cdd9c8
MD5 acadc053774afb14ee1c07e1962771cf
BLAKE2b-256 93cb5b86871b328e64687d1e3865a6b7f33eb84eddc9f70e648a426afd54c6fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d62ecc103c90625a1b0ff5ec530daea1c0b6a35c1f60f69b924f673b46c1569b
MD5 a4baa147698bd3b9f1f4839aac57af9a
BLAKE2b-256 79ada5a152c9ee6b9af4e405ce711ac8313071fe8b5e0cfcbfffccfbdd3eb855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6cd215b09640f3cc36f30e0371803192dca7d6e9c73384dd096877cb8d4a7c73
MD5 c3dd224c399f3006857e4884c33ae858
BLAKE2b-256 23942111e7b2b6a2f528c1b6214e5a4798ceccfc083ee4040d1296f87fc6141d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b7b4edeb3f8c44780a7f206748283086b8ef981cab0bd9ed459c97242edb9238
MD5 5280e3730230937ae76d3c6c02577a91
BLAKE2b-256 c5f082f8fe4685ef1d000225cf873eda367720e2d84fdc69ef130d5d822972ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0458679541932f700ef3dcd306afda6dba809e3dcbd003fe05cd723c8961639a
MD5 539b77e3e1ffc5142ceacb2f77925d0b
BLAKE2b-256 3f5dc6e8a7d7639d2e12d20fc952e66377adb6f4d879114c62915d67f8692f0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 7b39424a42f34a18888b7db0964a3f1401aafa8f3594dd5694b6bc793c76fc9b
MD5 42911996c7852174a1d44176cad7e568
BLAKE2b-256 4a7891db1cea5a86f0e90a261f7cb75e41b7c41d9e686329e1cb4115ecc05302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3ee5bcb45c8831e299c0b017cffb79a545b3b433c0a2f4c9d64c9aae8c28b243
MD5 bf9bcd1f99c2c7c7d0dd46c5f3469192
BLAKE2b-256 754d97e7b6e4ce49dfd9cc4248448a7cc175e9eb8f96c420391fccae1995785c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 fdd91038549e9559f20ea636e836e1e77f3907b1bb237346d9b0036278b71ed5
MD5 5147900d38d17238191b70362d83a909
BLAKE2b-256 60968cd58e01e5f5209c574460f4c362af5a1023ee1827cafe6250c4ca0c25e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bda2c69509cc6f2046d08dedd7cda6048c665d9dca369b0cc7412b306b3f88b8
MD5 89f496a9e23220b094fd02afd887d408
BLAKE2b-256 366b105ed39e34284cf7675dae42c5abdfcf649633b1b362c34b899f995539e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3dd231e22b962a722551df42974b65e77580959a62a32e3901dccab4ecb08a93
MD5 dbd0ce2eab89b144852ae3e3c226a10e
BLAKE2b-256 1516caf4bac5e6f8da25e853acbe9de3d8cb88d7d59620f07930891175b402ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 242440c000124e8bfcc0799b7f45465a26e3d30027937fe3b1d61e3f6406bafd
MD5 ea9f026ea8cc620a6c6e9156841b4637
BLAKE2b-256 9a0d8d8b918b16c3bc0bd374ab90a0af6b1860a823bd25054543fad467096577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9084de992577d4eab5eab91236a06a9d4944374076fae2fded2c9c9c33253626
MD5 683fb0bf6539795ed99e1d66940e15be
BLAKE2b-256 d5a4e82787a430b4d5e96fa79ea05bf3c83f490b04e4b8271f036bfef6aa38b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 8485cf01f1953e6ec17efb7f4bb44c3de6de83ca6b8eb5ed47fbf288dcd60192
MD5 85186aaff22a8e2874e6c6f386da4628
BLAKE2b-256 650e9868b46c61121d9e9358fc83095d6acfd815a71708cc0fe4e9e698cc93e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 efdc1c02c8c9c7e49f7666edbc969edf56931bf88e9e113bf357571cda41226d
MD5 43680bd5202e82356cadecc6afae0944
BLAKE2b-256 60c5a193736c950e7cbcd46c9407a35ffdabdce610d0af58a7975cad88451234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 3d5e91a4d7a2bf3dfd40e1e6cd2ae61eb66abfb255a68750b041712fd3fe000e
MD5 8aa80f0b494f4fdd19a6b8c060d70516
BLAKE2b-256 d455a25f379f0a323b3c654eb570aec489ae7455be02ce309fe6410347ff7f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f72205b6778353cf299b1647a220a79a0b8f2940192dcbc54c8b0ff356d843e0
MD5 1d533c18c2e717df531f96c466c06915
BLAKE2b-256 d9c8e2e758b48e77a978854fe9d21ae18fd7da912ff8b94f34b161a5a9088781

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7df596a849e77266dce1d039a1da79f98276296c7c068e023b818c185291fc22
MD5 860996e45fa970042ef695f309fe5c52
BLAKE2b-256 65478ec2e57ad1d2e8c94d3e7b96fd69673666b9559d081915fa4caaec1c6bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c0065c80d965ef4054cdd819d4cecb96fbcf7d67ac5b0e7effea1e4fa4458ccc
MD5 e418e1dfb0070e95ad998065b3f08913
BLAKE2b-256 4adfc7932e35a3639ac538d3521e43c7821fa7ec54d60c14d3ffd8fe31433698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e7c93123e42d66cadcc84b16eca6c638540fa0c9b7d4f91c0934dd75da0f4cd7
MD5 3d051b19c628f6647dd6aa5564cd1e5b
BLAKE2b-256 504bdeb4dc28f6a5cda4d3c6a39dc414986f80ddc898514acce42afac6bae88d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 eceb0e370c08f4edf264e0d8e29298c32d007c3823f6756e886166458013c3d2
MD5 f2376f9b7cc2341b49beac5401f47d61
BLAKE2b-256 e6e8871178ad0a8a4bb04ddd3b6d08f6b1c6113533f557b7c0f9e8c42378a62f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 04ad305e266d6d8aecf902d24acc3eb1b5c673509701a12a233a14058078d3c0
MD5 878c66e693ff82990b96cba149ba1405
BLAKE2b-256 5c72419b830d0b99125650325a4fbdc9f2eac8e6e6e1857546ab214d0fa6c096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 9038deb172f6e0ae5c7959d10c5e8033216fba65893963d21623447556e87f7b
MD5 3c55775b6cae217d0c518d2f473d1d0b
BLAKE2b-256 42d78e1263ca27c9493cf27986443cf118c764fd1c0ac15ec09120fda46c232d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb3a36a22a43c8b9f0e8410cb1520470c865ce570d790fb07b8c7288b7e37293
MD5 671b1474c657f21b54b7cd1646da0824
BLAKE2b-256 adcaccc580b62a573d79e0a5a596347a6b354b379888be0c7c0b5fc3f37e7b03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 09692bdd2ec4f19439c088430ed8cd931e2e23637493991fe59e73e3dd8357a2
MD5 76e653efd2b92d75fd653537026870a1
BLAKE2b-256 5a1900e8e1f0b7b02bf8e93cc3724ecafb3393fbaa4ff450c17767efe4002adc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a8d07d7e1a669eca2bf8cf0893f63fcef1d71359f88a9df67f3cce5964dc121d
MD5 21265363dcd7b0b2f8556d35465f4a20
BLAKE2b-256 4ef470a7750fed59c49166267a72b5f49791c15c0c70039482077ec2008c748f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5c8f273fa2612ba190535966c67a509bd6fb1a0474cb1a8cdc8c930d5be871dc
MD5 1570c5a2e70d670b8040537142f63099
BLAKE2b-256 fe5db880a2ac64b28f41890d4d5c5a5b6b169c4669bcdcf207f1574fa6f9885d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 5c459c253e4c1e37d5cc0223118f8c401dc68099314a835241435eea952b5a00
MD5 af094c234ca1f004055649085ce5eff0
BLAKE2b-256 564c93ad6fcb73e9402a82f736614d4879fc474403f6408ad1cb4b6034df3aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5732a24ec0886a7deb06e90ccc4b4bd0c758fdcc37512493eca39c6a5ef6637c
MD5 e4f8faabe1ffb91528dc2f63d3395af6
BLAKE2b-256 81c4164e0a2f1c6f1dd49449b339d18dde194ecd0cae5796618f63e9237aeb3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 357f998faaa238ea7ad6113394d8c816128b3a4fd39dbef93f6504d79b7731f1
MD5 bba8ecdea26c88ccc9353720c0c7fa1c
BLAKE2b-256 cfefba51d8abf025bb82be0af0db1ca2d126d46567ca7e4a07b474964721c3a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 888c3863ecd2dcc3884f7a6b964a8822eef8bb592162879f1ad834c63daed7dd
MD5 1bef55d474de195bff306d50dc8217aa
BLAKE2b-256 60d5e5e1e585882ee3b8fd7b3a4bce9f5608d03dc22f27787a0404152ce68593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c3666d7bd766ceac9128454fa027d33de8d20691df15820732035e52dcfd6f9a
MD5 7b3c09b3a010bb6e6c6659075fc65682
BLAKE2b-256 e7fc89c4ce9c38366135a0858b0fd011ffc6b9e88004570a8eb71b0750355b47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 27e5203cb7ab1f463c71776cf46fdb26787449d47d4cc84298dd600e1f45be72
MD5 59b5cc17dc5418f6c109a04f075d77fe
BLAKE2b-256 c5915a1397b0c313b4e562405a32028515546201be50ff263c4016a48af90133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bebe2a092ca5d3b2e6bcd866e96d8490a6478e2c766637e3967428e92a59b3ee
MD5 87b43e96d3c10c1de7e38e2b22d6a252
BLAKE2b-256 4c5916b29dba3e19547ae179489bc7034f5750ee6a18771a54081047e6a3be65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 ecbe733646f553228fc950ca6f3be50b4b616fb22277c11cdb5ab285e319e2a3
MD5 c3fb04527fd587a56bae0e856eb23f9b
BLAKE2b-256 87c7f6a8eefd770b662900b3575adb27b637fca53a28b80f2c3ec943bb302ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3994bc56493dc0245cf489c787cca2ddfba6eb472920bacc01680ea449973a35
MD5 13ee16a5f4456a3e76b90f5c270fdb63
BLAKE2b-256 8e58b23d3987e73fd8f604490b97670e930b282412c535b57cfea900033ed004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 a6ece2d3fed0ad641b8b251a6eb1d752b7303bb75efdc1e13ec1d26df277cb5c
MD5 b09f7968b143360dcf4682f17436959a
BLAKE2b-256 be1ae7a025d1bbf42e10896c1bd424a089d07de8fe1ab279e2d2f86691c36679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 338d4445d3ae107f6a220ef076e3e0fe7332b27de7f5e510e3f81ce58917dfc2
MD5 1061fda1ca352d99737dd6b38807b793
BLAKE2b-256 494545c5139566dd82e097e14b1cb976795a91438dc18637dfe0c45b99ce9e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da137ebd2d2711b7611633ec9382933c03b35f70b76009c08b4e8f8f5cb28f5a
MD5 f3af8e086c9579aca2694ff805499491
BLAKE2b-256 a95d58ab3b966c874c136a47e6e13658152bb4afee8740b7062189d2bb4354b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 58a687ae8da30cc841c2dd7a8d2b88a8e24fac73b431bbe4ac8ccbfc96ecc37c
MD5 8feb808dc5b42560621cbd1078f7ffcf
BLAKE2b-256 c9b8bc8ad5196ad50cac320dbfa1d4e59a2f69faac559d23499e3781bde00adf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.0.0rc4-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.0rc4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8c5df9ea03b8f9e29717dfe97c99c15a30513f0d82bd9c5d6f67f47782b3ce00
MD5 c60dd42bc5c3c12e10938871a07fffc0
BLAKE2b-256 9f5298c60d619a6a15b7ad1d5e8754ab08641157086a010e2f3d5af189c05a8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 820ef7dea5c44d44920b3eda1e0e54e1bc5e76ad867602b17538cac92ae05096
MD5 f1a6eedf73c438499ac73f23e2e463f2
BLAKE2b-256 111607dd43c862dae794a0d3a64bbb7657b3024dc9902fe5e5b5b0090c92f1ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 f87c418c821e08697a3cd5294df9035fe248f6f718a36779f73645a3ffa3ef14
MD5 279f0a954b7797ee4c4ffea7077231b6
BLAKE2b-256 915d086c49d65197d8b20431168f0ace843416d6245b405919b89dcccdc128ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1883a133011f6fabcc4b483a9657c40796636b520dd9653907df1a1460efec3e
MD5 c23fa4114ce82320060261f90cb651be
BLAKE2b-256 43b64da5b4d1baa697b952b345c907ae0dd34c8822d826ce86d1abd934d64e25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8e39841c91aec4d88e9fe7da9ae1c1c70962167616904a5599d40af114b9f6c3
MD5 4ad385275081567eb486d92a605e8478
BLAKE2b-256 feeb335370ab170a325fb84d56de36bb99c256a1b35322beab039f67c5c35918

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.0.0rc4-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.0rc4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 81b30c3af71e0cfc1f768fcfb77558c1608c26028a58ade15bb4bb62c8ade3b7
MD5 6acc59d33b144eba4da6c419c4d767f1
BLAKE2b-256 696d5db6f5404da88b7c826e0805834576818804d6eb13fc527dfb7e5b67878c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2e407dddfe91f68204e3a100fa670d656cc33a92c51f488d05e34e5ddd267506
MD5 bd60311d3b15f3e4df52e5d123c3adaa
BLAKE2b-256 b3fa3aa5d72aa7317643a1b0acaf9be9818f6ad219013b157946d7f95c231801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 d5044002178b7df749decce94e90f5fcff5bc4285c81a17eb5f432577b0656c6
MD5 fcb8f721c1deb9fa9b094716635b7ab6
BLAKE2b-256 02dc1b8a155190d5277edb4ef79c0bf8a2b18a2bbce3b2ad4370b00e03cdee5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 610a99b264b8de8c0e3e60a02142f93d00844af71417e68733e5f996e9647bb4
MD5 7a595aa0ec5300d0a2eec158c94f80ba
BLAKE2b-256 59a48f2ce5e77ee4e526f43cf7dcd5d4abacc40e0d9a277e9405609268163f7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5b14556ed5faad04d3f1e5638efa959c015450479a686d9964d111aa224ecbd1
MD5 3646ef90d6a1ab611c3ac95aeb2082b7
BLAKE2b-256 0c17c27fe5c23d00eb00817618941206bc8439e09a06d725a64d04626a51d891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 dfce2604ecbd342443c0a7c43a5f1795306d9d92381d6d0f53b5c07f69f407f8
MD5 3655630cad713569f862397014bb3d75
BLAKE2b-256 6f02e12cd4b28ac90bb4451e75ea66798875ea1e2552fb42998152b830ea0206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c781091d7f5a13a1a25474c29d76fc70515339a6729e3a1de7cf9386c13803f8
MD5 f9498092e8a7033fd9cada88a7d5f871
BLAKE2b-256 3d61e5918ada0d710bce2f6b8a75c6b5b660887b352fd8b5e72dd0941d458608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 1f803c0e539ffe27054564b0698c941c721d8ee97971d9ce5564c4a3a065d833
MD5 bc290d3c94bba62afa23a025c3927a78
BLAKE2b-256 f24c59bb2ce0c439d68b3b8b4b7b39d716f9388beb81f7d8ec504412ca8b8c42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc4-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5e1854c7bb4d14cf4a1d30eee84ff813f0d21c7e7411e9a9cc69b4f060a85a9f
MD5 9a4a10d5ec22b26f9689dc4b15ee013f
BLAKE2b-256 519b86bd8f49721062df9564f06444f5e448bf0000980c317e2c3b2de75ff36e

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