Metadata-Version: 2.1
Name: py-clubhouse
Version: 0.1.1
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

<p align="center">
<a href="https://codecov.io/gh/nickatnight/py-clubhouse">
  <img src="https://codecov.io/gh/nickatnight/py-clubhouse/branch/master/graph/badge.svg?token=E03I4QK6D9"/>
</a>
<a href="https://github.com/nickatnight/py-clubhouse/releases"><img alt="Actions Status" src="https://img.shields.io/pypi/v/py-clubhouse?style=plastic"></a>
</p>


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/py-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 = clubhouse.get_story(1234)  # returns Story object
workflows = clubhouse.workflows()  # returns list of Workflow objects
```

## TODO
* ~~add GHA workflow~~
* create models for relevant resources
* moar tests

