Skip to main content

Python CFFI bindings for Raylib

Project description

Python Bindings for Raylib 5.5

Libraries: raymath, raygui, rlgl, physac and GLFW

Backends: Desktop, SDL, DRM, Web

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.3 --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()

Example project

Project generator

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.3

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 Windows 10 or newer. (For x86 or older Windows you will have to build from source.)

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.3

(I do have binaries for arm64 MacOS 11, 12 and 13 but I have no way of testing they work, so post an issue if you want to test them.)

Linux

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

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

Raspberry Pi

Using on Rasperry Pi

Backends

Dynamic binding version

There is now a separate dynamic version of this binding:

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

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

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

SDL backend

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

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

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

DRM backend

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

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

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

Problems?

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

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

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

How to use

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

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

Use the raylib module.

If you prefer a more Pythonistic API

Use the pyray module.

Running in a web browser

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

Make a folder my_project with a file main.py:

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

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

asyncio.run(main())

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

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

Point your browser to http://localhost:8000

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

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

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

It does work for most of these examples

App showcase

Tempest-raylib

KarabinerKeyboard

PyTaiko

DOOM-Clone

Tanki

Alloy Bloxel Editor

Eidolon

Add your app here!

RLZero

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

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

Help wanted

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

License

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

Performance

If you need more performance, do in this order:

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

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

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

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

Bunnymark

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

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

Packaging your app

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

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

Advert

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

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

Project details


Download files

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

Source Distributions

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

Built Distributions

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

raylib_sdl-5.5.0.4-pp311-pypy311_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

raylib_sdl-5.5.0.4-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

