Gossip

It's a python library to send card messages to GChat rooms.

Installation

bash pip install gossip

Requirements

  • Python 3.8+
  • requests

Usage

```python

import Gossip class

from gossip import Gossip

Initialize Gossip object

g = Gossip(gchat_url='',[ title='', subtitle='', image_url=''])

Add elements to the card

g.add_text(text='') g.add_button(text='', url='')

Send the card

g.send() ```

Links for gossip