Metadata-Version: 2.1
Name: asyncdagreq
Version: 1.2.0
Summary: An async wrapper made in Python for Dagpi.
Home-page: https://github.com/Ali-TM-original/asyncdagreq
Author: Ali-TM-original
Author-email: UNKNOWN
License: MIT
Platform: UNKNOWN
Requires-Dist: aiohttp



unofficial DagpiWrapper
=======================

Async Wrapper for Dagpi

| `OFFICIAL DAGPI WEBSITE <https://dagpi.xyz/>`__
| `OFFICIAL GITHUBREPO <https://github.com/Ali-TM-original/asyncdagreq>`__

Author: Ali™ AKA Ali-TM-original
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Just A small project to imporve my skills in Object Oriented
Programming, inspired from my previous discord.py canny command

| NOT READY FOR USE YET
| tasks remaining:
|  [STRIKEOUT:1>Error Detection]

::

    2>.Testing
    3>.Get this up and running on pypi

CURRENT STATE : Functional
--------------------------------------------

Usage with discord.py (till now)
================================================================

super simple

**Roast**

::

    from asyncdagreq import Client
    import json

    object = Client.Asyncdagreq('your token')

    @bot.command()
    async def roast(ctx):
        roast = await object.roast()
        x = roast.decode("utf-8")
        j = json.loads(x)
        await ctx.send(j['roast'])


**USING IMAGE METHODS**

::

    from asyncdagreq import Client
    import json

    object = Client.Asyncdagreq('your token')

    @bot.command()
    async def captcha(ctx):
        url = str(ctx.message.author.avatar_url_as(format="png", static_format="png", size=1024))
        img = await object.captcha(str(url), "hello")
        file = discord.File(img, "pixel.png")
        await ctx.send(file=file)




