Skip to content

tomgrin10/zoombot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zoombot

PyPI PyPI - Python Version PyPI License Code Style: black

Python wrapper for Zoom Chatbot API

Usage

from zoombot.core import Bot, Message


class 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()

About

Python wrapper for Zoom Chatbot API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages