A async wrapper for the RandomDuck API
- An async library.
- Has all of the endpoints covered in v2.
- Has a object oriented design so it's easy to use.
$python -m pip install DuckDuck
import asyncio
import DuckDuck
client = DuckDuck.Duck()
async def main():
url = await client.fetch_random()
print(url)
asyncio.run(main())
Contact me: iamSkev#4260