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
- Host: GitHub
- URL: https://github.com/hunter87ff/spruce.py
- Owner: Hunter87ff
- License: mit
- Created: 2023-10-23T06:18:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-18T10:48:49.000Z (over 1 year ago)
- Last Synced: 2025-02-21T09:17:28.590Z (over 1 year ago)
- Topics: api, chatbot, chatbot-api-free, python
- Language: Python
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sprucepy
[](https://github.com/Hunter87ff/sprucepy/actions/workflows/python-application.yml)


## 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))
```