Metadata-Version: 2.1
Name: discord.js
Version: 1.0.4
Summary: The Python module for discord.js.
Home-page: UNKNOWN
Author: Swas.py
Author-email: cwswas.py@gmail.com
License: UNKNOWN
Description: # discord.js
        
        This module let's you use discord.js in python by offering a similar syntax to the actual discord.js.
        
        # Simple bot
        
        ```python
        from discordjs import Client, console
        
        client = Client()
        
        client.on("ready", lambda:
            console.log("Bot is ready")
        )
        
        async def msg(message):
            if message.startswith("!ping"):
                await message.channel.send("pong")
        
        client.on("message", msg)
        
        client.login('Token')
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
