No project description provided
Project description
umls-api
Python client for https://documentation.uts.nlm.nih.gov/rest/home.html
Installation
pip install umls-api
Example Usage
Get CUI.
import umls_api
resp = umls_api.API(api_key='<UMLS_API_KEY_HERE>').get_cui(cui='C0007107')
print(res)
{
'pageCount': 1,
'pageNumber': 1,
'pageSize': 25,
'result': {
'atomCount': 247,
'atoms': 'https://uts-ws.nlm.nih.gov/rest/content/2020AB/CUI/C0007107/atoms',
'attributeCount': 0,
'classType': 'Concept',
'cvMemberCount': 0,
'dateAdded': '09-30-1990',
'defaultPreferredAtom': 'https://uts-ws.nlm.nih.gov/rest/content/2020AB/CUI/C0007107/atoms/preferred',
'definitions': 'https://uts-ws.nlm.nih.gov/rest/content/2020AB/CUI/C0007107/definitions',
'majorRevisionDate': '06-25-2020',
'name': 'Malignant neoplasm of larynx',
'relationCount': 17,
'relations': 'https://uts-ws.nlm.nih.gov/rest/content/2020AB/CUI/C0007107/relations',
'semanticTypes': [{
'name': 'Neoplastic Process',
'uri': 'https://uts-ws.nlm.nih.gov/rest/semantic-network/2020AB/TUI/T191'
}],
'status': 'R',
'suppressible': False,
'ui': 'C0007107'
}
Get TUI.
import umls_api
resp = umls_api.API(api_key='<UMLS_API_KEY_HERE>').get_tui(cui='T047')
print(resp)
{
'pageCount': 1,
'pageNumber': 1,
'pageSize': 25,
'result': {
'abbreviation': 'dsyn',
'childCount': 2,
'classType': 'SemanticType',
'definition': 'A condition which alters or interferes with a '
'normal process, state, or activity of an organism. '
'It is usually characterized by the abnormal '
"functioning of one or more of the host's systems, "
'parts, or organs. Included here is a complex of '
'symptoms descriptive of a disorder.',
'example': 'NONE',
'name': 'Disease or Syndrome',
'nonHuman': 'NONE',
'semanticTypeGroup': {
'abbreviation': 'DISO',
'classType': 'SemanticGroup',
'expandedForm': 'Disorders',
'semanticTypeCount': 12
},
'treeNumber': 'B2.2.1.2.1',
'ui': 'T047',
'usageNote': 'Any specific disease or syndrome that is modified by '
'such modifiers as "acute", "prolonged", etc. will '
'also be assigned to this type. If an anatomic '
'abnormality has a pathologic manifestation, then it '
'will be given this type as well as a type from the '
"'Anatomical Abnormality' hierarchy, e.g., "
'"Diabetic Cataract" will be double-typed for this '
'reason.'
}
}
If you wish to add support for other API endpoints on UMLS, they are very simple to add.
Pull requests (with tests) are very welcome.
Running the tests
pip install -r requirements-dev.txt
pytest src/tests
flake8
Release History
0.1.0 (2020-12-01)
- Initial release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
umls-api-0.1.0.tar.gz
(4.6 kB
view details)
File details
Details for the file umls-api-0.1.0.tar.gz
.
File metadata
- Download URL: umls-api-0.1.0.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.54.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 441edfcd4cc6540cc40cf85b00bee89654936c5b81e62bcde1c1a509a416201b |
|
MD5 | 4898aec9e821cef772422a27a3eea4d7 |
|
BLAKE2b-256 | f73a6e9f161f16ffa6c7559857ec60122446c2d56f93b7b882b3d936a596c616 |