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

Uploaded PyPyWindows x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 75b25d5bc57c31c8a1b77666b1b5165366622ac7e79e7bcc9b9142888aad7c06
MD5 f87d8607fd5156bbb461279fe17a928d
BLAKE2b-256 b304ed9e33e41b99856878b436936f34536eaf1e635ca40bdb367760489ac825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e5b53cc25939251080fe415e987f5e38107901283d2b23767c5d4ab6a242e679
MD5 ada280136ccbdd983a54166f7e4fbf82
BLAKE2b-256 d7ac5b02d419b24c122666c831d12661918c198656a5fab0dc8c11b40509b800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 032b596baf868769ff3006706ea22a7cbae7198af69812728375563099638448
MD5 3ea14eeb450e373c702422690ffcd0d1
BLAKE2b-256 24f78534a4fd05b45927b927b1e018d86181154fd6a92deb5d46a5dd80a14c69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e3218032bf108f0206c3d063abf1b09f7de397e8b37136332dc944e3addbcef1
MD5 60284d3bee5429042255c04eab7b3f85
BLAKE2b-256 901c89fcba3dee4e063dd430f2eeeea900fd95792aeb8509c37607c86c1d962b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 243cba4bfb3fb51b82512892806656e8191bf86b5919e6f59c230f45921dce75
MD5 26e93a383a8cadb8b4433dfc197bdbc0
BLAKE2b-256 59fc9face41685f9fd066be20ae8be29212fa4109be7cf720c8196232a5112d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 7069b221d90e008058876b8ec5a4691afd579ba7d3f9d73e12421ebb7dde175d
MD5 90f5457e4e8548d5171bb610dfdcd21f
BLAKE2b-256 1c7f2d17dae5f164dc8fd18fca2a22962fd854c14a4be4f9a0655be5d1996a62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f53840f6c297a59a3eaffdd1a512594e7b5280b7c77f27dbe3bd4fb2bf62747e
MD5 377b99a080bb6985defe53be52c1cf88
BLAKE2b-256 707fda6d82d12c7c1b8408ebab11d3f94c49d3f90315132b39a352e23d1e0aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 aba4c11374614adea7f0ee9877589871e8a54abd980540aa646156fc165013c0
MD5 51b3153701c72cd462e4810a92891471
BLAKE2b-256 3c78ceebb081fd12b5a79589cd93a0d48c094a8fa86e2a4386c7da31d92d28ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76f1af0a3735ed2e4417b310ee627884c25794cbe39d66280e6a7cc35e841a3f
MD5 7dd929a5f067a1638a9d9f9f6e46add0
BLAKE2b-256 d25218a022d4aae00af9f4346d1c8be89bb9e2875d32f7b3b1270ad917fe97ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ce8c9e0601da85a9e80dfe819876d0e525fa1f892f7428e139051952559e734c
MD5 a6945c99dacfdc32c3216fca40883327
BLAKE2b-256 2049f551d476b273a1e494b3cb5e02d55d6ae3068e03ea23cee4f2d3701aba20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b9a24d13537ec076dbbe40300f94781fa7827bc07c4d467945d4dda60118beb2
MD5 974da77623a1c3366a848015857f1a41
BLAKE2b-256 69517fc2ef12eda7e410d58f9256fac248cd9cb8c932be1764920bf4f7b7d8a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ef4df85e163377322b82d875adbf57237b71b8ba00e719eab33b6e4d7dea6d23
MD5 1245d8ca8ed0dca83ed5363095fc00f6
BLAKE2b-256 fc73e98021969c341fc8d789986bd626eba0f51451c511aee82262f2a2b16a57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 e2e489300eb6473c6b2871871966eed6148f76b1e4ee8b5f6d8ae0314a4e123f
MD5 4b1c0abf9c9a2cc06c24bdd82bc94fe2
BLAKE2b-256 aa045c27dc75d87a524500737cc85776d9e29a546eac51d3ae01a472a4b633cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c2f0846bdd65a1e69f1af38d3bd9926e12d67cca02e7b55401bc883f355401e9
MD5 32d460e221e7699ab4527dfc3353992e
BLAKE2b-256 beb7bdfda70746b031692a8fc85bf2034b53b1d8d38e5c0347c63bbbeee3bb28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 54b9e974ddbc7294588d08c7559b5ea2b12f8a71ba073fff8b87778729e1b1b5
MD5 15cbb0763e725827742a4cf6591adfb0
BLAKE2b-256 3e979cdeb307194ed7568850a5edd28a8d601f96421a2b3ecfc557452306fec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4ed90e5daa2e94f1f6f7723a4e50f08770de254bad11d4b46e0752a867b4292
MD5 9b34992177edb840be88a4aa4f353c14
BLAKE2b-256 1caa89c2b5f40db4805fa11e794fba21128206e76f52a375621a12dd47bd7886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 532ae3a8b5525cbb99a63354900bc4713efa907ead34c9bba66a477a00109a3a
MD5 e75803d71d09fa61438575679bc8508c
BLAKE2b-256 9fc94894342f9ecccd7d16eb89a5088b6b42ae2dae993a05835729f1be7003a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b2319f5f4fd97e4e5371ea042a76bb236f9ba8aea55e13378ab611122440cc54
MD5 f1e0e7dd9993994692db199ec7befdaa
BLAKE2b-256 f803b890199cf9587e625b9fec98648e5f222fbdbb591c989729f337526651a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2cb8c64ce9207a24a931a5dd4f9152edc829e3c40b2de70cbfe1fd25d3d2db35
MD5 3e237559c32fadadb26bf7457b5b4c49
BLAKE2b-256 2a191a9f9e093afcd92324588be24b0f9c0c8f4a7f07396dfb9b6ba03f18ff6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 bc4204e50b04531d0e7f4c01ade241be457fbb4302586f228edd0fee592e578f
MD5 47f8cf737fea41b8b324ea0200f361f6
BLAKE2b-256 cbc0a12c3441f86702177ddae0620614af25a91a93ff14af36c09c488867ecad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a82fe16d5b1eb1b6a912df1b734c6cbd4aff9d63d6af4f99975ef256c5dd9541
MD5 bcbb26fd3e86e249593ba4f564705745
BLAKE2b-256 b136d4dce416834902873947a441d7e15b3a1e0e00e1736730ee66670fd57c52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 62fb7dd1a4aa0cef2b6247818b7401e6a7da1d0dfe05044729ee5c59cbae2d97
MD5 6ad21d5affa140cf38d54cad9ad6b46c
BLAKE2b-256 cf8b3184ca190b28d76d29bdb169a6348325c9fff50c8f769022f8a1ddb06fa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76712e36ac819082d8ef9e18be1bae2186aea6efbd7cda6db722ca2dbdf4550f
MD5 e358d935549ff72b156805fb57af7b40
BLAKE2b-256 f688cffc601b918fbb11898f63a13f53d50eef0bd8f358bb0ec622b99cc826ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3cc12961f183326e580872572a21553abc2310bc075425052e8881972e8a9461
MD5 c18f20c704384a72aba21f3edb2e4fbe
BLAKE2b-256 f5c3722309c7a861daa96471e221746795a0c812ef040ff7be266839822eaaa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 36ce2d2dca000dcc05f7ac1a3861df6661a2236286440525f9159f48a4e45b32
MD5 1a70a6d0a2f73a2ddce026be8b49ccb5
BLAKE2b-256 d452f4474679881f1cbc3909c1c119ab60eebfd7bcd52ad2eb2ac990688275db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 765d979b7c22ff3726222eb417d0ba816284cb791f8f2d2311ac6e321f24d578
MD5 3213e690be69d39df731e0bc11f8b490
BLAKE2b-256 0e4060bb58abdce51e691e9b0cb6729f0f60449e3fcdcba60c864d23fa31bfdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 d48fcf7d0ec35ab24efca7fb4bfa39e48703aae97bf6b125923d3b5b61e766e1
MD5 af9453e5a8410701f4c378af558a936f
BLAKE2b-256 6d373487d386b2ac180068c68ed2e19d6df63a027da98513738c82ca2ffa65eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b625fa459dbbd484d855da293cd4eb84911827229c65fab144dc07d421ab7b80
MD5 5114998248405b48ae1ffc6d6afe4fb7
BLAKE2b-256 48988903e475ee290b9260e0bade20f1d29e7bc8b6fc7b2d0c740c244d1afa7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 8040d352b7318eb625f7ba1f7f9557682a6ad76256e0dab3d2d07a8f5d53b032
MD5 9fab3f786134a15cfb1557c7567d7196
BLAKE2b-256 c7463a2073c73c52e1d647bc2fadceae6d880216cb0c24350b33e8397b0eafc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 440ff5e1d245aecbd89535f17e9362c8e47892f1261b2a7207dfc99630ba99ff
MD5 9bcbad9210bbb7422d65bb4190a96618
BLAKE2b-256 c152adda7107fe2dc847c456279aa3632a93121c257c7d48cd33bf1f9369fc27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b04df14d5b7c6f7bb07df71b0951aff5c4223fd2df002e2f49f11830066f1194
MD5 2fe6cb4e6a391d622548fd4daff4a5dc
BLAKE2b-256 e0cf2ff1fa3698f5ae96fc0c0ebf470f8b8072a819dabfc42422444ca46ff82d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 19227cd10d514338c4238b3773c50a84aa3033ead313770022bda218a35c0e8d
MD5 22e358dc502d58bd7a41cb01f8b6fa9f
BLAKE2b-256 23d025836bfcea69f69d818b5eeb682f518d9be297584465c9cc01d28ee08d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3b6635d50d60594990a8e59a0fe722ccb1c70b17e8c99d491937c445188367c9
MD5 e5e0eba586310381c3fc34c08d8c3540
BLAKE2b-256 c7d5b4e4be79acf4d21be90de4d419583ec3f8d63c4b73d79f412eb43b90190a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 25764b9ac9e443d2c14a5236ca008b6f670a9161cc22620df8df0f94f3dac0e7
MD5 930e7a3a0eedb53e0f05ac710e8bd999
BLAKE2b-256 e4a56313d50b5cdab0f4479ebb6ca1b52a6eca730f52ac3f2091765ad484f375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f40f38a2b81ddcdabffc93b4473b2a983e7eec39d9d175742d8013f1f22a7659
MD5 a3a9a9032190053315a3395a2b64528c
BLAKE2b-256 e53d798959cb92112ec0311a4908781db308fdccdf553715afe165a92693d2e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 a216d07d1a9fd4fa0344c3dcd6d216a9c350024671da0b8da170d041381f49fd
MD5 9a48d5f7e7658736ed78c3c01edaa8dd
BLAKE2b-256 d605b4d0f603d56831f76104a5af7d5b6ab4c3666381f0527ff5366288f8d5c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ed9e41c188d276f01174aad4e523195ff0451e0a44023399f61ebc2dc963f2e9
MD5 c287fe31d4cc43e9aad1f9c5022b5143
BLAKE2b-256 6d2ba09e6f9f5382150edb58440111cbd7d5e20afd809add97f35ebf11f0b5ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 055076b1dfe82e16c0bab5cb0b12901f015386a9e6451ae06e5ab88f40329256
MD5 f04ccd44b491b519f87ef8d92913fdbe
BLAKE2b-256 f0fa5197fe1dfaa03a1e22e8983aae7324c6f89f9e3a6904a6bb2663013c44f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e23dd0c71d835b79ba7e604852e8871f64040abf16ffd8ede755e4094a1a2719
MD5 82606b6a0bda1ead89b9c7c66dbabd19
BLAKE2b-256 297af863a1ec25492a9144f832f5ba34bfad0860de46c0f47e622a5eaee7102d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.0.0rc2-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.0rc2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e62fef3d8465cc2804f16a9e4f5cb7311ccb6f22663df936f07a871179f83df1
MD5 bd0348826bed8320abb7a6c32cb2d6e1
BLAKE2b-256 cb17b9df84190d907a350d77e0913b7660d26f5f178f368ff5cfa5a1fdccee30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 48ff602274147f78b0c3fc3c1f0f559c5135348f3a9e969c85566cea955cd075
MD5 ccb8584d6ffb7eeada129be7dacc5c1a
BLAKE2b-256 2ef8bed8d2923eb4a0239f46d05d4590bbefbee37529cd9672d29be7c02dc7a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 4964ebf4e7756ddd322ea4f96e82b49b13591750d1cda4be9b73a83df1dcd952
MD5 0a38c06c5a7709c5854be888ec8ffeac
BLAKE2b-256 a8da138ff7d6d57e1185645e1747bc6d84e40bafe8b380ed261eac5b794cd312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2a2c798fd9d1b9e4c75c4d3cea2ee9dc312a23da720b89b091536326da558a8a
MD5 d133b88ccf241e861f67b9d2b4ed0837
BLAKE2b-256 de2f5d99027b8d8d9c6ba242f409ab35d706ee0afc105ff506221ca48894e279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d49c3d3d2ec2cce247bab4fb2d4d9b465d74dfdc54525c1767f219a73a928afe
MD5 c7d68c2b39f6f2a7e68dce7ffceffee9
BLAKE2b-256 80707d65228bc9cea89c3819eaf5b79284d8de4bc134126579d7d292c3bd6336

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.0.0rc2-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.0rc2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c26ea555de998815de2c5660620584b3449c29e2fab7a5ea0069da8113e0862a
MD5 d674e8841f3812a1134c4d41f42c9240
BLAKE2b-256 ae4adad190b103958ee270be7c7b59005acb7a205b9293e074da0036868cfd0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1b3dbe9c8379b773ee5a70e3c8040a20ed4d74a727029b354ab447b54a2332b1
MD5 896e19363d6e0b0afe1f2f91bca74752
BLAKE2b-256 4e7cb1c2795c2af620fee33e34d495a6f3bd5771dfd31856ea61692bafcf3538

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 34a2e65244c90f50d3b137e4f50034808d3b5a19dc41239dc6b23d348761e8bd
MD5 a53cdce8f23ca27270784933e9380cce
BLAKE2b-256 52e7e14e3beae4b197f31468347238614358c84cb5ca04a3fd7360c388d04c38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9162168457af77185b9831555378c4ff49550f529f63df29c5629944204f021c
MD5 fe07fcb97905f061ed75c5be0fa3ebb6
BLAKE2b-256 2baabd93d1f0135dd0ddd323632e60394159a907a528be51691114fe35e8c527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d27a59e9c84cb8f16acf0344a333f251fdf380cc4220716bdba054f9c141809c
MD5 01d5325c9f649d2411a0fc172a184fe3
BLAKE2b-256 c7aae413178ac49b16bd688bc97c8ce66ff2122b99c4fe81f3e51581c143368a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 053cb820d5c6c6d5871a19b20da83acb62b50cbe8a9335fbe318079e56f464a4
MD5 33364b01d67a4b3df7e0d161573b9d8e
BLAKE2b-256 afd742e772d498f22ea2c8d5ceac619dd0bb09b8fb3542bccfb4aa2b28a7d5c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 52eebb82447a461fe303012e41772f86b5e1d5076a6997745060d454ad32378b
MD5 14aa83cb4d6201dc30db0057b460b8ee
BLAKE2b-256 86c32e9986dc03bf630106bc2e143aa5519b21675e3ac3ff745985277d79a136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 6baefaff648e92f18a2b35782cf0ccac6ca4cfc504198e52b9a2b12e4141bdf0
MD5 6d8188063ab3c50109565dc9bc5f4169
BLAKE2b-256 0f668b24d4120d7faf4772d1baa7eda808c76364923ffd7162f4a4d98b38127f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.0.0rc2-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 74c401fa460e955593af2441b7d16de91b92634cd148f9537bb92e4882cdce47
MD5 eb565096e7774712b727dd9868a2b2a2
BLAKE2b-256 4d8b37bfb18fa7fca643c9eb2db3db4e1bfa4d0939cfb3d6c107ee32b4702f5f

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