Metadata-Version: 2.1
Name: mdbl
Version: 1.0.6
Summary: Python API wrapper az Magyar Discord Bot Lista APIhoz.
Home-page: https://github.com/FightMan01
Author: FightMan01
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.5.3
Description-Content-Type: text/x-rst
Requires-Dist: aiohttp (<3.6.0,>=3.3.0)
Requires-Dist: websockets (<7.0,>=6.0)
Requires-Dist: requests

Hivatalos MDBL API wrapper Pythonhoz!

Példa
--------------

.. code:: py

    import mdbl
    import discord
    from discord.ext import commands
    import asyncio

    class MDBLAPI(commands.Cog):

        def __init__(self, bot):
            self.bot = bot
            self.mdbl = mdbl.Bot()

        @commands.command()
        async def link(self, ctx):
            mdbl_link = self.mdbl.botlink(bot.user.id)
            await ctx.send(mdbl_link)

    def setup(bot):
        bot.add_cog(MDBLAPI(bot))



