Metadata-Version: 2.1
Name: ICD10CodeLookUp
Version: 0.0.2
Summary: ICD10CodeLookUp is a Python library that can be used to look up ICD10 Diagnosis Codes.
Home-page: https://github.com/famutimine/ICD10CodeLookUp
Author: Daniel Famutimi MD, MPH
Author-email: danielfamutimi@gmail.com
License: MIT
Keywords: ICD1O Code
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Intended Audience :: Healthcare Industry
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pandas

## README.md



ICD10CodeLookUp is a Python library that can be used to look up ICD10 Diagnosis Codes.



**Installation**



You can install ICD10CodeLookUp using pip:



```python

pip install ICD10CodeLookUp

```



#### Example usage

```python

import pandas as pd

import numpy as np

from ICD10CodeLookUp import DiagnosisCodeLookUp

```



#### Create an instance of the ICD10CodeLookUp class

```python

lookup = DiagnosisCodeLookUp()

```



##### Search for ICD10 diagnosis codes based on a keyword

```python

keyword = 'heart failure' # Let's use Heart failure as an example keyword

codes = lookup.search_by_keyword(keyword)

print("ICD10 diagnosis codes for keyword '{}': {}".format(keyword, codes))

```



##### Retrieve the ICD10 diagnosis code mapping as a dataframe

```python

df_mapping = lookup.get_mapping_dataframe(keyword)

print("\nICD10 diagnosis code Mapping (DataFrame):")

df_mapping

```



##### Retrieve the ICD10 diagnosis code mapping as a tuple list

```python

tuple_mapping = lookup.get_mapping_tuple_list(keyword)

print("\nICD10 diagnosis code Mapping Tuple List:")

tuple_mapping

```

