No description
This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Find a file
2019-05-21 12:04:11 +01:00
examples/models initial 2019-05-21 10:56:31 +01:00
raylib put binary in git 2019-05-21 12:04:11 +01:00
.gitignore put binary in git 2019-05-21 12:04:11 +01:00
LICENSE Initial commit 2019-05-21 10:53:59 +01:00
MANIFEST.in initial 2019-05-21 10:56:31 +01:00
README.md update 2019-05-21 11:03:31 +01:00
setup.py initial 2019-05-21 10:56:31 +01:00
test.py initial 2019-05-21 10:56:31 +01:00

Python Bindings for Raylib

These bindings use CFFI rather than ctypes. Hopefully this will be faster, the static type knowledge from the C headers will result in fewer bugs, and using the original headers will make it easier to maintain.

Currently the goal is make usage as similar to the original C as CFFI will allow. There are a few differences you can see in the examples. Making a 'Pythonic' library would be an additional layer on top which hasn't been done yet.

Platforms tested

  • MacOS 10.12.6

HELP WANTED

  • converting more examples from C to python
  • testing and building on more platforms