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

FinFET - Making a simple 3D game in Python (for real) with Raylib
video

more on FinFET

Clear Code - The ultimate introduction to Raylib
video

Unconventional Coding - I Made My Own Video Editor Because Kdenlive Is Too Slow
video

WOBLO GAMES - The Druid's Downfall
video

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

Startup without printing anything

import logging
logging.basicConfig(level=logging.ERROR)
import pyray
pyray.set_trace_log_level(pyray.LOG_ERROR)
pyray.init_window(100,100,"test")

App showcase

Tempest-raylib

KarabinerKeyboard

PyTaiko

DOOM-Clone

Tanki

Alloy Bloxel Editor

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.

Hall of shame!

Apparently comma.ai are now using raylib-python-cffi commercially and so have begun donating money to raylib but have chosen not to give anything to raylib-python-cffi. Yes it's perfectly legal usage, but it's not very nice behaviour. 😔

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

Uploaded PyPyWindows x86-64

raylib_sdl-6.0.1.0-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.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (2.2 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.1.0-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.1.0-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.1.0-cp314-cp314-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

raylib_sdl-6.0.1.0-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.1.0-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.1.0-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.1.0-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.1.0-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

raylib_sdl-6.0.1.0-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.1.0-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.1.0-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.1.0-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.1.0-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

raylib_sdl-6.0.1.0-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.1.0-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.1.0-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.1.0-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.1.0-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

raylib_sdl-6.0.1.0-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.1.0-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

raylib_sdl-6.0.1.0-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.1.0-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.1.0-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.1.0-cp310-cp310-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

raylib_sdl-6.0.1.0-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.1.0-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.1.0-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.1.0-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

raylib_sdl-6.0.1.0-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.1.0-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.1.0-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.1.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f33117818239d2a1cdb3ff0b02537db4909cced5dde04d63f9fbbbc03c020e8b
MD5 7cff03dc4c1e4279a7b6f973150a7046
BLAKE2b-256 9a8024fe3503e0c66263ce9794f10b89ddb0a1b70e57bd19e3a51308f88ab1b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 810a1d4182c61b32a9e40fec9153be0a7716deec4fc69a13f9b74e8e381edc04
MD5 cb271e0c6aa47a5ec2f975d4f531f3c4
BLAKE2b-256 84763913c1194587606682336ae4a516d4ae6258973d4438e03590856e469098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 be07ea59608af1e767813c5f4f7e0c93b169bb4a03b77a97035d1a985609a67e
MD5 438375add1bd46c2fd3992a4f38384be
BLAKE2b-256 8e35e41519d7980978d7a142b3443446c2e062402bf17670b50ba20dd4676063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 36a527d73fd2603d0477020e649878dfa532f84ee974bb8069a3cdceb67f81e4
MD5 b447e7f04da7dc917c5c7b4c8447ba3a
BLAKE2b-256 6e53c76d6435980d762991e0af323685ebc5fc603e372410a1400d17c0cc6dda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for raylib_sdl-6.0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ca25f0d66805b0cf9bef04c14205f013447945cd83c5022a3937c26890068a2a
MD5 7f0440af2011aa44d3ce1781a8b9d696
BLAKE2b-256 38470d9c252da3784551216e2c225e9dd67cb0a13f71defc9ee68b1596de2838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 0a9d80bd5133011ed6f11d1a5a33d5758fc22986dc9f587c5da536f5d987a588
MD5 2071d35913d9a49a471654abb54554cd
BLAKE2b-256 8c74cff227fd16c11a7aed6fa9ad3b49b79d2ba5adff872b3f323ddd79a83ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4050cffcb0b00b4f5ecf0b126e61aadfca5cc8ac844a0b0f4ca1a3b2bfbaa84c
MD5 a45019e3afbaa1aebcecbe908b7899db
BLAKE2b-256 236c0db729bd9ad5f90ece3f27a79e2b5dfff127736ffa4d40ec4d9adab750e8

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.1.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 bd7e9e4be7fb69fc742d42dbebf68530a2dcdc5a7d4a08bfcc6f7495d6a96447
MD5 be2342e5a6a7767a7d1529b2bb503862
BLAKE2b-256 5afb0e6737be127bd5593c3b13855c675b833c4ece16af7718c23c28b8b60cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14bdee0efd14945c1027482efa309391f62f3c0e39ef6a82f562e302ae3e5cd0
MD5 3b20685ec36bb4c636c87b9f7ff85691
BLAKE2b-256 16534cc3076e0956c4a4f447106ff4472942324eca0b27dfea90fbb864e04ef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2131e83adf490a48672f4d2a098c8397d84e083b2b0a562cf45772b076b32711
MD5 0c8a5072af598904cf9473674a02e047
BLAKE2b-256 4fdfcb68e92bc0515f25dccdca4eb2c5f94a0ece88ad285376464856ab6735a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1f10911a21273b40b15aec42e598aebe2603ec1dbc044d99a774056758a47fd6
MD5 1b9adc101154ac9bc7fe729c9b751905
BLAKE2b-256 328f92e94d99c3b90d551f954326d3fa3eba7f02f58f7287a17aea0ac8a73540

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.13

File hashes

Hashes for raylib_sdl-6.0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dc194748011a022961c33d5ca89ebb74c2c5f5a53b5209dc85929abf2b4b3e37
MD5 e0c8f7e0ee8e519af4fe086825c27d94
BLAKE2b-256 ac08194d0f6123b9e9987f248907f7c0b7b6647f83ce7d6820bda1583eec0e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 eedf967671d4cb4778c45ed729ff2c1042566c0fb88a35e978ecf392a13b6f3c
MD5 9c89418d3a5b63820f450d25e4133312
BLAKE2b-256 7ef6d3f30d17f6affad5c5431004642d5f633569e06da3697fcd1c1ba9ff5508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0bbbdfa76e97a80cfc7dc035a1002c8ca3c6d3695bed33ecbd3fe7dc56406013
MD5 90c3078a1661ac5cd8fd82b08eef7110
BLAKE2b-256 0076c3f1b406c28adf0a10b49017661ec5e13a730c2625af30c934a607a1dd05

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.1.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 6994d2b679f8ecc99850301570beb9c6d7ae39d66015d2954dda7ec375120118
MD5 fcb4bc114f00cad2527e0599882622df
BLAKE2b-256 bf49f6370fe0f9a2a01467730f0161f322eaef75bff7cbb57238a34af6c55b68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ee9dd724d0bd01f6dba1476f9cfb9321ec050566fb89d499b80a89ecbbcf4af
MD5 a13f19ec34f194579f737ade6dca0614
BLAKE2b-256 4121746117000687dde3f67c30f991bf3ae6e2f99b7a30ca4d8900c2bf465057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 526f28cf30727d99dc4df2e48f8ea52d709ab70680272942121b002cb0230db3
MD5 d1c8e4cfd46ca2ee959dcaba3cf03cf1
BLAKE2b-256 2ba83033405e5a655827e249eb4acaf4f039c5b5ce0976646c4c7bcae33a53bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8475a6415de2947d253cfe09e01e40a4fb94b01fd304104e6a528cafd563a234
MD5 98fffb433baa893012a9f73237709572
BLAKE2b-256 d0104608d4ce2abc13a315740a2480e1b2e715fd2633939037bf2ceacb8db8de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for raylib_sdl-6.0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 98a90a869519c5d3953d3a329c9b1af6a92b3f640f3307d073f1d9144e12046b
MD5 b5227d13344a0cfeaea8311988730d15
BLAKE2b-256 8e042272ed784bded695ccbd1f9678d9aa70aac3ecaf381f775222f3d69c3fbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 691c7310404ded1168d1ab0ac878258d435f23b340e7f4f9e2d4b7b8acbbee3d
MD5 3295ed44f97f0c8225a018420ba4aedd
BLAKE2b-256 2d2fd029d3353f804feb97e4c229d43225487799553251d262aa2b2ed49c64bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d8762dd6a6a36a5051695bced7660d322f153d60220767a3d6cdae8cdcd6c292
MD5 4a69ec12d35d02e809ce5b46d2a7ae13
BLAKE2b-256 84b8b753cc15a4aaaf766921c373823c1dfb8c12e06529bdadf54dfc6bdefc01

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.1.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 f0547ffdb9bc4e88bd1dab585dcee6f309906b5122b8c9ef59ad051d050eec65
MD5 cec031cbb2a72aeddca0cbcfae36f504
BLAKE2b-256 ad049e11b47036c8436ae889dd34abd5836f428cbf476da5c69ae3574f129fcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 011309ac95f63690738dd94935694d69e80c5d8425b7fcbde73d7603f4d65d22
MD5 9fec8c8b4e1f5ab6f5a941ccc0e52a0c
BLAKE2b-256 e38d159d66e9730c4ba1c7c64105016ca1ad6dfc43714bb718f81eb5b6a49128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b5eba9c7612fdc95ac6d63d0f79b673d0e62a45aa2f6b01d0deec748f5b1c8bc
MD5 f36de63974f43ddc98f6d02da8bbce04
BLAKE2b-256 46c1cba3d942c63dfb9a78a5bb74bbe1634e53312daad41ec6d8f93085ca2c79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0db2c354d81440035ff43dcd7a71f74b1c7501d40a9714c2af02a8da31ab50b4
MD5 ebef97e1cba8cbfad91d22a9d15154b0
BLAKE2b-256 ab1573310035e4841569e5c7736634745ecdd00eaf937066a14bde3dc02b874f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for raylib_sdl-6.0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f565cd42dea0eadf7f1b5c1ed393b60f5a4e820537a843c7c1eca5a1ff62b81b
MD5 832d33dc7e0e8ae40dda4a0784c8f4b6
BLAKE2b-256 9f1f53cf131cdb115402496e88c5b88cafcad49e45898e989c209f1c0fe7afae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 ab78339abd98f95cb5801801186253db4dc70c7ace1303abcae279b31910fa41
MD5 0972476dfed80540c77bfab2eab9382a
BLAKE2b-256 613ba5a6ea31999a7b7fb7e76558e2515d7da69309ce11f4e670c4b4f3a52517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3a927de4a554594b943205e7ee44b5fe36e2a9b7b6936ec008180dc73bc98d9f
MD5 a282afaa58c07b6ca037351508e0e210
BLAKE2b-256 8360f497202b8663b20bb0ea83f33d8088da109c485cfbc4d3cb3c71ee6d91a8

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.1.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 e85187dde72a327b49defa9ca661a16427f722b37b49e2311526ce1a74898b24
MD5 6e143e1a209d04cf4e04ab4571376f57
BLAKE2b-256 d94e39b75aeaa80b768945235be15b06f46133c50e321f6e9f52b1feedca35bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 461c221188762521a946db7986da135d3b28da171e3376412d9483694c44e048
MD5 0bdd063d91cc45e1161547de611d2b7a
BLAKE2b-256 d974b2ed8bb4dd0508f63f1f1df0c489e6cac034c3a1c92f5c692d20578cac51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 64c43693374fe66dad722b5ee04685e24785264e76a64b0d3d3bda624af34726
MD5 47ca425c84ac1ef2926033436d911d11
BLAKE2b-256 636d44865a9cfaa133556e2701a3be1831a8ec5c6d99e1abd249cc377eeaa748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c1b4153c70c97eeaa2fbaf90d72323eca913b2f25b5296c6cc24ba3dea980b77
MD5 d5034dc6d600d04664a2d859d9e54451
BLAKE2b-256 80f38042fa9537196b078c8deb86834c6faf3cfbef6804abb33d178e80fd36e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for raylib_sdl-6.0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8000224da30733fe75c4fe8f42f45ccc3260e1e12ac24e932ab008f309fca0ff
MD5 4f4b11a74df2ad3309c12ae742945cbe
BLAKE2b-256 ed7f13b73ef59ce4e581d6dcda4e6f22b229dbf16054db9bca78702f9090db97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 dfc15dedd67008c67fda9f73d78d28ad6f83275344d025513e6b2b142af936ee
MD5 5183c94cc9f4b9079711d0662ffaf0e2
BLAKE2b-256 fdebe7c8032f668f4fad2607c151b92e9c0acf286e46de8344448d46ec21a2ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ca917b56c37a3feb37e91c6079881e3f397851c4ba2b50c4c673fde35be809e9
MD5 c2bfabda9c7541865e4569149811cf52
BLAKE2b-256 492123863fc8e54a79b1a283cb81143177541d6e3bd48e829fb85c986ad82845

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.1.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 33cbfb1a9b319c1852911b281616bb46aae5d574d8604ef747de0e1a3dd30e2e
MD5 a200aaeebbdd8c5e0ddfe4e46b98d61e
BLAKE2b-256 6bac7cc76a117e434c709c5f0c4d88f17ba6751ef9d01568b748154fe4d017d9

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.1.0-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 01b3b159713e8d5ba8cdee2e15d50dbfd494e1e6d29027bad61349b443c52bd8
MD5 bea71c30fc54c80926ee069b13f83a1d
BLAKE2b-256 45ffcd69bd719bb3cc43d4cf59e8a3772448cc59e069847d8f3ade2838d51954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b819937301325cc5dc8ed0e64b1da26a8cb6afbeb221d05bf36112ad0b88470
MD5 d7854e01a95039055686e6e795b76dc7
BLAKE2b-256 5ba868f48529a6ab3f2d817018fa94f783fa12027bb1fa9972a8e2c116487186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fcc263314b765060274166309736fa3044c38b0853027bb98ed5d82986124456
MD5 ae93bfe31b00a11294a19251b167771a
BLAKE2b-256 964f81399cfbd3280bdf5c3cbedf4639740aa7e58f90aa14126d1157a7a08308

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.1.0-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.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1f06ca90654081e199762159601d80727608be02cb8c7605c4a606398e2df932
MD5 e86cf52db9873be23db369e309a22067
BLAKE2b-256 ad74d2b2115d550adc4856f96037bfd132deab645dd6b69b346ffeb9a126a742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 093ce1e24a7cf5809d71a095cce4bb8cb7eb4dc62290b1f4909239e76487a306
MD5 1567378c157c51387a9922ac64d0bafa
BLAKE2b-256 cd1199866ddda925876a4646780fc3f5835d73351f069122880d0df6ac213656

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.1.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 2f83019d24601bbac2262c83a9aa389da1b07e21fd0edc2a185018a1ddc9364f
MD5 999fa8cebed61d5604797fd1d7d5d2d8
BLAKE2b-256 47d4e71b0596bdaaf70170b06c007960d67c0df5f25c718e7e8a1b40a729655d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 38b7e240ca794e31e69bc9347d937323327ed94be123882006175e4d0416304b
MD5 24f02091607098be57c703fc4e32219f
BLAKE2b-256 f1540f68859e0b23396585da95b234ee70a6c37fd457159aba7696038a46f54b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5973767e98f7df4aeb217322f778260f374a3abc2b5ac156702fd799024d08bd
MD5 7dfb61269ec4314e3d57f68d2a51d467
BLAKE2b-256 6f1aa15e6b6a90626a42c9c38ef9b8d5d4ed2f9dbdd2c3d4b50ce2c5591dc12d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.1.0-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.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3077d1fecd660da334d26b4133f0cced549e02903f3a2459dbfa5a7f1a13a5ab
MD5 4e9198104f1af0e2ba54a8c06bdd1c24
BLAKE2b-256 932473ed0acc1645505b9fd98ff9823fe9a1a0fbc33446f1698a3c3cdd11bb72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c06d0e270ebe97ce0589f93f52d1b6c6af04c027852d22d49c88dce8388bcdf3
MD5 1cb4849532c6fb61d09eb95f42ac3375
BLAKE2b-256 f7d50a3fd2826ef0269a5366fa65fbf47950f7387a6b592a21f9c0cbd20161ea

See more details on using hashes here.

File details

Details for the file raylib_sdl-6.0.1.0-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 542097edd05a6bfd3a7b86417baddf46accc2482d18af699e5a74bed57956e19
MD5 b14545098e79fa19b7d56ee2c802fc78
BLAKE2b-256 e1df3f6dd35d124e8738ab4c1d9b343ce5996167c4763293580bd3bddcdea3e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 62971c8e3f4771aaf8e5f61e7ebd963228377f3c6088834f94df7e40f48b16c8
MD5 b102346b509392139c241e91ebfa3aac
BLAKE2b-256 fd292b878513564e388eb1cac99f6bc070dc91d8a8c2d6c96242db95399708f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 22db549b8c7f13490230091f8851d7d826fada728b8e4e56c6039b9fb5a49d59
MD5 7c0749d516cba8edd539c5ecbabd9a84
BLAKE2b-256 9ca57360985a71b6c41084eaf73b76c2cc2bd78c79d9d1c1fd13a1adcd8952d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib_sdl-6.0.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for raylib_sdl-6.0.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6ea20b2fd9d87df94ca7c33dbdc0267269974d793d7768b77cd34500aa3186a7
MD5 fb72360ffeacbff3d056a856ab3134db
BLAKE2b-256 1339283e37dfd49ce507bb3e55692485c6b87884806ffa0dc4897c79ad3927c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2820bcf2d6bb38e9168e677586003ab0c4ad16a196d4d1e88e16e32797d8a1c6
MD5 aa9f94408eed788635e43a31796b146d
BLAKE2b-256 ccd8d1f8b9b919ec1cf0488eace64d1441823a48571de230c27576f9a0cf3607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 2130156a1ef576cf5aff766c184adc99536d7cc9c8c818abd7c4cbae5d5dd944
MD5 d6871918cc437710b3ecc0e2517ab293
BLAKE2b-256 9807683cd83ec75ed6ba700155b93903223ac54ffa79aef11ca2a0e666bf0baa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib_sdl-6.0.1.0-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6b8767ca811e19f5d60ce9bdd220280ff385ddd4723405715a3f594bda83ebe7
MD5 6c1023034b412198fdaa5ab854b986c5
BLAKE2b-256 1330d5b6efe9374f6e2bb98b0e3771f2a842dadff2e0055c3843cd43648f8d3c

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