Metadata-Version: 2.1
Name: DuckDuck
Version: 0.0.3
Summary: An async API wrapper for the Random-d.uk API
Home-page: https://github.com/iamSkev/duck
Author: iamSkev
Author-email: shawnkenzov@gmail.com
License: MIT
Keywords: duck,randomduck,randomduk,duckapi
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Requires-Dist: aiofiles (>=0.8.0)
Requires-Dist: aiohttp (>=3.8.1)

# DuckDuck
A async wrapper for the RandomDuck API

[![Documentation Status](https://readthedocs.org/projects/duckduck/badge/?version=latest)](https://duckduck.readthedocs.io/en/latest/?badge=latest)
[![PyPI](https://img.shields.io/pypi/v/duckduck)](https://pypi.org/project/duckduck/)

## Features
- An async library.
- Has all of the endpoints covered in v2.
- Has a object oriented design so it's easy to use.

## Installation
```bash
$python -m pip install DuckDuck
```

## Example
```py
import asyncio

import DuckDuck

client = DuckDuck.Duck()

async def main():
  url = await client.fetch_random()
  print(url)

asyncio.run(main())
```

## Support
Contact me: [iamSkev#4260](https://discord.com/users/381799048228896788)


