Next: Introduction, Previous: (dir), Up: (dir) [Contents][Index]
This is the datamuse Reference Manual, version 1.0, generated automatically by Declt version 3.0 "Montgomery Scott" on Mon Dec 02 10:06:34 2019 GMT+0.
• Introduction | What datamuse is all about | |
• Systems | The systems documentation | |
• Files | The files documentation | |
• Packages | The packages documentation | |
• Definitions | The symbols documentation | |
• Indexes | Concepts, functions, variables and data types |
#+TITLE: datamuse A library wrapping version 1.1 of the [[https://www.datamuse.com/api/][Datamuse API]]. From the Datamuse site: #+BEGIN_QUOTE The Datamuse API is a word-finding query engine for developers. You can use it in your apps to find words that match a given set of constraints and that are likely in a given context. You can specify a wide variety of constraints on meaning, spelling, sound, and vocabulary in your queries, in any combination. The API gives you programmatic access to most of the functionality of Datamuse's websites, including OneLook, RhymeZone, Rimar.io, and WikSearch. #+END_QUOTE Datamuse very generously allows up to 100,000 queries per day without an API key. Thus no setup is needed for this library. Just ~quickload~ it and go! :) * Exported symbols - function ~words~ - Get a list of words matching a query - function ~words*~ - Get a list of words and their metadata matching a query - function ~suggestions~ - Get a list of suggestions to a query string - function ~suggestions*~ - Get a list of suggestions to a query string and their metadata - symbol ~+words-query-parameters+~ - Alist mapping ~words~ and ~words*~ parameter names to the equivalent parameter name in Datamuse's API Please see the docstrings for each symbol and the [[http://www.datamuse.com/api/][Datamuse API documentation]] for more information. * Similar libraries - [[https://github.com/phoe/wordnet][wordnet]]
Next: Files, Previous: Introduction, Up: Top [Contents][Index]
The main system appears first, followed by any subsystem dependency.
• The datamuse system |
modula t.
MIT
Common Lisp library for accessing the Datamuse word-finding API
1.0
datamuse.asd (file)
Files are sorted by type and then listed depth-first from the systems components trees.
• Lisp files |
• The datamuse.asd file | ||
• The datamuse/package.lisp file | ||
• The datamuse/datamuse.lisp file |
Next: The datamuse/package․lisp file, Previous: Lisp files, Up: Lisp files [Contents][Index]
datamuse.asd
datamuse (system)
Next: The datamuse/datamuse․lisp file, Previous: The datamuse․asd file, Up: Lisp files [Contents][Index]
Previous: The datamuse/package․lisp file, Up: Lisp files [Contents][Index]
package.lisp (file)
datamuse (system)
datamuse.lisp
Next: Definitions, Previous: Files, Up: Top [Contents][Index]
Packages are listed by definition order.
• The datamuse package |
package.lisp (file)
common-lisp
Definitions are sorted by export status, category, package, and then by lexicographic order.
• Exported definitions |
Previous: Definitions, Up: Definitions [Contents][Index]
• Exported constants | ||
• Exported functions |
Next: Exported functions, Previous: Exported definitions, Up: Exported definitions [Contents][Index]
Alist mapping ‘words’ parameter names to the API’s query parameter names.
See https://www.datamuse.com/api/ for a detailed explanation of the API.
See also: ‘words’, ‘words*’
datamuse.lisp (file)
Previous: Exported constants, Up: Exported definitions [Contents][Index]
Performs a query to the Datamuse API’s /sug endpoint as described at https://www.datamuse.com/api/ , to get a list of suggestions to partially-typed queries, similar to the auto-suggest feature of some search engines.
STRING is the input string to generate suggestions for, MAX is the maximum number of results, VOCABULARY is the vocabulary (which defaults to English).
Examples:
;; (suggestions "jack of")
=> ("jack of all trades" "jack off" "jack of the buttery" "jack of all trades and master of none" "back off" "back office" "jack frost" "jack o lantern" "jack-of-all-trades")
See also: ‘words’, ‘suggestions*’.
datamuse.lisp (file)
Performs a query to the Datamuse API’s /sug endpoint as described at https://www.datamuse.com/api/ , to get a list of suggestions to partially-typed queries, similar to the auto-suggest feature of some search engines.
STRING is the input string to generate suggestions for, MAX is the maximum number of results, VOCABULARY is the vocabulary (which defaults to English).
See also: ‘suggestions’, ‘words’.
datamuse.lisp (file)
Perform a query to the Datamuse API’s /words endpoint as described at https://www.datamuse.com/api/ , to get a list of words matching the query specified.
Each keyword argument maps to one of the endpoint’s query parameters via the ‘+words-query-parameters+’ alist. They are defined in this function in the same order they are defined in the API documentation, so refer to that for a detailed explanation of each.
Note that this function returns just a list of words. To get all the results including the metadata, use ‘words*’.
Examples:
;; Get a list of words that rhyme with "foobar":
;; (words :rhymes "foobar")
;; Get a list of words that start with "f" and end with "uck":
;; (words :spelling "f*uck")
See also: ‘words*’, ‘+words-query-parameters+’, ‘suggestions’.
datamuse.lisp (file)
Perform a query to the Datamuse API’s /words endpoint as described at https://www.datamuse.com/api/ .
Each keyword argument maps to one of the endpoint’s query parameters via the ‘+words-query-parameters+’ alist. They are defined in this function in the same order they are defined in the API documentation, so refer to that for a detailed explanation of each.
Note that this function includes all of the data returned by the API as Sexprs (i.e. including various metadata for each result). If you want a list of just the words themselves, use ‘words’.
See also: ‘words’, ‘+words-query-parameters+’, ‘suggestions’.
datamuse.lisp (file)
Previous: Definitions, Up: Top [Contents][Index]
• Concept index | ||
• Function index | ||
• Variable index | ||
• Data type index |
Next: Function index, Previous: Indexes, Up: Indexes [Contents][Index]
Jump to: | D F L |
---|
Jump to: | D F L |
---|
Next: Variable index, Previous: Concept index, Up: Indexes [Contents][Index]
Jump to: | F S W |
---|
Jump to: | F S W |
---|
Next: Data type index, Previous: Function index, Up: Indexes [Contents][Index]
Jump to: | +
C |
---|
Index Entry | Section | ||
---|---|---|---|
| |||
+ | |||
+words-query-parameters+ : | Exported constants | ||
| |||
C | |||
Constant, +words-query-parameters+ : | Exported constants | ||
|
Jump to: | +
C |
---|
Previous: Variable index, Up: Indexes [Contents][Index]
Jump to: | D P S |
---|
Index Entry | Section | ||
---|---|---|---|
| |||
D | |||
datamuse : | The datamuse system | ||
datamuse : | The datamuse package | ||
| |||
P | |||
Package, datamuse : | The datamuse package | ||
| |||
S | |||
System, datamuse : | The datamuse system | ||
|
Jump to: | D P S |
---|