All Projects → bryand1 → icd10-cm

bryand1 / icd10-cm

Licence: MIT license
ICD-10 CM medical classification list by the World Health Organization

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to icd10-cm

Mining-Minds
Mining Minds is a collection of services, tools and techniques working collaboratively to investigate on human’s daily routines to provide a personalized well-being and health-care support
Stars: ✭ 43 (-21.82%)
Mutual labels:  healthcare
flu-monitor
Flu visualization tool
Stars: ✭ 10 (-81.82%)
Mutual labels:  healthcare
openhospital-gui
Open Hospital GUI (Java Swing) component
Stars: ✭ 27 (-50.91%)
Mutual labels:  healthcare
coronainfobd
Real-time corona-virus tracker of Bangladesh 🇧🇩 which includes latest updates, data visualization, public awareness from WHO and some advice to aware people. 🥰❤
Stars: ✭ 46 (-16.36%)
Mutual labels:  healthcare
monai-deploy
MONAI Deploy aims to become the de-facto standard for developing, packaging, testing, deploying and running medical AI applications in clinical production.
Stars: ✭ 56 (+1.82%)
Mutual labels:  healthcare
blockchain-hackathon
An electronic health record (EHR) system built on Hyperledger Composer blockchain
Stars: ✭ 67 (+21.82%)
Mutual labels:  healthcare
soulcare
🔥 A centralised health care system that tracks each dose given to the patient by the nurse. Also let's specialist doctors respond to the patient immediately via logs generated.
Stars: ✭ 23 (-58.18%)
Mutual labels:  healthcare
HAR
Code for WWW2019 paper "A Hierarchical Attention Retrieval Model for Healthcare Question Answering"
Stars: ✭ 22 (-60%)
Mutual labels:  healthcare
CyFHIR
A Neo4j Plugin for Handling HL7 FHIR Data
Stars: ✭ 39 (-29.09%)
Mutual labels:  healthcare
healthcare-server
A rubyOnRails based web application with a small concept behind healthcare
Stars: ✭ 16 (-70.91%)
Mutual labels:  healthcare
senaite.health
SENAITE LIMS extension for Health Care labs
Stars: ✭ 19 (-65.45%)
Mutual labels:  healthcare
healthyR
Hospital Data Analysis Workflow Tools
Stars: ✭ 21 (-61.82%)
Mutual labels:  healthcare
HealthLedger
Application for tracking Organs donations in hospitals and minimizing the scope of Organ trafficking using Blockchain (Hyperledger) technology.
Stars: ✭ 29 (-47.27%)
Mutual labels:  healthcare
simple-server
The web app behind Simple.org
Stars: ✭ 61 (+10.91%)
Mutual labels:  healthcare
Udacity
This repo includes all the projects I have finished in the Udacity Nanodegree programs
Stars: ✭ 57 (+3.64%)
Mutual labels:  healthcare
Asclepius
Open Price Comparison for US Hospitals
Stars: ✭ 20 (-63.64%)
Mutual labels:  healthcare
hl7v2-fhir-converter
Converts HL7 v2 Messages to FHIR Resources
Stars: ✭ 40 (-27.27%)
Mutual labels:  healthcare
HealthDeterminants
Social Determinants of Health Visualization
Stars: ✭ 58 (+5.45%)
Mutual labels:  healthcare
PulseTile-AngularJS
Leading edge modular UI framework for healthcare. Based on AngularJS. See documentation at http://docs.pulsetile.com/ See plugins at https://github.com/PulseTile-Plugins ##
Stars: ✭ 19 (-65.45%)
Mutual labels:  healthcare
app
Aplicación web para ANDES
Stars: ✭ 12 (-78.18%)
Mutual labels:  healthcare

ICD-10 CM

license MIT python 3.6 | 3.7

ICD-10 is the 10th revision of the International Statistical Classification of Diseases and Related Health Problems (ICD), a medical classification list by the World Health Organization (WHO). It contains codes for diseases, signs and symptoms, abnormal findings, complaints, social circumstances, and external causes of injury or diseases.

Wikipedia: ICD-10

Getting Started

pip install icd10-cm

Common Usage

Find an ICD-10 code

import icd10

code = icd10.find("J20.0")
print(code.description)         # Acute bronchitis due to Mycoplasma pneumoniae
if code.billable:
    print(code, "is billable")  # J20.0 is billable

print(code.chapter)             # X
print(code.block)               # J00-J99
print(code.block_description)   # Diseases of the respiratory system

Check if an ICD-10 code exists

import icd10

if icd10.exists("J20.0"):
    print("Exists")

Chapters

Chapter Block Title
I A00-B99 Certain infectious and parasitic diseases
II C00-D48 Neoplasms
III D50-D89 Diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism
IV E00-E90 Endocrine, nutritional and metabolic diseases
V F00-F99 Mental and behavioural disorders
VI G00-G99 Diseases of the nervous system
VII H00-H59 Diseases of the eye and adnexa
VIII H60-H95 Diseases of the ear and mastoid process
IX I00-I99 Diseases of the circulatory system
X J00-J99 Diseases of the respiratory system
XI K00-K93 Diseases of the digestive system
XII L00-L99 Diseases of the skin and subcutaneous tissue
XIII M00-M99 Diseases of the musculoskeletal system and connective tissue
XIV N00-N99 Diseases of the genitourinary system
XV O00-O99 Pregnancy, childbirth and the puerperium
XVI P00-P96 Certain conditions originating in the perinatal period
XVII Q00-Q99 Congenital malformations, deformations and chromosomal abnormalities
XVIII R00-R99 Symptoms, signs and abnormal clinical and laboratory findings, not elsewhere classified
XIX S00-T98 Injury, poisoning and certain other consequences of external causes
XX V01-Y98 External causes of morbidity and mortality
XXI Z00-Z99 Factors influencing health status and contact with health services
XXII U00-U99 Codes for special purposes

Wikipedia: ICD-10

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].