Metadata-Version: 2.1
Name: gamesense
Version: 0.0.1
Summary: Library for interacting with SteelSeries GameSense 3.8.x
Home-page: https://github.com/caseybrichardson/gamesense
Author: Casey Richardson
Author-email: caseybrichardson@icloud.com
License: UNKNOWN
Description: # gamesense
        A Python library for use with SteelSeries GameSense 3.8.X+
        
        ## Installation
        To install run:
        ```python
        pip install gamesense
        ```
        
        ## Usage
        Relatively simple to use.
        
        ```python
        from gamesense import GameSense
        
        # Create a GameSense object instance to use
        gs = GameSense("PYTHON_SDK", "Python SDK")
        
        # Before you can register or send events, you must register your game
        gs.register_game(icon_color_id=GS_ICON_GOLD)
        
        # Register an event (different than binding an event, see more info in the SteelSeries docs)
        gs.register_event("DID_STUFF")
        
        # Test out the event by sending the event
        gs.send_event("DID_STUFF", {"value": 22})
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
