Metadata-Version: 2.1
Name: py-clubhouse
Version: 0.1.0
Summary: Python client for Clubhouse
Home-page: https://github.com/nickatnight/py-clubhouse/
License: MIT
Author: nickatnight
Author-email: nickkelly.858@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: requests (>=2.24.0,<3.0.0)
Project-URL: Repository, https://github.com/nickatnight/py-clubhouse/
Description-Content-Type: text/markdown

# py-clubhouse
Python client for Clubhouse (fork of [clubhouse-client](https://github.com/allardbrain/clubhouse-client) because I needed more flexibility for special use cases on work engagements)

## Installation

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

    $ pip install py-clubhouse

## Usage

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

```python
from py_clubhouse import Clubhouse

clubhouse = Clubhouse('your api key')

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

## TODO
* create models for relevant resources
* moar tests

