Metadata-Version: 2.1
Name: krema
Version: 1.2.0
Summary: 🚀 A fast, flexible and lightweight Discord API wrapper for Python.
Home-page: https://github.com/kremayard/krema/
Author: kremayard
Author-email: 
License: MIT
Project-URL: Bug Tracker, https://github.com/kremayard/krema/issues
Description: <div align="center">
        <img src="https://avatars.githubusercontent.com/u/87482214?s=256&v=4" alt="krema"/>
        <h1>Krema</h1>
        <p>A fast, flexible and lightweight Discord API wrapper for Python.</p>
        
        ## Installation
        
        ### Unikorn
        `unikorn add kremayard krema -no-confirmation`
        
        ### Pip
        `pip install krema`
        
        ## Frameworks
        <div align="left">
        
        - [**Kommand**:](https://github.com/kremayard/kommand) Command framework for Krema.
        - [**Klash**:](https://github.com/kremayard/klash) Slash command framework for Krema.
        
        </div>
        
        ## Example Ping-Pong Bot
        
        <div align="left">
        
        ```py
        from unikorn import krema 
        # if you use pip, replace with:
        # import krema
        
        client = krema.Client(
            intents=krema.types.Intents().All()
        )
        
        @client.event()
        async def message_create(message):
            if message.author.bot: return
        
            if message.content.startswith("!ping"):
                await message.reply(
                    content=":ping_pong: Pong!"
                )
        
        client.start("client token", bot=True)
        ```
        
        </div>
        
        ## License
        
        This project is licensed under [MIT](https://opensource.org/licenses/MIT) license.
        
        </div>
        
Keywords: python,krema,discord,discord-api,api-wrapper
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
