Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

BD103/Chat-Webhooks

Repository files navigation

Chat Webhooks

Easily interact and send messages with Google Chat's webhooks feature. This API is small, but should be a nice framework for working with any webhook.

Installation

python -m pip install -U chat_webhooks

Getting Started

# API Example
from chat_webhooks import ChatWebhook

chat = ChatWebhook("WEBHOOK_URL")
chat.send("Hello, world!")
# Shell example
$ python -m chat_webhooks -w "WEBHOOK_URL"

# Interactive Google Chat webhook client
# Made by BD103

> Hello, world!

More Documentation

You can view a short guide here.