Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 813 Bytes

File metadata and controls

32 lines (20 loc) · 813 Bytes

cmsgov

test

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

(more to come)

Please refer to the documentation for usage information.

Install

You can install this package with pip:

pip3 install cmsgov

Example Usage

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

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

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