Metadata-Version: 2.1
Name: discordSplash
Version: 0.5a0
Summary: An API wrapper for Discord's slash commands. Written in Python.
Home-page: https://github.com/Mineinjava/discord-splash
Author: Mineinjava
Author-email: mineinjava@gmail.com
License: UNKNOWN
Description: # discord-splash
        An API wrapper for Discord's slash commands.
         
        ### Docs:
        coming soon™—use docstings for now.
        
        ### **NOTE:**
        you are required to make the slash commands via the Discord API. ***Currently* this is not possible via this API wrapper.**
        ### Examples:
        *Simple bot that responds with "hi"*
        ```python
        from discordSplash import Run
        import discordSplash
        
        @discordSplash.command(name='hello')
        async def hello(data):
            await data.respond(discordSplash.ReactionResponse("hi"))
        
        
        Run('TOKEN')
        ```
        
        *Presence Example*
        ```python
        from discordSplash import Run, Presence
        import discordSplash
        
        x = Presence(text='testing', presenceType=5)
        
        Run('TOKEN', x)
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
