Metadata-Version: 2.1
Name: pyjoystick
Version: 0.0.2
Summary: Tools to get Joystick events.
Home-page: https://github.com/justengel/pyjoystick
Author: Justin Engel
Author-email: jengel@sealandaire.com
License: Proprietary
Download-URL: https://github.com/justengel/pyjoystick/archive/v0.0.2.tar.gz
Description: ==========
        pyjoystick
        ==========
        
        Python joystick event handler.
        
        
        Simple Example
        ==============
        
        .. code-block:: python
        
            from pyjoystick.sdl2 import Key, Joystick, run_event_loop
        
            def print_add(joy):
                print('Added', joy)
        
            def print_remove(joy):
                print('Removed', joy)
        
            def key_received(key):
                print('Key:', key)
        
            run_event_loop(print_add, print_remove, key_received)
        
Keywords: builder installer project pyinstaller
Platform: any
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Provides-Extra: pygame
