Metadata-Version: 2.1
Name: py-glfw-redux
Version: 1.1.0
Summary: A python wrapper for GLFW made with PyBind11
Author: Alagyn
Project-URL: Homepage, https://github.com/alagyn/py-glfw-redux
Project-URL: Bug Tracker, https://github.com/alagyn/py-glfw-redux/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# py-glfw-redux
GLFW wrapper for Python made with PyBind11

### Install
`pip install py-glfw-redux`

### Usage
This wrapper aims to be as close to the original API as possible.
Exceptions:
- Functions have lost the `glfw` prefix as this is already in the module name
- Functions that returned pointers to arrays now return list-like objects
- Functions that took pointers to output variables as arguments now return tuples


See [py-imgui-redux's examples](https://github.com/alagyn/PyImGui-Redux/blob/main/examples/window_boilerplate.py)
for a real use case

