An async python wrapper for cleverbot. Does not require API KEY
pip install aiocleverbot
from aiocleverbot import cleverbot
# 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)