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


Release history Release notifications | RSS feed

Download files

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

Source Distribution

raylib-6.0.1.0.tar.gz (189.9 kB view details)

Uploaded Source

Built Distributions

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

raylib-6.0.1.0-pp311-pypy311_pp73-win_amd64.whl (2.2 MB view details)

Uploaded PyPyWindows x86-64

raylib-6.0.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

raylib-6.0.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

raylib-6.0.1.0-cp314-cp314-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.14Windows x86-64

raylib-6.0.1.0-cp314-cp314-win32.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86

raylib-6.0.1.0-cp314-cp314-manylinux_2_35_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.35+ ARM64

raylib-6.0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

raylib-6.0.1.0-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

raylib-6.0.1.0-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

raylib-6.0.1.0-cp314-cp314-macosx_10_15_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

raylib-6.0.1.0-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

raylib-6.0.1.0-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

raylib-6.0.1.0-cp313-cp313-manylinux_2_35_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

raylib-6.0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

raylib-6.0.1.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

raylib-6.0.1.0-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

raylib-6.0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

raylib-6.0.1.0-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

raylib-6.0.1.0-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

raylib-6.0.1.0-cp312-cp312-manylinux_2_35_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

raylib-6.0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

raylib-6.0.1.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

raylib-6.0.1.0-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

raylib-6.0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

raylib-6.0.1.0-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

raylib-6.0.1.0-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86

raylib-6.0.1.0-cp311-cp311-manylinux_2_35_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

raylib-6.0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

raylib-6.0.1.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

raylib-6.0.1.0-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

raylib-6.0.1.0-cp311-cp311-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

raylib-6.0.1.0-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

raylib-6.0.1.0-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86

raylib-6.0.1.0-cp310-cp310-manylinux_2_35_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

raylib-6.0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

raylib-6.0.1.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

raylib-6.0.1.0-cp310-cp310-macosx_15_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

raylib-6.0.1.0-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

raylib-6.0.1.0-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

raylib-6.0.1.0-cp39-cp39-win32.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86

raylib-6.0.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

raylib-6.0.1.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

raylib-6.0.1.0-cp39-cp39-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

raylib-6.0.1.0-cp38-cp38-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.8Windows x86-64

raylib-6.0.1.0-cp38-cp38-win32.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86

raylib-6.0.1.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

raylib-6.0.1.0-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

raylib-6.0.1.0-cp38-cp38-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 13.0+ x86-64

raylib-6.0.1.0-cp37-cp37m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

raylib-6.0.1.0-cp37-cp37m-win32.whl (2.0 MB view details)

Uploaded CPython 3.7mWindows x86

raylib-6.0.1.0-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