raylib_sdl-5.5.0.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (1.8 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

raylib_sdl-5.5.0.4-pp310-pypy310_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

raylib_sdl-5.5.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.8 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

raylib_sdl-5.5.0.4-cp314-cp314-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86-64

raylib_sdl-5.5.0.4-cp314-cp314-win32.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86

raylib_sdl-5.5.0.4-cp314-cp314-manylinux_2_35_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

raylib_sdl-5.5.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

raylib_sdl-5.5.0.4-cp314-cp314-manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14

raylib_sdl-5.5.0.4-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

raylib_sdl-5.5.0.4-cp314-cp314-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

raylib_sdl-5.5.0.4-cp314-cp314-macosx_10_15_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

raylib_sdl-5.5.0.4-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

raylib_sdl-5.5.0.4-cp313-cp313-win32.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86

raylib_sdl-5.5.0.4-cp313-cp313-manylinux_2_35_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

raylib_sdl-5.5.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

raylib_sdl-5.5.0.4-cp313-cp313-manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13

raylib_sdl-5.5.0.4-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

raylib_sdl-5.5.0.4-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

raylib_sdl-5.5.0.4-cp313-cp313-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

raylib_sdl-5.5.0.4-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

raylib_sdl-5.5.0.4-cp312-cp312-win32.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86

raylib_sdl-5.5.0.4-cp312-cp312-manylinux_2_35_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

raylib_sdl-5.5.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

raylib_sdl-5.5.0.4-cp312-cp312-manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12

raylib_sdl-5.5.0.4-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

raylib_sdl-5.5.0.4-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

raylib_sdl-5.5.0.4-cp312-cp312-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

raylib_sdl-5.5.0.4-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

raylib_sdl-5.5.0.4-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86

raylib_sdl-5.5.0.4-cp311-cp311-manylinux_2_35_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

raylib_sdl-5.5.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

raylib_sdl-5.5.0.4-cp311-cp311-manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11

raylib_sdl-5.5.0.4-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

raylib_sdl-5.5.0.4-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

raylib_sdl-5.5.0.4-cp311-cp311-macosx_10_13_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

raylib_sdl-5.5.0.4-cp310-cp310-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86-64

raylib_sdl-5.5.0.4-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86

raylib_sdl-5.5.0.4-cp310-cp310-manylinux_2_35_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

raylib_sdl-5.5.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

raylib_sdl-5.5.0.4-cp310-cp310-manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10

raylib_sdl-5.5.0.4-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

raylib_sdl-5.5.0.4-cp310-cp310-macosx_13_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

raylib_sdl-5.5.0.4-cp310-cp310-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

raylib_sdl-5.5.0.4-cp39-cp39-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86-64

raylib_sdl-5.5.0.4-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86

raylib_sdl-5.5.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

raylib_sdl-5.5.0.4-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

raylib_sdl-5.5.0.4-cp39-cp39-macosx_13_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

raylib_sdl-5.5.0.4-cp38-cp38-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86-64

raylib_sdl-5.5.0.4-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86

raylib_sdl-5.5.0.4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

raylib_sdl-5.5.0.4-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

raylib_sdl-5.5.0.4-cp38-cp38-macosx_13_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8macOS 13.0+ x86-64

raylib_sdl-5.5.0.4-cp37-cp37m-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

raylib_sdl-5.5.0.4-cp37-cp37m-win32.whl (1.4 MB view details)

Uploaded CPython 3.7mWindows x86

raylib_sdl-5.5.0.4-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

raylib_sdl-5.5.0.4-cp37-cp37m-manylinux2010_i686.manylinux_2_12_i686.whl (2.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

raylib_sdl-5.5.0.4-cp37-cp37m-macosx_11_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

File details

Details for the file raylib_sdl-5.5.0.4-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c6110b7d4a566a969baa494c168dba743cc0e8dabe6d7dcd5bcce15a6a7958ad
MD5 e7071aae501e288f0187cc2bbd05728f
BLAKE2b-256 eab10d465e0895c9d2adb967edb300dba2f9dde6ef85c7fce88a7bcd9b2d3b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9b85e776ae44ce35f70b549ef1325781cc3acad43eae3d6a83914b80d109df16
MD5 0cdd12939e4c2f5d41efbdd3ff0d7881
BLAKE2b-256 4089e4201e33782c89b8cafe09b88dd701af124ab4fa86dcff0ea67a006b83a8

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c41a457ee41ad7cd1b3ea3872a05f9a20fd7c62fc06980a1abb28c1edbaa26d4
MD5 0ca06054c4a93498227ff2108470276b
BLAKE2b-256 6fc0185e01bccb4af489efd50a4390b1ae9dc67c6f03d349d2a521a4fe462c24

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bf9f67249164b851f7c4df31e3580bd422c67ab4b1ceb1fa05c093a06cab9224
MD5 11bc2c7f31fc340c943ec3e74af2468d
BLAKE2b-256 5bd7c9c7b8132b8d382ef4d41ea1f6320ef319eb8f34bd1ee178f10b0570d226

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3e93a1787104815f143f78d5ca8ca2444ad00c71c96885df739088f3632eac50
MD5 929f4934603fc5ffed648e91fd65788b
BLAKE2b-256 d9c5735a7284c2840f5603050c6ba98f54573ba115b1e2deeb881573e994e1be

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dd7c1055e8dd7572e87a800a519667d736adde4d9e08a633c3b7ae7346a474e8
MD5 298f4358e6285b064c5cb4516c410adc
BLAKE2b-256 44045889c7e16f86286119f4d543b957154341afdd57d254eb73ecf1118d5ccc

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp314-cp314-win32.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 31eb66f77849bf9c5911bac9ba7bb98e2bf3331ca3071e78537af495f224d6be
MD5 7be846fe71a6bac6e67ed2b072364a53
BLAKE2b-256 09a8ffbe1eb18642fc51dee567eba3e911d2384adea5d48183ebebbc3a00563e

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp314-cp314-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 7021c1eab367d742e46ded8c60abd1d1e511e0d1e42447c0840c2cd3a3612098
MD5 9bcb59c42ccdbd0e45870057db8fc432
BLAKE2b-256 eae40616002480f93b6c3658cbd07396c16696d6b92d92fea7c9280fe0573242

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1d925b73aa8b6a142fb306cc7ce0a3641901ede55b30cb3ce394419914f13d37
MD5 16536dba22569b334beca4da489be07e
BLAKE2b-256 8de5fbbb76240b969f24d204dde11610ccbb64a575c8df197e873a7b58c6b5cd

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp314-cp314-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp314-cp314-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0d9c375a7b4af52da07cbf2de6d1d3b19c38eff2cb7b0786006e13c4aadb6ab
MD5 5a28c29027e4d4aefe192a175bd7e0fb
BLAKE2b-256 276298cbefe6aa30d8a921ef30f2c6b43bfa8648e2f04ebd0353f02090a7da97

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 dc12cb522ccb03994a5dd82d7ba9a9f773c6609ca82a2480baa98f5770528709
MD5 59d70d1a4ebf6d6d1ac28659ddea6dc6
BLAKE2b-256 b0329915ce2a6832eaec01bf604997badf65515f81369fc3cd92f33ecb25b4b6

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c291ddaa3c84fcd2339dce8b589a74a932c68ec98b63a7c2a2625660075576b
MD5 ef58844436c1ef3a50beee4bf0c5a875
BLAKE2b-256 06b4d1c4751610730402681b39ee4638ca157b8320647fca7b55ae1dba91efa6

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3f9e0829f46666921e7727965c2838b390767e1913fcc10bdcc42c817a75ea6e
MD5 09f71907bdabc0bbbd68d5e147fb5ee2
BLAKE2b-256 0d0e5b0cdb16137902931abf1d297bfa54e50475d85d25dfa2a3a5ea6747c911

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 32deb1f71c1c2843435623544dc7a4eef86f106279ff094b2459d9e5059b9b85
MD5 c7ba8dad66eabc1e19c0cdf5b26adf11
BLAKE2b-256 99feb572521c028e623c6a2b4dc15eb097f1ac645b99a4d46073c854cbf347f2

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e8f8f983e6a5ff0160e95ab8756f563221a4ca4ea91a4032a255825ce8320d19
MD5 ee46cf17f672f8d1e16e34918191e97f
BLAKE2b-256 88fa0a9ddd1284e7961eba8834db5b4d6437c8cb8820cd1109b5409a3858c67c

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 2ae3d8a7efee7279f292358513da4d30f4af99067e6cbb3a62f5c2dcd5190565
MD5 c2ae89ee602c6675bef8a8cc96b11a09
BLAKE2b-256 690300e94c679b168e369a6d6b3f1a47d360c4846af021a9b886c509f5db027c

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 762b29eebc234d62913bf189a161cd550cf547c8cc777b5408584b20eb6bbda1
MD5 fc6019dbb3ed7c503a61a4fb507fb3bb
BLAKE2b-256 95a6719eae861ceab12f0f390380df9196d47d4262e71419059ef70a1761a096

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp313-cp313-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp313-cp313-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49718e660551ae5bc0b56da0ee8d0d0fee16b5ac12099455e6663d25477ec836
MD5 81873fe867b8cec8591401e0c1abfd42
BLAKE2b-256 b0495db0e35c3a33c6a314b49eab1d11e7e46cf03d3380eeba38cbb48958d0e0

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 1cb4692ac8a0c888489bf5b684ce05895a4cda5a07dc3cef7aa25634e72c2205
MD5 4672977562d1ebbcce504353c3be1cd4
BLAKE2b-256 937e932c7cef2aa497b210af28b0515fa2e06d8a3dc498d3a88e595417e4d203

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33923b3f2b3c9e19407830dff283f4a8cd32a8d48d5211f65e769a17849fb889
MD5 1bae9f750c8a799b4dabc1981b2df079
BLAKE2b-256 4703fd77dbd3843a642d13bdbd81e06e3ae156de830ed59621b0870578a03901

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de9e8df96c69c5b114ef8cd5f11a4095c34d0da7604cbd3afde06b427ea7306f
MD5 d02bd3d1d7f93e1bca6d43def104fbff
BLAKE2b-256 b8449482f7a69fc675ebd75ba3755639f3ce4ce772068227ca7d617e3b10faf6

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0f66ceef036fe5d5b91d7b688a5062e47de06d454e060b5964d9b7152fdb8fec
MD5 2cd712a77fedb3fbb1c8ef6e09b12f61
BLAKE2b-256 5e341b92adde74c879d62fa82da74cdbfe302d82a1ce2b2fa96afed13e0c6bf3

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 36bafa19f2f0517eaac88de47e6babc338b5139d3da473da105a6857e167de24
MD5 cf86c842640d0371d29b481a4cf3edd2
BLAKE2b-256 0a2f11c44302e01d877212b01ca3c799faa1446fcd3309fe28877a54fa079737

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 b48bb4536b6898947b9f4d516fac2775eebc8f4b61db1ac3455a80712545db76
MD5 34020d33d26c7acf450323efcd56c616
BLAKE2b-256 75763b491a114acf770907de2a454f6d68d81d35d5da5533d776b835479c9053

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 76be2f2ef13ac11c3cbe97c930b575f4420815739585f800bbb899231d1158f3
MD5 21f055dc1f53036058c85e6f11097aed
BLAKE2b-256 0f0081ca07758b07fb8df4dab1e2f9f69b2edc409ae595fbb8672b9b92989a3d

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp312-cp312-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp312-cp312-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5669c0b1cfbf211920b9fe336c41e393d9cce854d76f975c2fcbe583f10c9c3a
MD5 c52d5ad7b7b7f234e7da52c071d18844
BLAKE2b-256 a83d2a9559572deda41875c12a8605cfdcbdf0a8f775992976642a4b76d99545

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 25589d25eb990140196fe20d388948a51184e0a29cfd630285555987d755aef1
MD5 1d274fb4f5c1c97f61307df2736a7118
BLAKE2b-256 cd8412ab66b87879e6d285183ce7b2670e137e499c952169697a944713251359

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfc50e894a8f97aadeb96870f6c55d7d64ec7f18f992eb6b491abda727e1e175
MD5 edbee73be6657d2481dd24e4c5308336
BLAKE2b-256 9404240a6015b46a791f91f07944e3e9d58ba150e2db368131f77c0840b019f3

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d5052e503b7ac0bcdc1d149a6adac24951fc147f114dfc0e180354db41b80125
MD5 2971bb7d592d79352be894e9a296867a
BLAKE2b-256 51a3192f35ddeb7a887c910f5ece188bc44fe545e341d78969a3f34d7d7944c0

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6f93272f4a8514bbb0c302b3e5f0f9f5c67e9617e3800743de00eb6edabca43f
MD5 7f8009e55378019d2d5297f5ca766bf1
BLAKE2b-256 bc678c63932fa8fd56b0d3249de8e88f2bc8f70be8fcfa72af7dcaa98746e8cc

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 50bcd19b669cc75d5120cc49c9f72a8d245eae900aac04c1a31820027084c3db
MD5 ebbec5f894aa3e3421b24dab93ecb7cd
BLAKE2b-256 33aacb7ccb1f343c20b9b14b894b5bdb85db17d987471ddf51e21fa1d3b4b0ff

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 39fcef7cc56abcaf41cf9c0df09b4f2a257f1b2da0ae1e3a053837c791cb05d5
MD5 bb5c76c9d2320c262ca9a2d942ebbcfa
BLAKE2b-256 aa12e362e502dc30daba76d8ee502c48ebcb4b69d9d3c43dea5593d66084c376

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4393919864141c7c7259ba5e07397d11b9e42cbaffa4c5fb5adf1006dfeb3513
MD5 17b256f89e85f7a644e219ab174d8361
BLAKE2b-256 a27641330c254dffaead4912c9e08bb70fb53aab4e9c674c9f0ee7dc4d1e5718

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp311-cp311-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp311-cp311-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 943f51c7ef02490934f6d9cdddf6dedb034afed84d129a7302cf528f1dcb3672
MD5 ba0a9bc3d36d8d6d7cdb6f90ccc346fa
BLAKE2b-256 224fe85880fe1514ed20b32e8ca5be1b48cc773913bbff77bbd9fe510f2fc4a5

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 c471e128c34c9025f7a42fd3ed01395cac2e722f1e986dbe11dffa81296c142d
MD5 d772fcac55a24a629d84b19985721504
BLAKE2b-256 9b181638fc27227e4e87e2d638c8460362b15e396e66cdc126ef89c3fcff9ffc

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06c242912eaa335e3364478a30b9d60dcfc6421c25d8c1bfe70fd84751960946
MD5 4e20a19008c877380732fe428014939a
BLAKE2b-256 2326000008ce039ab64866159c98bc2a86045f8504ab161735f61ebaab3a083f

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a4ab0a036d404943a2e08473a873d0940fe1cf5a369244d07b26583ba7ac85ba
MD5 8af698a0edf7860faddad9d5d5e37a58
BLAKE2b-256 6f0a613013a782f1f6df59d3af75f8d0aa38876f017c9f98b400d43e332966d3

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9db7673bce4a15c9ac28adede3b09ebe6688237f6096c74493894a8823dddce7
MD5 92371c4db6f92d83001df71ea3fb83da
BLAKE2b-256 ddce5be468e0ed6165c20597328088a3d5a945307e0c4d1cf69e761dcc494ae5

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ddd95e34dd089a9107f3f042281d317cdabe71de98abe3497eebd22e5528f1ad
MD5 d4946930d5ad9577df4a7995b5fa0f0f
BLAKE2b-256 b01f7b773a40da7ee052e6a190aea6e0c0ca14a6322aa22ea8a832253fe020b4

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 006ca8c52013474f527c4b29884baea1b3a99f530c785afb2938a9ecf78cdf9e
MD5 6d78956409e2dbdd28a0b8a2e93a38f6
BLAKE2b-256 ccccc4af470b7018e7bafd6224d6116350ae2060f911f3eace186e52e54d4905

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 04cc34977a87042a082837b212252f455861d752b68a3d2ecc8ed95a2168e520
MD5 5bed4b288d6e900b1b833980af401e5d
BLAKE2b-256 d28c58aeb07fab55c18ab7a74e34ce956b15b045daf299f7edfa40df947b4831

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp310-cp310-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df6564ef3072a806dc32af322f99afc24a91d5552dacc375d42aa0305944d3f7
MD5 33cf5649667f9eb2f39b4257f0c0b263
BLAKE2b-256 c2c9f68819ddd72fc6898078d72f709282c5e13ffa903779c59b18678368d5ca

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 784e3119651ca51459e47dae921f8fd79faa096760de24dd276d91661ca8bcf2
MD5 bf743965e4d62e20d9713236bc0c3264
BLAKE2b-256 6e668600e64996a4a11c52b0a2e235add532471b0481b98fa737d19650655114

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ecf6beafd172d888cd8c58ad5f76978b54a170edf3468e527fce1b49ba57e247
MD5 389f92a376afcc0559dfd7408b005912
BLAKE2b-256 e6a1bff62ee00b612529ab23a8a5c6cb1097f0520da74ac788364f80ba4012f3

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b73572f1e1cf7e01d42bc341c0b2feeb6c6304071df01129d04d90fbf2b6289a
MD5 e398e6133e4a3aa758588fb05f5059c2
BLAKE2b-256 acf01e8d625441e367c9baa51b56609ab4726b2ed06d1cc691606aefbd6d427d

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f6398a3248f8ab5cb2f338ba3c15f727040e0d9c8e32e9804ed33905ab307913
MD5 5301c363829c8d8121cdfb4f2a41be00
BLAKE2b-256 c37ecd37b826980e0e69362bad846cd4c6723c746046f5d010697e6c24ee6e14

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 549ed0a6d5c89cc44617c9e4b3abbdbf0bb8f437d29cc7562022af858b4e7006
MD5 876bcd27983f593f2635388b9ba96576
BLAKE2b-256 cfdc27ea4a0a71e811e6a9debf705aea4fc1a1548a65d82bba4396f1ac88d40a

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5717d1ea3bffee5887c19bfcc43f2415a1b63a40745749f99962d076c1c4c61b
MD5 40923585c7c5bc2aac84215d0188faf8
BLAKE2b-256 d7eb8f678d91782631536e85e8ab74a92d8f00181a22040c7655dafd0e79a83d

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 6f7ff972ec22897cb78b5ad30d56b4d79b4c06991d0220773ee9af0a28f6b528
MD5 ff6d9b3f72af6ebeb21df91db9e67ca3
BLAKE2b-256 6a671da765180366ae9f3e56d5d54dd846d610a600d0e14f0a8f44693963a3ee

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7b9925484db894ec3fe40800d41d8701df73cf8005fbfc1f93f8619f990a7efb
MD5 925477602fd647b7fb7a52120f0f0277
BLAKE2b-256 760b2507a76e1c64eefb06863ee29b42bbcafd560e49ece241a8b8a94e749383

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ae302f6449b9f4068e775786f6a03fddfb6e9faf0d559b2a4af7ffcf869338db
MD5 bdc6ba1a529dab1b1f2111dad37c97e9
BLAKE2b-256 ad305e32f4eb1e1016df9bae27de5083d7bf0eccbeb85453249decbb4b4dce63

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ebcad683ca4cb095cbc7855529bfc23a62fe170a390c16d449321fcd735e05f6
MD5 2594e126c229c6a9181badcb3d57bc63
BLAKE2b-256 1d6bc2812ef697403865a84d7c208a14367ad85af1748a323f09093cac5a9fc6

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 102eadc93f6af76529af1ff2a97b93d8fab53cb2393b9fb65cb34ae341766bcb
MD5 c66905c6ce172d5c950625e844a41e1b
BLAKE2b-256 4ac6c893cf8d4abfe4df02530e0d4e471fbf4ea5b28fca1cfdaeb5d44c39f1e1

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 18d1a757e9640303307d59bce0a9414a7b94384b6ec97dc6c9350d64560f2561
MD5 3c4cd3074686fcd60ea0b4a14de0ae61
BLAKE2b-256 ecb8e1e3a92e8afe30efcafcf9986da33fc293bd7802baf2c5874692b436cb98

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp38-cp38-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a0b2156b2464ff0823927db745628b743723f8dddca3a40aba158d4e86cc9141
MD5 3c2a5a0abbd3f37b81d7f6e76af44cf7
BLAKE2b-256 bf8123e404e9a2c5e4609ae210deca3b62dd97bc9f5d83233b0387e95de17ae7

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c8352f3fa167eba6453c09f3303ddbb34fb5d97478542e0917429dd0efaeaf35
MD5 aab4a1d7cd57fa1dd499dd75507a491d
BLAKE2b-256 a65cd6077ad0d6bac4c0c209f5775b9b737703fe38b1ccc24c51ff7486537fae

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: raylib_sdl-5.5.0.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.1.dev28+g60e377bd5 CPython/3.13.11

File hashes

Hashes for raylib_sdl-5.5.0.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 66b74d3b539716c9e05a74983da091a044cc4a0d0c9e7b6feec7efb700a54308
MD5 86eaa64e5505ee68e50b911b21a5367b
BLAKE2b-256 0a59cff7532b06086e4c7fa36297c514d8dd0e84b97819ab9654edcd61c600ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e67e4aa7f706bc5c35fe78dd479ad6c6a37577f23b06f17b9a83bf670fd9c655
MD5 578652000e08fe096ef5fc7434eeaa6d
BLAKE2b-256 56bed8e1796f2c3572efcbe0da7af339a738ffe3b1b13afb165ee8d7d29c3258

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp37-cp37m-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp37-cp37m-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 1f517ae9ec72c30d3e73f0e3bb88b83a4b0cfa9cd9d973a30c217e2337504926
MD5 6080ecedbe2cf1ee69c3bf8c0718977b
BLAKE2b-256 26a596a8e3cb0ea243a5290899878906c03011a9b868b9732b51715028a05f3d

See more details on using hashes here.

File details

Details for the file raylib_sdl-5.5.0.4-cp37-cp37m-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-5.5.0.4-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cdecdbdf17f3ddaadfb72fc21f29be05f3e5d085ba35e491a0de7ceb7c32b408
MD5 a22ba44b8ebc16270072bc05281a82ed
BLAKE2b-256 b558cd992d1c9faff76a6d5293fa8ccf5994fb0537ba2534ca7aec32ea931138

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