Metadata-Version: 2.1
Name: omniunibot
Version: 0.0.1
Summary: A universal multiplatform message bot
Home-page: https://github.com/yttty/omniunibot
Author: yttty
Author-email: yttty@noreply.com
License: MIT
Keywords: bots
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
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
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# unibot

### A universal bots package for python
* A universal message bot library

### Installation
- *(via pip)* `pip install -U omniunibot`
- *(via source)* clone this repo && `python setup.py install` or `python setup.py develop`

### How to use
```py
# import unibot
from unibot import FeishuBot, DingTalkBot, WXWorkBot

# initialize unibot
bot = FeishuBot(webhook_id, secret)
bot = DingTalkBot(token, secret)
bot = WXWorkBot(token)

# send message
bot.sendQuickMessage('Test Passed')
```

You could check the code example in `./example`