raylib-6.0.1.0-cp37-cp37m-manylinux2010_i686.manylinux_2_12_i686.whl (2.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

raylib-6.0.1.0-cp37-cp37m-macosx_11_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

File details

Details for the file raylib-6.0.1.0.tar.gz.

File metadata

  • Download URL: raylib-6.0.1.0.tar.gz
  • Upload date:
  • Size: 189.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for raylib-6.0.1.0.tar.gz
Algorithm Hash digest
SHA256 6b96474d29d38642afceef5065d7d0d970489d2e2f7a91f0823be1337194734f
MD5 c02347615e37bf727a2b33fdac6a5cd1
BLAKE2b-256 8307e65284b0b86d81dc4de8ed44e90159a0079b9c013e91e280cd88e6f0bcac

See more details on using hashes here.

File details

Details for the file raylib-6.0.1.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for raylib-6.0.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 83586aae24c6664e682891f7eb128bbbd26ef222905c2273379ade822d6054db
MD5 e7c06105c2cf3f87ed785f56925b5531
BLAKE2b-256 eec32875ea284015e9c29643a0852742905f871e46334d9f1d906c450de5be21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a5af75bb626d306a5a4d046b095cdf274511a367a8d13595634c106524c47fb2
MD5 4f106843b2eaaee566f65fbad58eb9c2
BLAKE2b-256 55b1c15a552907c5ed9d99a9c8338d09e9ce4ee1fd907c2f0473e2fd52544016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4faeb3b360f31e57394ddd06752e06a39054716a1c3e6f61c3a48d8f50045782
MD5 fd7b71c4bb226e632d8c25fba13ff8fd
BLAKE2b-256 4871d0f64ad46af6bb51d397110d2147d3359b7b924735aa99109edd2c157bec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for raylib-6.0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ec500a00012476b3588e1508f32cfb4f506341a5953542ed1d4c019e77e3c9f1
MD5 c065add4fd86c9186ef3d90486d6689b
BLAKE2b-256 2ad519c0ea180df9bf2461353f690be49e08c8bcd789c9b4a4629573592eb68f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib-6.0.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.0 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-6.0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fc2b8f2b538efbbd2b1e1be8930e0d235ec50547d142d47028f744ae9247ebab
MD5 3b503895b3606b46cf128ae269a4dc83
BLAKE2b-256 fda8ab0b14c233907505fa14c4d64abc1f955821e99c7cd06623935b704eec10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp314-cp314-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 27f71592301532b3a12d24fcab0582ac8df62940ab9fdd65bfb1352eb8bcf421
MD5 ee02d6b5d05d8e27a11534a0c3143d52
BLAKE2b-256 3fc900d64b91451d094b88e2dbc0a705378a2dbf4fa4c82a72e4b846b1c1650b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f320659cd292c53fabbc3149b71de884ab3f320a1604b1792c23ea8c0320b55e
MD5 9dcbeee028f2b69798a3f49d08a423cd
BLAKE2b-256 17d1f6ab90579ae6f1f17f8dbf899c5b32c27748f8319d7a786a005addfa8db0

See more details on using hashes here.

File details

Details for the file raylib-6.0.1.0-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 f346610cee2bf3c7d8de4a53789a812c5aa1a8fb558e2c3d31739d5f20d3940e
MD5 0d8bbe55f500628ebc5298b918625036
BLAKE2b-256 6d5453bbd9773c68c8c624a9d2813d7a0b44563f62dd191fc903046d36179177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa1a3e15a979b5de70c91c564c5b70583558d211969e8dbdac145a8f68061b60
MD5 737586f2023d40722ce18ec24204fdb6
BLAKE2b-256 400f790ba239d26db78d4193ebe2d794e46c63ee927ff6944f903aa8a558eff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b65a6634e5b4e85f98817ec8ce58b8a57baf852de671019e405203955f936acd
MD5 f1ba6c945620d2e909bc82abbcdc1a73
BLAKE2b-256 0dacdd0d290680e5ebb654d082bc59e24f505ee69cfd1315a346a9fcdc67eebc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for raylib-6.0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cd1c46e3d279844b40d5e9390c423b0737c2e6a38017f0ec538cbb498c1f73a8
MD5 44febe84a5520c7f63c8dee913cfa29e
BLAKE2b-256 1f742440b507e1a350c3a71890cbf55e60ce9ca39d0eed997aef2d8900e97c39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib-6.0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.0 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-6.0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c739971289e402bca1132877c08f037319a095f04e9960cb3285901160d11cde
MD5 d0783a34b4333037a5294ad6df336a25
BLAKE2b-256 92382207ba9df0edb6ce91a0930aa51284131836df6f55d4860504667a831a76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 bd4d02c1010c887ab278d4ccfa6bc797eddc9474123b28c4ae9bf0c5e008a782
MD5 1f0102dceebe8fbb68b869130cd42af4
BLAKE2b-256 ef5f2e8362fade86dc8ae31270ef7e3328774531be8cd24ac5a0206ae25b69cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0c8e42eb66bcdfd08853d4ffa60c6751c41e414c8000304d445f84c5c8a71dcd
MD5 12ac866e652adaae32781d271d584d97
BLAKE2b-256 b99bd91fcd06a179c219896e2a0ee88baeab2834842e5cb35528e48383f5cf1a

See more details on using hashes here.

File details

Details for the file raylib-6.0.1.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 aad28383d0ee15bd66a24550af19eb32c558a3eeaddc352bc6c9e12176865486
MD5 e182e1cf34f4f7c5ec5afc6de32fd48c
BLAKE2b-256 5ad28197c6050876b1200a4c157de847c166cc751f1b31b5bc3bb9494ebded3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7300d4cb8e8a735dd86bbe8d1f02b3e02d950f14e23edd297c6b39b311853c46
MD5 6281a5678ac7e4c4f6018e4491ccee63
BLAKE2b-256 f8ba5ab2d59438a772d42d032c9390ad5640c8e1db82070502e4258ccac448ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 598add2fe906ac198725489bf217eea6021b915ae8f70eb578639ac0ec0a7b61
MD5 1d51134fe20297987a14e3e1b53124e4
BLAKE2b-256 fa58c0cad15709579f2ac1fb2644644f4f33cff8db801c8f1ab9ed854cc0f5e5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for raylib-6.0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 64ee5407b3e222045a2b4e6c41ede77a7be05c90335e0679c4765d0e5bcf3ba6
MD5 57075bc2c539333aee33186336bf5816
BLAKE2b-256 220e4db3d81795ac6af21f9b0b60135c0b20c90017d6ee32bca8b699773aa847

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib-6.0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.0 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-6.0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6ede419ee4e486de6bc59aba1bfe8ec6171180d0ce9709f3fa9ce29a1da9894a
MD5 1c242d54242194c43d487d2f3ca4c9ed
BLAKE2b-256 95ada75aae370bceed040d9343d3447d3998c9a550e1047bdd39cdde967b796b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 aa1efd0c52e88e295f0b53555255b0303003c6c477ee45ea7cea77fd0cfff666
MD5 68513cadffa3b49e2b670e4fc27fa539
BLAKE2b-256 b55501b034683c1833b8a196f5388101e9dfb6bb96f8a44fe7e631ef23e03076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bcd224e184c5d64fb6d57bbdabc07124a6f64455ec711d748a0c148b3b26b914
MD5 c623935c7acea6c26eade72bd4b9e9c6
BLAKE2b-256 0929423bfefe93423b988e7fafb9642d20a15005ce8291eb5f4e3d70e8df8fce

See more details on using hashes here.

File details

Details for the file raylib-6.0.1.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 f0d29347d78024995c54dfb4c5860f315b8ad4d5df7b3fc8934b39d78c283d95
MD5 7d656db8729a61d905a712c86528ada8
BLAKE2b-256 ce4a6fc3e30d041a70385747477ba94c1cf519f89c97979d2837c188bee810c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97c9912860a7bd063cdcf6e960d381ba7fc593f936e1565d300fa74a531675f8
MD5 878b7413ae1b616a9eabf33898aaddba
BLAKE2b-256 43a1f0160c805e5cb47bd1dbc9811d51ed0aba5a8220425e27cec1015a23a745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ca83b63aebb871f1b312bcf00f3d8309d774906e4de36bb72561dcf214d36928
MD5 837c23450d28c559ff85bf6aea6ff7b1
BLAKE2b-256 04270dc14affcf7d10b69631c9dee93ebe9ca816d5953f612d9d7fb1c2615358

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for raylib-6.0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a665bd824128396f70435f959399d76c2bb460ce1867fb9d19b41490b70a0d2a
MD5 337e54f8493248ce195d4c4c8fb34bc6
BLAKE2b-256 1eaa8101849b08d087a3b8024b849ff1eb648cf41703375f19522a1d7819188f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib-6.0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.0 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-6.0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 56a7dcf0c5295e1e444397afe316d5c2bcd6ceb68947b96f343e0ad2b5781c6f
MD5 8dd1f36ff8c28f6fedfc319440d3d839
BLAKE2b-256 85d0bacbc32afcbcda58cd33127b26209a2684806f46d2a39dbba97c8a80f552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 835427a4b9fe8700618ab57d36aa86d1b1f7a628d073fdaed55a8029ee0454a0
MD5 8aaaefc20ebf02293d386635421f20ad
BLAKE2b-256 59295cd7413dda9ce26375735f0b0f71093abdfca3acbe6fb4487942e0fb270e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6b126a8b9e9a0d36dc796fb0ae1bd7473464a4b126315e332079e5eca7215116
MD5 0dd5bce3660964e0af2d57e1b137449f
BLAKE2b-256 d52f783a6c6dda1f271a1625bf5f00c6e87289d18082b7acee0c6a6b23a942c2

See more details on using hashes here.

File details

Details for the file raylib-6.0.1.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 65627f6700f65dcd6e8e2cea6e9dec1943cd877c6c7ea307033a2f6b68bceffc
MD5 dda7ad39ac4d754bbc0870b268ef0cbf
BLAKE2b-256 6438844609cd88d337ba10db473a0a996f1546b71544648d6ad89457076455ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2749241d539f0b314939a5b9d6d7cc950404f77f299f79fab9f449091b941fbd
MD5 67db00519b66d1333ccb99078cd19c96
BLAKE2b-256 23defcd00b4bd31a8b9ea82ec97895dfadbcafaaba5d1565b27e5d71a015fdeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 31bba20aa8b2edfbe183e45a04000e060406fcd95c40dd6532378654ab87b256
MD5 6cb40ac78e2dadfec5d0c5003354e0f1
BLAKE2b-256 e85bdaa7aeda67b2f1b46c9cd0944b30c028faae220e22dcb97cfa0217deb8ec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for raylib-6.0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 da30a955c8ea23a46c215ee6b29fb48ec01336f52cf4fce09c2f25866b332487
MD5 5d80c3c1dd42b943b1fb7a3925fd9577
BLAKE2b-256 63f2011b8c11a8088ad9bdf93be73abcffb31c15cfffd4c04454dc9bd463193d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib-6.0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.0 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-6.0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 97c42d7c1123c4c492d6d37e0245e32ef776cb196103583e501c8f147878ffd4
MD5 a0d39e0d35f4a8451ec8c59d750809b6
BLAKE2b-256 7f89cf025d6ea8227b862549301a2dbbbb735acd7246df7a1d2a464df7f977d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 71cf054909be77b47b2e31ed8994d7f3bdccbb91bf8476bca071c54b252d1bf0
MD5 97171ba4aea0eb47ca10241f9484ae53
BLAKE2b-256 d9e5933d4ade0a5764fb3330566cffbe46f57f32df1792577ec5228cf895669d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 25024839be56443e5f196854230c6f10988769707c3f446c33f6781e7b75785a
MD5 49d2e65f78129abcf2d6137f9c6fadd6
BLAKE2b-256 d03eb09e17fc6935ef9f9f16fea08b591b542817f24363ff71a0f04fbf0d40db

See more details on using hashes here.

File details

Details for the file raylib-6.0.1.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 ed6c57bcc690c64f3efbce9859492c60c96e199b2dac67f810f7d70ab2f1975b
MD5 315497477348075ce90c5db9206a3883
BLAKE2b-256 9efb9491799dec92d9b538869d507cf6adbbd43de0cdef6cdb284ad1e6df27f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8eb12c8587ec76cfb2daf14695fc904fab451af1391cf5f0fe2ac55b9bed192e
MD5 af531c79aa33b78b37806a7ec18f3851
BLAKE2b-256 9bff702835bf1cab026f778422e912d5469347875315570ec21d715943728c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cb00a1abd9f9e760b0853bdc5e97547c215aee8f2fe48a8443d103ca24df7da
MD5 b0c9914bfaeeff7c4e84d2159503a9a3
BLAKE2b-256 6516df7c4550553441cfe9912bdd65879338c126b620654626720ba652e3b717

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib-6.0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.13

File hashes

Hashes for raylib-6.0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c7f817f7f0233d6813a510ebc17758b111d9ea072d40f714d21ecf77e98b285f
MD5 fdeac986064d48400f606be5bda38570
BLAKE2b-256 e84c72ea508ecda5f0e757a6a86aa589102abd9c08c69f1d0992b03442664c23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib-6.0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.0 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-6.0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ad17945bb3546cc0639b1e8ec797d66ec3e80228d76297788f4bd8b07a4d37e9
MD5 09f993b09f8f290ae23c51c14f5d9ca2
BLAKE2b-256 5851740ffe6fcd03a189aaa6b294e3a8fa4afcb78b2dff4ad22c8dde0a1ba0f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b15be73b0b2b75108216c65dc25dde83f941afe969183f275f4785777c8548e5
MD5 d25d9a8a82dc2a146720e142bd224f40
BLAKE2b-256 d6613df563805ea2e9aad1808527087c2ea8f7982856fc4f0567f19450148581

See more details on using hashes here.

File details

Details for the file raylib-6.0.1.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 dbe13edd7120f254dc918cf439495520c220657dadc020f820df5faaa729a225
MD5 5dff510129cbfe6777f7202eacc8eb03
BLAKE2b-256 81846bf540619a7bd953afc4623dd2567bbfb08d5145dee5bd0b876bf49bde8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2c292c92325f6c7606f21e4919907cb28ce5156539cf2b99c7fe0f827b7f908e
MD5 10dccaace43d919307a0702c2a580387
BLAKE2b-256 ba546355b68958b28c27bc51ec28bbc2d9dd8113347dce6da6cd7bf86b9f4c4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib-6.0.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.10

File hashes

Hashes for raylib-6.0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a1ecb799d059418153390be653aa052cc8091fc28fe84ef2d71455f3a00f45b2
MD5 6469dbc1bf54fff4bc9180694d90cbbc
BLAKE2b-256 89980bf633b8122af79f0197180ea6f3594e9f6d9820c33f259bcd77d530888b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib-6.0.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.0 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-6.0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 282e14a81f9e1504dc6d9f838ddfe81148938a5a7a0b279e045deea4017a1cb2
MD5 e4f1400c676b5ffc302dfe4cf7b17ac5
BLAKE2b-256 c6d4c09a93fad7cab151c424041f95fe304d1df9c572ed6c21cf668e4b6f4d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5b3c428c7c675491261f85fdcc4c3ff50144a9031a2274a3b6f6142996aa732f
MD5 57150185f3b5b517dd1f3ccdfaa5c03d
BLAKE2b-256 d447542755956d7cba0fbaac924a3c5005f318d01927bfcfc5efef79a73d71d8

See more details on using hashes here.

File details

Details for the file raylib-6.0.1.0-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 ff6545b7454afca5ce2013098abdb4f55229f85ce7188bc0d4d425f666a55a07
MD5 e09b5c4d3d040c483ca97ce591aa5146
BLAKE2b-256 626b69261ee35442ba751cd5264cb89086e5095100ece33c9ab66bccd704188f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e8f506f72177375a2f54fcfce116aaa92315641c1c1f1ad34625697d2f86e913
MD5 131109e23765692fdaf2f0c5df9d361a
BLAKE2b-256 3f33a6e9c42a8eb8a3771badd6967edb1cdf3c0d54cb4bf8daf9f4879c57062b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for raylib-6.0.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 25f26fd6d7cba9a58f7e5c5a9549584d6874b75a0f65a71c3665f5313a3ac2c3
MD5 408b35c6150e6d5e3e7cf6f370d408c2
BLAKE2b-256 4e5f4506344bc3407c73cde7b958db26eb2c894306e1acc2b0fab7666f06927e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: raylib-6.0.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.0 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-6.0.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 296b95868f1b077d8890f00aaf7383fa46d41ca70a88343b7bdaa68d8877f504
MD5 84ab525d781038c6a14317ac99954131
BLAKE2b-256 a7b51600bb077687e820bf83292e43337e8722c9c48d38f35887e00294c913e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 85aa6dce7ee32d476974ccf1769538dc0502631a80620491a432ca3b190ed4b6
MD5 976532a429c94061d470791fbf5b2e1f
BLAKE2b-256 19c11ba6acb5e67b88c2c148afa7067c65112369b3fcb260a89724c73a405840

See more details on using hashes here.

File details

Details for the file raylib-6.0.1.0-cp37-cp37m-manylinux2010_i686.manylinux_2_12_i686.whl.

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp37-cp37m-manylinux2010_i686.manylinux_2_12_i686.whl
Algorithm Hash digest
SHA256 a1e5d1e6f2a4aeee674827b72cad0976345cf07360d69252f600dd687e78d2f1
MD5 d475051e913c2701af7b6d5789b3f049
BLAKE2b-256 589d06212875367649345db21853f290662f1b1df683d01d4d35140dccee986a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for raylib-6.0.1.0-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d91f0f4a8e83dc668657fe9c789fcf7772f46e9d85ac9baed2d321c382d0e10f
MD5 de4a9e54d3bb2935f1fc00ebf2a2045a
BLAKE2b-256 2247088d171da3c6c71919d29cac0e9cdc7d7426cdddef94c9c88f96b5b3febe

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