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

Uploaded PyPyWindows x86-64

raylib_sdl-6.0.0.0rc1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

raylib_sdl-6.0.0.0rc1-cp314-cp314-manylinux_2_35_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.0.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

raylib_sdl-6.0.0.0rc1-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

raylib_sdl-6.0.0.0rc1-cp313-cp313-win32.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86

raylib_sdl-6.0.0.0rc1-cp313-cp313-manylinux_2_35_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.0.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

raylib_sdl-6.0.0.0rc1-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

raylib_sdl-6.0.0.0rc1-cp312-cp312-win32.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86

raylib_sdl-6.0.0.0rc1-cp312-cp312-manylinux_2_35_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.0.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

raylib_sdl-6.0.0.0rc1-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

raylib_sdl-6.0.0.0rc1-cp311-cp311-win32.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86

raylib_sdl-6.0.0.0rc1-cp311-cp311-manylinux_2_35_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.0.0rc1-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-6.0.0.0rc1-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

raylib_sdl-6.0.0.0rc1-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86

raylib_sdl-6.0.0.0rc1-cp310-cp310-manylinux_2_35_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.0.0rc1-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-6.0.0.0rc1-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc1-cp310-cp310-macosx_15_0_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

raylib_sdl-6.0.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

raylib_sdl-6.0.0.0rc1-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86

raylib_sdl-6.0.0.0rc1-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-6.0.0.0rc1-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc1-cp39-cp39-macosx_13_0_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

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

Uploaded CPython 3.8Windows x86-64

raylib_sdl-6.0.0.0rc1-cp38-cp38-win32.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86

raylib_sdl-6.0.0.0rc1-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-6.0.0.0rc1-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc1-cp38-cp38-macosx_13_0_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 13.0+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

raylib_sdl-6.0.0.0rc1-cp37-cp37m-win32.whl (1.8 MB view details)

Uploaded CPython 3.7mWindows x86

