Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hscells/quickumlsrest


https://github.com/hscells/quickumlsrest

umls

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

        

# quickumlsrest

package quickumlsrest provides an API client to the quickUMLS-rest service.
The server can be found as a docker image from https://hub.docker.com/r/aehrc/quickumls-rest/.

Documentation: https://godoc.org/github.com/hscells/quickumlsrest

Example:

```go
client := quickumlsrest.NewClient("http://localhost:5000")
candidates, err := client.Match("cancer")
if err != nil {
panic(err)
}

for _, candidate := range candidates {
fmt.Println(candidate.CUI)
}
```