Metadata-Version: 2.4
Name: cmsgov
Version: 0.0.0a0
Project-URL: Documentation, https://cmsgov.enorganic.org
Project-URL: Repository, https://github.com/enorganic/cmsgov
Author-email: david@belais.me
License-Expression: MIT
Requires-Python: ~=3.9
Requires-Dist: oapi~=2.4
Description-Content-Type: text/markdown

# cmsgov

[![test](https://github.com/enorganic/cmsgov/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/enorganic/cmsgov/actions/workflows/test.yml)

An SDK (software development kit) for CMS.gov APIs. Currently implemented
APIs include:

- [CMS.gov's Provider Data API](https://data.cms.gov/provider-data/docs)

(more to come)

Please refer to the [documentation](https://cmsgov.enorganic.org) for
usage information.

## Install

You can install this package with pip:

```bash
pip3 install cmsgov
```

## Example Usage

Search for data sets containing the term "psychiatry" in one or more fields:

```python
from cmsgov.provider_data.v1.client import Client as ProviderDataClient

provider_data_client: ProviderDataClient = ProviderDataClient()
provider_data_client.get_search(fulltext="psychiatry")
```
