Skip to main content

A small package to simplify the creation of Google Chat Bots

Project description

Google Chat

A small package to simplify the creation of Google Chat Bots

Examples

Text Messages

To send a simple text message to a Google Chat webhook

from googlechatbot import GoogleChatBot

webhook_url = "https://chat.googleapis.com/v1/..."
bot = GoogleChatBot(webhook_url)
bot.send_text_message("test message")

Cards

To simplify card creation there is a builder

from googlechatbot import CardBuilder, GoogleChatBot

webhook_url = "https://chat.googleapis.com/v1/..."
bot = GoogleChatBot(webhook_url)

builder = CardBuilder()
builder.add_header("Title", "Subtitle", "https://example.com/images/image.png")
builder.create_section("My section")
builder.add_keyvalue_widget("Key","Value","STAR")
card = builder.build()

resp = bot.send_card_message(card)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

googlechatbot-1.2.1.tar.gz (7.0 kB view hashes)

Uploaded Source

Built Distribution

googlechatbot-1.2.1-py3-none-any.whl (7.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page