Metadata-Version: 2.3
Name: metriport
Version: 9.0.0
Summary: 
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: fastapi (>=0.109.1,<0.110.0)
Requires-Dist: httpx (>=0.21.2)
Requires-Dist: pydantic (>=2.11.2,<3.0.0)
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
Description-Content-Type: text/markdown

## Local Python SDK 

The python project uses the locally fern generated Python SDK 
and runs tests against the Metriport API. 

### Regenerating the Python SDK

To update the generated Python SDK locally for testing, run 
```bash
fern generate --group test
```
You will be proped to sign in. Do this. 

To run the tests, run the following commands
```bash
poetry install 
pip install -r requirements.txt
poetry run pytest tests
```

Install the pylance and mypy plugins to get code completion
in your editor.


