Metadata-Version: 2.1
Name: ibl
Version: 0.0.6
Summary: Python api wrapper for infinity bot list
Home-page: https://ibl.gitbook.io/ibl/
Author: Andromeda
Author-email: bots@rjbot.xyz
License: MIT
Description: # IBL
        #### Python API Wrapper for https://infinitybots.xyz
        
        # POST BOT STATS
        ## await ibl.post_stats(bot_id, auth_token, servers, shards=0)
        ### Example:
        ```py
        import discord
        from discord.ext import tasks
        
        @tasks.loop(minutes=30)
        async def update_ibl():
            await ibl.post_stats(bot.user.id, "auth_token", len(bot.guilds))
        ```
        # GET USER INFO
        ## await ibl.user_info(id)
        ### Returns:
        user.username
        - String
        
        user.about
        - String
        
        user.certified_dev
        - BOOL
        
        user.staff
        - LIST/ARRAY
        
        user.developer
        - STRING
        
        user.error
        - BOOL
        
        # GET BOT INFO
        
        ## await ibl.bot_info(id)
        
        ### RETURNS
        bot.name <br>
        bot.certified <br>
        bot.tags <br>
        bot.prefix <br>
        bot.owner <br>
        bot.library <br>
        bot.short_desc <br>
        bot.long_desc <br>
        bot.premium <br>
        bot.nsfw <br>
        bot.servers <br>
        bot.shards <br>
        bot.votes <br>
        bot.invites <br>
        bot.website <br>
        bot.donate <br>
        bot.support <br>
        bot.banner <br>
        bot.staff <br>
        bot.error <br>
        
Keywords: infinity bot list infinity-bot-list-python-api ibl
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
