Metadata-Version: 2.1
Name: starkchat
Version: 0.0.4
Summary: Stark chatbot client based on AIML
Home-page: https://github.com/StarkIndustriesTG
License: BSD
Author: Sathishzus
Author-email: sourechebala19470@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: BSD License
Classifier: License :: Other/Proprietary 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: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: python-aiml (==0.9.3)
Project-URL: Repository, https://github.com/StarkIndustriesTG
Description-Content-Type: text/markdown

# StarkChat
Stark chatbot client based on AIML

# Installation

```sh
pip3 install starkchat
```

# Example

```py
from StarkChat import starkchat

chatbot = starkchat.StarkChat()

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

## Created and maintained by Sathishzus ❄️

