Metadata-Version: 2.1
Name: minichat
Version: 1.0.3
Summary: Mini chatbot client based on AIML
Home-page: https://github.com/DevSnowflake/minichat
License: MIT
Author: DevAndromeda
Author-email: devandromeda@snowflakedev.org
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: python-aiml (==0.9.3)
Project-URL: Repository, https://github.com/DevSnowflake/minichat
Description-Content-Type: text/markdown

# Minichat
Mini chatbot client based on AIML

# Installation

```sh
pip3 install minichat
```

# Example

```py
from minichat import minichat

chatbot = minichat.Minichat()

while True:
    question = input("You: ")
    answer = chatbot.chat(question)
    print("Bot:", answer)
```

## Created and maintained by SnowflakeDev Community ❄️
