Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hscells/quickumlsrest
https://github.com/hscells/quickumlsrest
umls
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hscells/quickumlsrest
- Owner: hscells
- License: mit
- Created: 2018-08-21T00:53:19.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-13T06:16:09.000Z (almost 6 years ago)
- Last Synced: 2024-04-30T10:27:05.090Z (7 months ago)
- Topics: umls
- Language: Go
- Size: 8.79 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
}
```