Metadata-Version: 2.1
Name: cleverbot-scraper
Version: 0.1
Summary: Free cleverbot without headless browser
Home-page: https://github.com/matheusfillipe/cleverbot_scraper
Author: Matheus Fillipe
Author-email: mattf@tilde.club
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Internet
Requires-Python: >=3.4
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# Cleverbot Scrapper Lib

Simple free cleverbot library that doesn't require running a heavy ram wasting headless web browser to actually chat with the bot, all that it uses is the requests module. Also supports simultaneously different sessions, which means, different parallel conversations.

## Try it


Install and test with:
```bash
pip3 install cleverbot-scrapper
python3 -m "cleverbot"
```
The last command will start a live session with the cleverbot(for testing purposes).


## Example
```python
from cleverbot import cleverbot
# With context and session
# An ongoing conversation with the first question as "How are you?"
print("How are you?")
print(cleverbot(input(">>"), ["hi.", "How are you?"], "How are you?"))
while True:
    print(cleverbot(input(">>"), session="How are you?"))

```


