Metadata-Version: 2.4
Name: pybrightree
Version: 0.1.1
Summary: Python SOAP wrapper for Brightree
Author: Nick
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: zeep>=4.3.1

# pybrightree

`pybrightree` is a Python SOAP wrapper for Brightree.

## Install

```bash
pip install -e .
```

The package installs as `pybrightree` and is imported as `brightree`.

## Usage

```python
from brightree import Brightree

bt = Brightree("username", "password")
note = bt.Patient().PatientNoteFetchByKey(141508)
```

The package preserves the PHP wrapper's service accessor and SOAP method names so existing examples map cleanly.

Examples are available in [examples/basic_usage.py](/Users/nicholascheek/code/Brightree-python/examples/basic_usage.py) and [examples/custom_config.py](/Users/nicholascheek/code/Brightree-python/examples/custom_config.py).
