https://github.com/tomgrin10/zoombot
Python wrapper for Zoom Chatbot API
https://github.com/tomgrin10/zoombot
Last synced: about 2 months 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-23T20:22:35.000Z (almost 5 years ago)
- Last Synced: 2025-04-26T15:16:52.331Z (2 months ago)
- Language: Python
- Size: 18.6 KB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zoombot
[](https://pypi.org/project/zoombot/)
[](https://pypi.org/project/zoombot/)
[](https://pypi.org/project/zoombot/)
[](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()
```