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
Chatroom: Discord
New 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.
Quickstart
pip3 install raylib==5.0.0.4
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()
Installation
First 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.0.0.4
On most platforms it should install a binary wheel. If yours isn't available then pip will attempt to build from source, in which case you will need to have Raylib development libs installed, e.g. using homebrew, apt, etc.
Windows
Binaries require x64 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.0.0.4
(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
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
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). 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.
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 must 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 my_project
Point your browser to http://localhost:8000
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
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:
-
Use Pypy rather than standard CPython. It is much, much faster and will make more difference than any other optimisations you might do.
-
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.
-
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.
-
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
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
Built Distributions
File details
Details for the file raylib-5.5.0.0.tar.gz
.
File metadata
- Download URL: raylib-5.5.0.0.tar.gz
- Upload date:
- Size: 180.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88d8866a4dd24cb51f700ac65f7e7527f53b8ffdbec75ef38222611558c02560 |
|
MD5 | 564cd358cef282c62e488ccdbb892d26 |
|
BLAKE2b-256 | ebb2ca6c46e8b83100269d06ae1427274a7e020447f60e52b830b30346e8e292 |
File details
Details for the file raylib-5.5.0.0-pp310-pypy310_pp73-win_amd64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 612683a17445145561748d10cac0902bcb1ce409c657a440f77baf39bb552fb5 |
|
MD5 | c9cb8d89757bf2ac5b9e9466d2b40447 |
|
BLAKE2b-256 | 15e660b81be32c40241b2f63b5444ad37ae2300f2b5c2dd849cea140f5c4085a |
File details
Details for the file raylib-5.5.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-pp310-pypy310_pp73-manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8692a2cc935b1cf4699d726c44c052743a10c1e59d5643e3425acf5298527109 |
|
MD5 | cd8bbe6e7c04152f3b00e87c90ac91a4 |
|
BLAKE2b-256 | b1ba566ccd48f43bc56439aeb19a24d097c16ccc2ebd46232fc9274cc891c50a |
File details
Details for the file raylib-5.5.0.0-pp310-pypy310_pp73-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-pp310-pypy310_pp73-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69ec52ca23fb99ae6922f3f96eaf98e54d8c51069f3da3b236fd094cb5d2a29c |
|
MD5 | 5e1e9896e91f4e940590368dc2d780c5 |
|
BLAKE2b-256 | 37b463b64b644d1a29c1eab7936bb5126267eb13df5024b391b223502b280c9e |
File details
Details for the file raylib-5.5.0.0-pp39-pypy39_pp73-win_amd64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 1.6 MB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9ae315321df11fd7f33d017a86545076123cff852615e5d2a0816f64fa52205 |
|
MD5 | 6c24c2d56283a79d9c7c42a5b5d41ef3 |
|
BLAKE2b-256 | 13fd1d908c90650ce00bc2d55fcf1500b6802a2919886819eba5999748f7c5ea |
File details
Details for the file raylib-5.5.0.0-pp39-pypy39_pp73-manylinux2014_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-pp39-pypy39_pp73-manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1747ce9fd2c3f1702c1254c42dd2b11f25363021dd75673e92bf3c817d2d1932 |
|
MD5 | 3478f076c42938afb430a45ce4c0a2aa |
|
BLAKE2b-256 | 6e41a9b0fdd7496c8c8c8f17c2a3c58bc16c3c729de74eee2067026a4a2b2444 |
File details
Details for the file raylib-5.5.0.0-pp39-pypy39_pp73-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-pp39-pypy39_pp73-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 962a522778ab2cc66eb1df20ec4b6ab815b8c5549bcb88d7db3144951b4fd852 |
|
MD5 | dbb9f0b07ef9f6bc88a8aa3b34e6e2c7 |
|
BLAKE2b-256 | ade491ae43a1de38c2d7207ada6115abdda329d9424fb22bf681ef915176ee30 |
File details
Details for the file raylib-5.5.0.0-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ac81f7fd0eef3da220231dffd03e60af8df85299f96d6046fdc23c54acb5555 |
|
MD5 | 932d9d4fb0e3afe0162bb76f5c0aad9c |
|
BLAKE2b-256 | daae1d2a196264504aa1c1ccda1e62b10608ac03724eccdf8943aa0099e56ffb |
File details
Details for the file raylib-5.5.0.0-cp313-cp313-manylinux2014_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp313-cp313-manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d286de8af5bce6641ab17b8ab0c79443b791d682ffc0bc9452a30f1a137ec0a5 |
|
MD5 | 7f3c90ace4a387a183705641428b07f2 |
|
BLAKE2b-256 | 273a1d19c4ac1b450c3b03c73aa232584188d115efbc830b398470c05965c347 |
File details
Details for the file raylib-5.5.0.0-cp313-cp313-macosx_14_0_arm64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp313-cp313-macosx_14_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db5d2739d6ccdc8edf488ca6c90e85fffc0e30942b9a182e7568a2a5c3fd3bfe |
|
MD5 | 6d3a7107dfccfc83d9441830e30d821e |
|
BLAKE2b-256 | 43882f01f8832b301f8df59bf1f304a948dbcbffe120231de60ddf00e19fe6c6 |
File details
Details for the file raylib-5.5.0.0-cp313-cp313-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24a56fb48568e7c53168a7a2f79d9d89a6b057b6a75a2466d796f7851ac3dd90 |
|
MD5 | 5ad1b4cd793dd3ecec403f7c8f5f4998 |
|
BLAKE2b-256 | 47ddcb9cb243b572b5a017138a545d034acb08690df975dd880fef31aaadec65 |
File details
Details for the file raylib-5.5.0.0-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c13fa88ee5f66a7a66e15db7f27d29ba3215022f3cc144a91c6015bba9103e53 |
|
MD5 | f8af55890a08d2f0ee03237ea95f2877 |
|
BLAKE2b-256 | 029fa9fe265f1fd93b6bb6bc823e2d398912abe2d10746ffeea6983de2239ca0 |
File details
Details for the file raylib-5.5.0.0-cp312-cp312-manylinux2014_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp312-cp312-manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b56f4eb6ac3ff11f1e9764c98960f0629ff5535bc1ec9ecc1c079e6ed91c350c |
|
MD5 | 255cafcb57af61317284398eaf3010e8 |
|
BLAKE2b-256 | b4c2a05cf1150502d685148c44862c7c19ae86573eb0f1a96d0f906a3c3e3e82 |
File details
Details for the file raylib-5.5.0.0-cp312-cp312-manylinux2014_aarch64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp312-cp312-manylinux2014_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e17b10b5b967b20eb2fe91ef6601827354befb39cece67dc5cf3273c9410009 |
|
MD5 | 74089a8a956776e8b1613c4b32afd372 |
|
BLAKE2b-256 | 2abcbb1ccf760e18818bf071641c3e475f862222fe22aefedd9f833d77e1b129 |
File details
Details for the file raylib-5.5.0.0-cp312-cp312-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 333fcf03ae11a8ac633cbc6f4cbecd2a8284ef6fdb4eb282d530aefdaacfa465 |
|
MD5 | 2ec929c7f7857c489f6a20fb7207d1f5 |
|
BLAKE2b-256 | aef642cd266edb41a9767817b2b01bc15c3c072be9ce132cfc51218824507ed6 |
File details
Details for the file raylib-5.5.0.0-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ea8847472872988e63ee5b19e870e18ae8175602b1a282b8c9143d83fd2672b |
|
MD5 | 0e1bd35a1766538664f45e5df1b7157a |
|
BLAKE2b-256 | d8fed46bd5a9475ee188a342400217bfb57662ef89936e00d7490b98df40c737 |
File details
Details for the file raylib-5.5.0.0-cp311-cp311-manylinux2014_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp311-cp311-manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c75e51f030d3ebc756e10ee0c7e4994065c4d45e54d372e8cf45383fb20bc90 |
|
MD5 | c1178f9e17dad500b6d7b82830fb311f |
|
BLAKE2b-256 | 5ecc11e469e4e02f02c2c2c67acd6c34b3820905c453b39339ae09e4de3a011a |
File details
Details for the file raylib-5.5.0.0-cp311-cp311-manylinux2014_aarch64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp311-cp311-manylinux2014_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ff683f577a2a598283c4c17293d53192b014a6f880b949f8244b2c433b93172 |
|
MD5 | 173452fbb4a9d86b76f37792d8ae8647 |
|
BLAKE2b-256 | dce53de93d6bb95f16549f175cd3759fea24569920eaa07204f26958dd0f8270 |
File details
Details for the file raylib-5.5.0.0-cp311-cp311-macosx_14_0_arm64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp311-cp311-macosx_14_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2652a1f3f10221f01f7ea7d1658ba0d05851ccdb49fad24c9c9430f9c6f7d86 |
|
MD5 | 896fbcc81f23f9b7bdbc50f35b87e82a |
|
BLAKE2b-256 | 8b4fd5e7e04f07ff1a73d09369b3ae1cab9ee139fbb2dfec8f9a1b5370a2b8cd |
File details
Details for the file raylib-5.5.0.0-cp311-cp311-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp311-cp311-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9668af708a354708a5b1da37d9818cb916cd02ac0a796301cb9ace12ea53e1b0 |
|
MD5 | fd9368b4667fcf3b758bbe76143e7d6b |
|
BLAKE2b-256 | 5c2942c99d1b9f3bea542a678eba0762609b0fa90796f18b9df514540bbd540d |
File details
Details for the file raylib-5.5.0.0-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04aeef5238cb3bded4e228d95e6b4670a7ceb000270be5c1be763cbdc975c582 |
|
MD5 | 726263c1545029e26cd95d55a999bb2d |
|
BLAKE2b-256 | f38dda6184eb4df6ae36123a3c3af74695946a45e5661ecb38152741ef376918 |
File details
Details for the file raylib-5.5.0.0-cp310-cp310-manylinux2014_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp310-cp310-manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.10
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a44efa42a5a15fa1196dcbc1edee209fec4538ed0d6ec65cb561ca39ec61911 |
|
MD5 | 669366b2cc12376a06d150b743ca7d8a |
|
BLAKE2b-256 | c13e9adc6dc8c4f7a4fae82050b18b362b31c7acf251667ea1094b87e3d4522d |
File details
Details for the file raylib-5.5.0.0-cp310-cp310-manylinux2014_aarch64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp310-cp310-manylinux2014_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dce43b0eb964bbf842296286ed2b6d41d7ba2485e211ba7d59568af52c4b456a |
|
MD5 | 8adfd99da9042190e3b7b47c74e26f31 |
|
BLAKE2b-256 | 6cb2e77b7fed86c69219b7b3a3e23a9043ae0086a70cf4179cd8c588578794a9 |
File details
Details for the file raylib-5.5.0.0-cp310-cp310-macosx_14_0_arm64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp310-cp310-macosx_14_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b5fe3a3cb12ac9405315f0c9886a2e761651519802e41877ac1ef77f5834332 |
|
MD5 | 4655e9103671056ec928a7a8618457bf |
|
BLAKE2b-256 | 79c42022233a4784f09a2147e119c867d3ade643a3b4606cf33ea7cf023a1db9 |
File details
Details for the file raylib-5.5.0.0-cp310-cp310-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp310-cp310-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01930f31c9bbd48fcbd4a97fa3fb75b49721f441b359ae63b3fbf6ea6a6bf7f7 |
|
MD5 | e90f1184b858d6d1df60ef7921a8a5d3 |
|
BLAKE2b-256 | fa3e9b0bbfacdd5eaaf87e961d8eda24f8a3815bbb1039349c0dcf74bf33bae1 |
File details
Details for the file raylib-5.5.0.0-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eed7d9462c7cdd0fa3b767f8d7438db1acd28f389b39154489fc00440e6c71e3 |
|
MD5 | 704282be4973bb6ffede933b84a66d7d |
|
BLAKE2b-256 | 5837583b81e0e068b57b09ee3ef318f8a35dfc2cb4b0ade9ce36e82ddaa38f19 |
File details
Details for the file raylib-5.5.0.0-cp39-cp39-manylinux2014_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp39-cp39-manylinux2014_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca360896b4857ef9b421a428a55ac6662f85fa1c8bffacf801d78b624d8d0e14 |
|
MD5 | 3144f30b7a2066b346de415a14e6884b |
|
BLAKE2b-256 | dd8e3cf3a8ebf0f27dc8dee9b1ed6240542a2149470c6711503b795a14b8c602 |
File details
Details for the file raylib-5.5.0.0-cp39-cp39-manylinux2014_aarch64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp39-cp39-manylinux2014_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e02a9f16df2366593144670b0c3a539802c342290e30ad2957db1acb74bd6d15 |
|
MD5 | e3215514f2075c12dfb286a186784071 |
|
BLAKE2b-256 | b08f40e22664e98ca5469b135014abf6a89129858c5326b52df23cfa936ee1dc |
File details
Details for the file raylib-5.5.0.0-cp39-cp39-macosx_14_0_arm64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp39-cp39-macosx_14_0_arm64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a62af02c8382a68cd2e3dd99d1f603a44cdb3a37f552d12ee69b82dc1d09e5ae |
|
MD5 | 31d94a426fdb4bf6ef219c661cfca09c |
|
BLAKE2b-256 | ca522721ab4fe4c6ac9cd6c189b4b1cd74bcf29a0c40bc4b87a8525c7e1c437d |
File details
Details for the file raylib-5.5.0.0-cp39-cp39-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: raylib-5.5.0.0-cp39-cp39-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d290b4244796d16bd719bc5f4374c47395cabe85881f2fb3fdf14e3d91df9139 |
|
MD5 | dd7c2de67645154e3b5c03f6113651ce |
|
BLAKE2b-256 | 3196c549c3c1fd211c28cf0b8d90fc163882c3aca5984ded286b75f5250e5015 |