cmsgov
An SDK (software development kit) for CMS.gov APIs. Currently implemented APIs include:
(more to come)
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")