Python client for Clubhouse (started as a fork of clubhouse-client)
The package is available on pypi and can be installed like any other packages.
$ pip install py-clubhouse
Refer to Clubhouse API Docs for more information.
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
stories = clubhouse.search_stories("state:Staging") # returns list of Story objects
- Clone repo
- Install poetry globally.
- Activate virtual env
poetry shell
- Install dependencies with
poetry install
- Run pytest
poetry run pytest
add GHA workflowcreate models for relevant resources- moar tests
- add c.r.u.d. methods for relevant models