Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomgrin10/zoombot
Python wrapper for Zoom Chatbot API
https://github.com/tomgrin10/zoombot
Last synced: about 5 hours ago
JSON representation
Python wrapper for Zoom Chatbot API
- Host: GitHub
- URL: https://github.com/tomgrin10/zoombot
- Owner: tomgrin10
- License: mit
- Created: 2020-08-13T17:33:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-23T20:22:35.000Z (about 4 years ago)
- Last Synced: 2024-11-09T10:06:25.225Z (11 days ago)
- Language: Python
- Size: 18.6 KB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zoombot
[![PyPI](https://img.shields.io/pypi/v/zoombot)](https://pypi.org/project/zoombot/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/zoombot)](https://pypi.org/project/zoombot/)
[![PyPI License](https://img.shields.io/pypi/l/zoombot)](https://pypi.org/project/zoombot/)
[![Code Style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black/)Python wrapper for Zoom Chatbot API
### Usage
```python
from zoombot.core import Bot, Messageclass MyBot(Bot):
async def on_message(self, message: Message):
await message.reply("Hello", f"You sent {message.content}")if __name__ == "__main__":
bot = MyBot(
client_id="CLIENT_ID",
client_secret="CLIENT_SECRET",
bot_jid="BOT_JID",
verification_token="VERIFICATION_TOKEN",
)bot.run()
```