Metadata-Version: 2.1
Name: aiocleverbot
Version: 0.1.0
Summary: Async library for cleverbot
Home-page: https://github.com/johan-naizu/aiocleverbot
Author: Johan Naizu
Author-email: johan@naizu.in
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/johan-naizu/aiocleverbot/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

![cleverbotfreeapi](https://www.cleverbot.com/images/cleverbot254x114.jpg)

# aiocleverbot
An async python wrapper for cleverbot.
Does not require API KEY

![Downloads](https://pepy.tech/badge/aiocleverbot) ![PyPI](https://img.shields.io/pypi/v/aiocleverbot) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/aiocleverbot) ![PyPI - License](https://img.shields.io/pypi/l/aiocleverbot)
## Installation
```pip
pip install aiocleverbot
```
## Usage
```python
from aiocleverbot import cleverbot
async def main():
  # Without context
  response=await cleverbot("Hello.")
  print(response)

  # With context
  # Please note that context should include messages sent to Cleverbot as well as the responses
  response=await cleverbot("Bad.", ["hi.", "How are you?"])
  print(response)



loop = asyncio.get_event_loop()
loop.run_until_complete(main())


