Skip to content

eugsokolov/icd10data-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

icd10data-scraper

Load ICD codes and find appopriate synonyms for a code data can be found at: http://icd10data.com/

Requirements: This web app scrapes icd10data and lazily stores codes and appropriate synonyms in a local mongo db

You must run:

 $ pip3 install -r requirements.txt

Usage: Run the app:

 $ python3 run.py

Get a code's synonyms:

 $ curl http://localhost:8080/code/<code>

Given a list of codes in codes.txt:

 $ for i in `cat codes.txt`; do curl http://localhost:8080/code/$i ; done

Load codes into a database - optional, but will prepopulate all codes (the speed here can be improved):

 $ python3 scraper.py

Releases

No releases published

Packages

No packages published

Languages