Metadata-Version: 2.1
Name: discsocket
Version: 0.1.1
Summary: Python framework for Discord interactions.
Home-page: https://github.com/murillotadeo/discsocket
Author: Tadeo Murillo
License: MIT
Project-URL: Issue tracker, https://github.com/murillotadeo/discsocket/issues
Description: # discsocket
        
        Python framework for Discord interactions.
        
        Example for a minimal application with an on_ready listener
        ```py
        import discsocket
        
        client = discsocket.Client()
        
        # Event names go in the event decorator
        # The function can be named whatever
        @socket.event('on_ready')
        async def ready():
          print("Socket is connected")
         
        client.run('token')
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
