Metadata-Version: 2.1
Name: nppes
Version: 0.1.4
Summary: Package to interface with the Center for Medicare and Medicaid's (CMS) National Plan and Provider Enumeration System (NPPES).
License: MIT
Author: Jason Turan
Author-email: jason.turan@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: Pygments (>=2.6.1,<3.0.0)
Requires-Dist: click (>=7.1.2,<8.0.0)
Requires-Dist: pandas (>=1.1.2,<2.0.0)
Requires-Dist: requests (>=2.24.0,<3.0.0)
Project-URL: Documentation, https://github.com/jturan/nppes
Description-Content-Type: text/markdown

# nppes

Package to interface with the Center for Medicare and Medicaid's (CMS) National Plan and Provider Enumeration System (NPPES).

## To Install

```
$ pip install nppes

```

## Search

To search the NPPES API, simply search via your terminal.

```
$ search_nppes_api --first_name James --last_name Moore

```

To search the NPPES API and put results into a DataFrame:

```
from nppes import nppes_df

df = nppes_df(first_name='James', last_name='Moore')

```

Optional arguments include:

-   number
-   enumeration_type
-   taxonomy_description
-   first_name
-   last_name
-   organization_name
-   address_purpose
-   city
-   state
-   postal_code
-   limit

## Development

To run all tests: 

    $ nox