raylib_sdl-6.0.0.0rc1-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-6.0.0.0rc1-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl (3.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

raylib_sdl-6.0.0.0rc1-cp37-cp37m-macosx_11_0_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d469f14861ae3074cf1c3a1672590280c9c604a048a58306904ae641b71ba843
MD5 8df881b471f9459060b220773b4b480b
BLAKE2b-256 b92a3cd1beba9c4a143edb8a501f5a85cd2873eb2eeb8e7ecf0d3d53549ff3eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 860517690de22b60fbfc314796619ed92160f86be1fd7aea16d946e02607477b
MD5 7d8a5960b7b3f73ebea2f66318a8141b
BLAKE2b-256 d4406df6e537da7c4f5c6bc134d5c0aa7b1510359f0272cf300b3e22fa9ba3d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4e24e8ebff2789aec5e1a5c6bd831536db1bb7f68eb462fef474381f993093ed
MD5 fb28ef2f20c53152bafd146a586242ab
BLAKE2b-256 fb3bb7a714541e8770ccdf5c0775ea38235abb07cfc8d73fc8ae2dcf8b71a58f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ef5de79441bc1c31e39f1ccd714c7ce35554be8587d5b0caf560ff23f845b497
MD5 1fdd5562c2707aa5b0b4882f4c733a98
BLAKE2b-256 412c2a490e14ab91bd81e8ebda445f87984adfbcd516c1369afd5fc06e09f352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cd7920db839ce692409505c3c3702dc2b2e28af1489a374a0db6ce4a4046c728
MD5 cf49e58f6125cf93d070456713698b97
BLAKE2b-256 fe427444ef075bf3d3d48bda113c413a21ca3056f04c41b2013eb2c4308a1330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 3c75ed9427d3c5aad5124401fa618148f1424b56e8fc857367f6051b68d3dd14
MD5 a405333ab606c76aaedff54435d99c50
BLAKE2b-256 8204a4585d8219ef8007f5184fbdacc44786d9b1d93201b0ccb6438a1bd4a3a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ff0aa33b4343f8c2ea18dc03954b3f3d8ad3a29c8abff6c8d90b3cc6cf0fe6d2
MD5 824f1a276e37b6bffaee6d004eb5c936
BLAKE2b-256 e34abd748a4e42b3eb2004f8d86956397d3a970d216fab92fd94cd3fd753a1ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 c4558f94eca1c807076d0c5534ee842a446b69a17048fd22a267f49173999035
MD5 fa9a586a0bcb885702e961e213c6aef4
BLAKE2b-256 74749665a597ea9b4106cc3636ebcf3c8d9762ea30d9cec8d95bebfae4ded3bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eebb15eaf7e172f420e4f6af6e1e33c8924f8faa8c9aa7d069453e40a9cd2da7
MD5 2c002235b37fcbd2eabd7356c1ea00b9
BLAKE2b-256 08631d57a97a52a2a66185cd3083b8f9322e3e406ffc8a52ea85293108b290ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 22e7f953feb30a0216e8587819cda452c45b5578cb54d13dd6ca288db1ecdd89
MD5 159af3b43134ae803313863727ddb0e4
BLAKE2b-256 acd8ca576346143ee65f9d0ddd019cb91efc6f24d7ae0e2446c012fd319a15dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 17e21a570cd71c790f294d83ec39296594b6f26e45ece3a86bd7b35a0bf01ab4
MD5 4923b902c1cae19da3cbf7fde3605069
BLAKE2b-256 3180b4f271576cc4ae52eb25bd752ce6a63122cef5226897dd460dfaf1774b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6bad895d31cf02017759847941d43f985928347bba8ac3a16bd210826783884f
MD5 10271fd1fd77761b512b79329968b721
BLAKE2b-256 9f6ca35732af6a9fd51d08174589b45af5f06fc29195719e01762ef4837ff131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 062ed3e31e4cbb162521aa3b4ea87d28202b5ca89014c184641c418a15beda6e
MD5 802a5896dffb926b3437b401491b0679
BLAKE2b-256 53f26f843f95e1fe81dc23c53454a8ae8c953be518d0ff3baf0113b016012740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 de190692a653cb163c5e316d2e567fb771b56b8cde53be796b553b13faf79ea3
MD5 2fc8b85ce065632b260e29c9f09e7e06
BLAKE2b-256 375123ac0c1374fb3a0534751435b6c87af4603dd1143623bab9018f13ae0b23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 dfde4ab8e28ef52a5a8fc9d4f004a2931940b410fdc27f1cbc1c57fe22d0699f
MD5 295c09cedd7ef6c8ffa1d9a0c03e2c74
BLAKE2b-256 9c7c967435e63d034e24a5b969c2fe63487a57d5c609d8fdd187786abfa5abdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a7c7623b3a92ae63ea5a616d61b60c9a9dbd8099e8a11f926c0eefb99414f08
MD5 8219fe45e79e7e19719e8f799a3ce4bf
BLAKE2b-256 340148a031808bda3a9657442e17ca9780795e6e968bb1c4f8891f00b92887e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 556071791b0111e829166e995692b767d997324a59856e66cd45ebecf261a77b
MD5 189f596461ea40e5615dfdea22d654e6
BLAKE2b-256 53373c02286de9069d4377652b6aa3aafe3267334305dbaceb9f78121af872e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e343f0d30fbaea9b6e248a51f9be388c377481c1298fb9bf738152af98b0cf51
MD5 94fd6632dac2decc7c0f9bda860e7233
BLAKE2b-256 39b463f95df816072bc37ecc21215505ba386d6b2edaff613e3555f470daaf8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b8d76d831f806bca448d4cacb325f857e501882c995d3c69ac49409f830cc7cf
MD5 9758ff7266a338e3d09f1c4ac2363b43
BLAKE2b-256 d2ecaff2766d0a3e2a1cb80f20ccc7451e9aeceb8c1c0948f3340927223f495d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 b030fb959e8c9074c930bf8ca09178fab39d4bf738c60bfa55a9d2b61bed570c
MD5 dfe95cb53d421f8b1efdac996726fe5a
BLAKE2b-256 c060bee25e16a79b2d1549fd64ba406c528aa503f9c3904953b30328453dd0df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b00fbffa20826813ba88f603e29edae834f63345ff24c8887b84f416af000a71
MD5 b9c9acec3a33d609a585ee5f8ce478ac
BLAKE2b-256 26d4233a4f6a5baef8140ee9e493c2e01fa99d4c7ed10174e9c86837e4893ff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 578678292cf0d4dafee60c7a4815d47137127148948c83e4eacb2d7315e86280
MD5 cd6a8b1fbc3eac0bbae3ebb0c1f0bfa6
BLAKE2b-256 dbbac3178c032eab0bc4c750e4ddb9b3e2cfaf03d7992ef88e8ac99f5af8e7b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5cc969d3b8f97aa0a9a5cf18cfcc09f9f7be5e467e3c85cc91040886a7ce473
MD5 ed51554b75abc921b86ed05a644f850c
BLAKE2b-256 bc7f93a49dd0a530780bd766d83d9c9975a20f75ce3186e852759454c49d7116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2615bbaa980490836f77dc4e4aa8b40b29baf2d43164e26b1826bf3d8a5d758f
MD5 1771f3af874ef40cf7ebc4f2782f6a29
BLAKE2b-256 27ec3bc8646391dfe2dc22523791ab24242d16c6b9015306eb3cc368edcec04b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a0d69e8dba28fb36a949a0b890526f425010bb1afb827f80dc1f4da98d4b5e0
MD5 724c2e3dc0a5adc6df1d606eea94d55b
BLAKE2b-256 15dba5cef03faa0fb203233000e6d700188bf3220b06b8be7512e052d34e1cf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c9beac0b68a8272638007831b3b1eea04075ab4354b4d7d6bd8416733dbb647e
MD5 992a45188b53a45b0b493870835c3c7d
BLAKE2b-256 b5a4f33a0035bb03b7d975c63c2757a167904ac7aff627431ebd4c0faa2787a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 5a1d7988787faff4612f98e46496bc7b126faeccf67ba97bb02801d57197fa55
MD5 7de2e57e7c7007905fb5c02fcbc25569
BLAKE2b-256 1b2ab32de381763b9639a24acb515139d9fd8263c6b380abbdfd4a7af0c3409e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 12ed8e61d0cec5215c142da8224b5e3aab8a58b2462f8f90224114553fca559c
MD5 7a70b37d17ff6920c1aa39433b466fff
BLAKE2b-256 b1b6fdb8d287989319cb1d61b0b7a0a295604852420cb56b52ac8e1fefc3a162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 96e1c10cd6fb62663ce391f8be217b9b98d952923d86c763e00a4abdde4a181f
MD5 1455574965a2d575aea7a8fdc53d8df4
BLAKE2b-256 bd9d31150aae52db55cea43af0ecf9272191770a6c9d199676cb3274b9786e48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 381e4963bde915befea0ad9ad17730162254c6ca3ca4e85d54f8c9f2d3ecb7e0
MD5 b04db55e74f0ba2e21bda1912e7b808c
BLAKE2b-256 047e01a59d4a3a4228baa392c635d63263b8efbb9c7a48f1b84f3608e958da69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 30fe1b660347bf069ebfe42ca254622a7db6c116b7a58a48e06820ed1f496461
MD5 b9d33eb6c12a67df04252997ae980faf
BLAKE2b-256 8ca8cf05e4d83d3fa96f315e4cd08d25cd75826ff57f30c63cb8de929bbc59af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6eb2a50b2140f05dd8db87bb615b7350973bdad3563bf1a25f0c07ebdf4da436
MD5 555220b7e3efc87e3753e7385fdde712
BLAKE2b-256 88f9121e87a225b3167c83cc7fa560465dd8d4e50f6a7d6aaa7bd8c321cf1bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 abdaef209d28743db5c2f753a048b3ea096b1b2ea130a4b74c9d677a7d7efc1d
MD5 a83255861747f9c2974d712e3f29de28
BLAKE2b-256 8825c28c8172313a27e752355af3e4a9c056c85ecc8994611260d197e0731e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 64b8b3e117cd32e57cf3b82923f048a38458b6bdae203c2844fd5439b4ed0bf7
MD5 84dffddfbc1c88355a4af8831e296884
BLAKE2b-256 0d8705810edbf905c172facee34cc745ffcac79c358cd425ca2370940c5bcfef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b3b6dee8bf14bdfcf88d11ff2bc509806fee7aedf6cb164aeae73de4f91849c4
MD5 af52144f6eb923fde2c00c1da1381acb
BLAKE2b-256 bc1e1944954e82420dabe9b82d885ac29c960299c02ce1800931605bbc739f0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 7c2a17a24eb9a922ec05c5f67e588dfcf285a5e5affad0f28d606cdfee8d69b7
MD5 702ce6813a683a38eedac08fbb01d636
BLAKE2b-256 755ceb15d77f948ff9d786e8f78457dfc66916e79273965c4f255fb65fda38de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 2901f0ea0d270ee5c0ba4266b24cc953cbca428d9e9ee67e9c8cfd183035a5da
MD5 4729324c4197c35136a6210421f85b11
BLAKE2b-256 08275fdc4c35edff691ae756f3fb41530b6992a444c4d7e9671523e52378267a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92cf8d370a489bdfae9c9654e25169330fda63ff8ae28418f318a2e715b5182c
MD5 29c129c81b7545253133f1462accc9df
BLAKE2b-256 2088d579b4bc969ace7bd3bce3ae1e19f3a389933ebb566d6e8025cddad5e7aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c429d24a51b0bd4b3a740a3b6eafa4fe849d1051d2bac345bf6587410d305215
MD5 21be0b16636bf538e1d9816865fb2aec
BLAKE2b-256 f73a0a0333a37255e10b43ab6e947629f7e858483a9c436f83362c3c7f6549ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.0.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 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.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fc3c83e59d6b2abd7f7204697029e5cbf19f873fe4c381cd33c3c67b5e425694
MD5 8fbc6ade3733aef9559f4f71a24784cf
BLAKE2b-256 f96f5383cbf40449ed588dc4cd8b2f9e4b2fbe9cd0f47827024a69275e3448d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2d79a61c4ad8135ed4390ff17e97c9903d617fcad5e14ad94812ba42f8c99d97
MD5 ba450770d52b091661f18ce008b24488
BLAKE2b-256 d03485648bf0c82e2bc13295514c64d16d4341561a3991689da4271e46414a69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 4d8651a30f31fadca757498caf93b7653156b3bb0d50a9ab6afaf7158a9b42b6
MD5 f21c336a218c77edb573db0d26e7235e
BLAKE2b-256 6e2b664ee4144cd8473e56bb16cea1f1fa72ec99724826f7f7f26b53728c063d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 4700f7e6a0bb4bc7b25c2ef23edeef6132749a2d3bc397c6947ce26412b9c6da
MD5 95b533149be2ef5194aea7d0dc2bc670
BLAKE2b-256 9c02282dd7096955aacb062922c4c56fa30ddcfcebbfe73553703731ecb59a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3acaab2a4041fa4a9696783aa313a1a63eee3e6ed36d4361fd98b2623245df70
MD5 dd8c269f4d50295f9c6478811f251c4c
BLAKE2b-256 22454f73d538f5dc7f29eb4b993d02c34d4ff55c956024b238742fed189de301

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.0.0rc1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.8 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.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9b30d7c0eccf3264f08ef75d36d94383b6206c39518a1aebb8299e284a8a5d77
MD5 928331c1f3fdf2db97f8edbc7cef79e2
BLAKE2b-256 b8d636da79050237b5439272a1a8ab37b66881754bde8b811efaca333507d38f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8f4515f44224384b1c86044dd8b98f4d37420ce6be7e1a4d7682609ca287329c
MD5 9da52f18289979320a4f08e1d8157790
BLAKE2b-256 d7ba5ee990b2eff599e949342dc7bc5b020e04bdf78275c04cd22919a9a4778e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 2eefac4e527ebb41f85cadc5f5e635fa211beb371e9bbf29a0996f58f99471dc
MD5 48295adc76be03a6825cc9b3eedb19e6
BLAKE2b-256 ff5587783e132f1c8de0aaf84b685ba8d247c606ca4e40d33faf3fd18fe4faff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5a1049d0a6320f5067c814c8ecc0a4d8d404dc2bb91b69729b202139a3d8b045
MD5 f302f0b1c50f3c3693c4af83f26cf6f0
BLAKE2b-256 0c22d247342eb3265f5540d098f1c06c8a6d9904d19371f809a84225e7f182f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9ff29860651f905bad43c39793f39b430d272d49cb59da42432ad44071bc5383
MD5 de99f039b06e9ff9173de90c20236bc0
BLAKE2b-256 38769ac611453c2e17e05a19acb3b13bdab3527760d640c381cbd00bb4f2370d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b7f8bfa43762b2134b0278e2b17dd691eb1720a7961fca64df173d84e56b2f2a
MD5 6bbcd4ce851cec2a0ead0daca323e425
BLAKE2b-256 ffbe19eb608d7079f7f4774d0eac4b31878deba8e53b87ed6e3f4b702b1e8d3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5aab2e40917c5cd797e7f87bf3d866d051cf172c6d946775c4f32d8f28cca5d7
MD5 6044e853ef02175c5782cf2a32eb3243
BLAKE2b-256 49a7160a7c47f11d0a637167b6f335b1ceb5cc7ff97011f9d595cc55e12c2d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 ad9a7c21f64c7e3ae034b0078befbe4aa54b774e2e69f1d937503dfdbc331511
MD5 03af32e7d911e758b8af2fd0412e4246
BLAKE2b-256 ed8d1cc283f41f3de14654868c03beb8cf3566ed20c6b1402f4171d65dc43948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc1-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a7e9ff35fdaf7aea587426bfc5b1dfe106ff1384eff9f412254e7758e01b4248
MD5 4f07def150b5330c80f9f551e1825d14
BLAKE2b-256 4bf4db49f704279eeeaab3d7f6cdabbc463959db727191215b0ae47919c40006

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