Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 703 Bytes

README.md

File metadata and controls

24 lines (13 loc) · 703 Bytes

simple-ICD

Simple-ICD is a simple Python-library without bells and whistles for the encoding of diagnoses according to the 10th revision of the International Statistical Classification Of Diseases, German Modification (ICD-10-GM). This Python-module emphasizes ease of use, giving clinicians and researchers an a simple tool to encode diagnoses.

Using ICD_10.py

A quick example how to use the ICD_10 module.

from ICD_10 import ICD_10 as icd

# search for "Humerusfraktur"
ret_list=icd.search_icd_intelligent("Humerusfraktur") 

print(ret_list)

The application-example icd_example.py creates a simple user interface to search for ICD-10 codes using PySimpleGUI.

Have fun!