Typetalk API client


License
MIT
Install
pip install typetalk==1.0.3

Documentation

typetalk-py

PyPI Build Status Coverage Status

Typetalk API client written in Python

Usage

Simple bot example

import os
import typetalk

bot = typetalk.Bot(token=os.environ['TYPETALK_TOKEN'])

res = bot.post_message(
    topic_id=os.environ['TYPETALK_TOPIC_ID'],
    message='Hello, world!'
)
assert res['post']['message'] == 'Hello, world!'

Links