Metadata-Version: 2.1
Name: connect_umls
Version: 0.0.2
Summary: Make connecting to the UMLS rest APIs easier
Home-page: https://gitlab.com/gracekatherineturner/umls_connect
Author: Grace Turner
Author-email: gracekatherineturner@gmail.com
License: UNKNOWN
Description: Super light UMLS connection. The goal is to feel similar to the UMLS browser.
        Requires no downloading, but the UMLS rest connection is somewhat slow so user beware.
        You need to make an account with UMLS.
        ```python
        import connect_umls as um
        umls = um.UMLS(apikey)
        ```
        Your api key can be found here: https://documentation.uts.nlm.nih.gov/rest/authentication.html
        You only need to supply the api key in step 1. We take care of all the ticket nonsense.
        
        Example:
        
        ```python
        #get top 10 search results
        results = umls.search("joint pain hip", k=10)
        
        #"CUI"|"Term"|"Code" default Term. CUI - the cui. Term - the text words. Code - the code.
        
        for result in results:
            code = result.cui() # the CUI
            name = result.name() # the main name
            synonyms = result.synonyms() # all the different names of the atoms
            if result.hasMapping("LNC"):
                # check if this result maps to a certain codeset, eg. SNOMED-CT.
                ## Note: you will need to give the UMLS short hand version of the codeset name.
                ## e.g. "LNC" not "LOINC"
                print("There is a map to LOIN-C!")
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
