Metadata-Version: 2.1
Name: clubhouse
Version: 0.2.0
Summary: Client for the Clubhouse API
Home-page: https://github.com/j-martin/clubhouse-client
License: Apache-2.0
Author: Jean-Martin Archer
Author-email: jm@jmartin.ca
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: requests (>=2.21,<3.0)
Project-URL: Repository, https://github.com/j-martin/clubhouse-client
Description-Content-Type: text/markdown

# clubhouse-client
Python client for Clubhouse

## Installation

The package is available on [pypi](https://pypi.org/project/clubhouse/) and can
be installed like any other packages.

    $ pip install clubhouse

## Usage

Refer to [Clubhouse API Docs](https://clubhouse.io/api/rest/v2/) for more information.

```python
from clubhouse import ClubhouseClient

clubhouse = ClubhouseClient('your api key')

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

