An open API service indexing awesome lists of open source software.

https://github.com/hunter87ff/spruce.py

Python API wrapper for spruce chat bot
https://github.com/hunter87ff/spruce.py

api chatbot chatbot-api-free python

Last synced: 10 months ago
JSON representation

Python API wrapper for spruce chat bot

Awesome Lists containing this project

README

          

# Sprucepy
[![Tests](https://github.com/Hunter87ff/sprucepy/actions/workflows/python-application.yml/badge.svg)](https://github.com/Hunter87ff/sprucepy/actions/workflows/python-application.yml)
![Language](https://img.shields.io/badge/lang-Python%203.5|3.8|3.10-blue)
![API Version](https://img.shields.io/badge/Version-0.1.0-violet)

## Installing

To install the development version, do the following:
```sh
$ git clone https://github.com/hunter87ff/spruce.py
$ cd spruce.py
```
## Quich Example
```py
from sprucepy import Spruce
bot = Spruce()
while True:
msg = str(input("You : "))
print("Spruce : " + bot.ask(msg))
```