clubhouse

Client for the Clubhouse API


License
Apache-2.0
Install
pip install clubhouse==0.3.0

Documentation

clubhouse-client

Python client for Clubhouse

Installation

The package is available on pypi and can be installed like any other packages.

$ pip install clubhouse

Usage

Refer to Clubhouse API Docs for more information.

from clubhouse import ClubhouseClient

clubhouse = ClubhouseClient('your api key')

story = {'name': 'A new story', 'description': 'Do something!'}
clubhouse.post('stories', json=story)