Metadata-Version: 1.2
Name: discord-curious
Version: 0.7.9
Summary: An async library for the Discord API
Home-page: https://github.com/SunDwarf/curious
Author: Laura Dickinson
Author-email: l@veriny.tf
License: LGPLv3
Description-Content-Type: UNKNOWN
Description: Curious
        =======
        
        ``curious`` is a Python 3.6+ library to interact with the
        `Discord <https://discordapp.com>`_ API.
        
        Installation
        ------------
        
        Curious is available on PyPI under ``discord-curious``:
        
        .. code-block:: bash
        
            $ pip install -U discord-curious
        
        Or for the latest development version:
        
        .. code-block:: bash
        
            $ pip install -U git+https://github.com/Fuyukai/curious.git#egg=curious
        
        Basic Example
        -------------
        
        .. code-block:: python3
        
            from curious import BotType, Client, Message
        
            cl = Client("token", bot_type=BotType.BOT | BotType.NO_DMS)
        
        
            @cl.event("ready")
            async def ready(ctx):
                print("Ready on shard", ctx.shard_id)
        
        
            @cl.event("message_create")
            async def handle_message(ctx, message: Message):
                print(f"{message.author.user.name} said '{message.content}'")
        
            cl.run(shards=1)
        
        Documentation
        -------------
        
        See the documentation at https://curious.readthedocs.io/en/latest/.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Framework :: Trio
Classifier: Development Status :: 4 - Beta
Requires-Python: >=3.6.2
