Skip to content

Latest commit

 

History

History
30 lines (16 loc) · 875 Bytes

File metadata and controls

30 lines (16 loc) · 875 Bytes

datamusecli

a command-line based word-finding query tool that match a given set of constraints (provided through different flags)

This tool uses datamuse API(https://www.datamuse.com/api/) to query as command line.

Prerequisite:
1.)Go

Setup:
1.) RUN go get github.com/aniketsupertramp/datamusecli/src
2.) cd $GOPATH
3.) go build -o datamusee datamusecli/src/main.go
4.) cp datamuse /usr/local/bin

Done !!!

Run datamuse --help to find different flags you can use.

e.g. : datamuse --similar="ringing in the ears" will give words with a meaning similar to ringing in the ears

Also, with flag --max you can specify max number of results you want (default is 10)

e.g. : datamuse --similar="ringing in the ears" --max=20

Feel free to suggest any changes/corrections.