Metadata-Version: 2.4
Name: pyzero-joystick
Version: 0.1.5
Summary: Joystick simple estilo Pygame Zero
Author: Lavacraft259
Description-Content-Type: text/markdown
Requires-Dist: inputs
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: summary

# pyzero-joystick

pyzero-joystick is a simple joystick library inspired by Pygame Zero.

It allows beginners to use gamepads easily in Python games without dealing with complex event systems.

Works with the inputs library, making it compatible with Termux and Linux environments.

## Example

```python
from pyzero_joystick import joystick

def update(dt):
    if joystick.a:
        print("Jump!")
