Metadata-Version: 2.1
Name: ascord
Version: 1.0.0
Summary: Generating Python Discord bots
Home-page: UNKNOWN
Author: Kavin Jindal
Author-email: kavinsjindal@gmail.com
License: UNKNOWN
Description: 
            
        # AsCord 1.0.0
        
        ![AsCord](https://img.shields.io/badge/AsCord-1.0.0-blue)
        
        
        ---
        
        # Update log
        
        **Update 0.0.7**: Fixed the bot presence bug
        
        **Update 0.0.4**: Fixed the cogs generation.
        
        **Update 0.0.3**: Fixed a bug.
        
        **Update 0.0.2**: Fixed the `__init__.py` file.
        
        **Update 0.0.1**: Initial release of AsCord.
        
        ---
        
        # Info: 
        
        * This package makes it easy for python developers to generate `discord.py` bots. 
        * With not more than `3 lines of code`, you will be able to generate fully functional discord bots. 
        * You are also provided with an option of either generating discord bots WITH cogs or WITHOUT cogs.
        
        # Installation
        
        Type the following command to install the package
        
        ```python
        pip install ascord
        ```
        * or
        
        ```python
        pip3 install ascord
        ```
        # Usage
        
        * Importing the module
        
        ```python
         import ascord
         ```
        
        * Generate a bot without cogs
        
        ```python 
        ascord.as_cord("BOT_NAME", "BOT_PREFIX", "BOT_TOKEN")
        ```
        
        * Generate a bot with cogs
        
        ```python
        ascord.as_cogs("BOT_NAME", "BOT_PREFIX", "BOT_TOKEN")
        ```
        
        --> After the script is generated, you can run the bot.
        
        
        # Credits
        
        **Developed by: Kavin Jindal**
        
        
            
Keywords: python,discord,discord.py,discord bots,discord python,bots
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
