Metadata-Version: 2.1
Name: discord-py-slash-command
Version: 1.0.8
Summary: Simple Discord Slash Command extension for discord.py.
Home-page: https://github.com/eunwoo1104/discord-py-slash-command
Author: eunwoo1104
Author-email: sions04@naver.com
License: UNKNOWN
Description: # discord-py-slash-command
        Simple Discord Slash Commands extension for [discord.py](https://github.com/Rapptz/discord.py).
        
        ## Example
        Normal usage:
        ```py
        import discord
        from discord.ext import commands
        from discord_slash import SlashCommand
        from discord_slash import SlashContext
        
        bot = commands.Bot(command_prefix="!", intents=discord.Intents.all())
        slash = SlashCommand(bot)
        
        
        @slash.slash(name="test")
        async def _test(ctx: SlashContext):
            embed = discord.Embed(title="embed test")
            await ctx.send(content="test", embeds=[embed])
        
        
        bot.run("discord_token")
        ```
        
        Cog:
        ```py
        import discord
        from discord.ext import commands
        from discord_slash import cog_ext
        from discord_slash import SlashCommand
        from discord_slash import SlashContext
        
        
        class Slash(commands.Cog):
            def __init__(self, bot):
                if not hasattr(bot, "slash"):
                    # Creates new SlashCommand instance to bot if bot doesn't have.
                    bot.slash = SlashCommand(bot, override_type=True)
                self.bot = bot
                self.bot.slash.get_cog_commands(self)
        
            def cog_unload(self):
                self.bot.slash.remove_cog_commands(self)
        
            @cog_ext.cog_slash(name="test")
            async def _test(self, ctx: SlashContext):
                embed = discord.Embed(title="embed test")
                await ctx.send(content="test", embeds=[embed])
        
        
        def setup(bot):
            bot.add_cog(Slash(bot))
        
        ```
        
        ## Installation
        `pip install -U discord-py-slash-command`
        
        ## Simple note before you use this
        Since slash commands are currently not officially released (They're in public beta),
        there will be many breaking changes to this extension which may cause it to become unstable, 
        so I'd recommend waiting until discord officially releases slash commands,
        and waiting until Release 1.1.0, which I'm planning to finish implementing most of the features.  
        Or you can wait until discord.py supports slash commands.
        
        ## DOCS
        https://discord-py-slash-command.readthedocs.io/en/latest/  
        See [discord-api-docs](https://discord.com/developers/docs/interactions/slash-commands) for some more information
        about some formats.
        
        ## Any Questions?
        [Discord Server](https://discord.gg/KkgMBVuEkx)  
        Or you can ask at [Discussions](https://github.com/eunwoo1104/discord-py-slash-command/discussions).
        
        ## TODO
        - Rewrite `http.py` and webhook part (Maybe use discord.py's webhook support?)
        - Try supporting most of the features supported by discord.py commands extension
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
