-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.lisp
100 lines (100 loc) · 1.61 KB
/
package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
(defpackage #:oxenfurt
(:nicknames #:org.shirakumo.oxenfurt)
(:use #:cl)
;; api.lisp
(:export
#:*api*
#:*app-id*
#:*app-key*
#:api-call-failed
#:url
#:result
#:body
#:list-languages
#:list-filters
#:list-lexical-categories
#:list-registers
#:list-domains
#:list-regions
#:list-grammatical-features
#:inflections
#:find-word
#:search-words
#:list-words
#:word-frequency
#:ngram-frequency)
;; objects.lisp
(:export
#:antonym
#:cross-reference
#:derivative
#:entry
#:example
#:frequency
#:language-dataset
#:lexical-entry
#:match
#:note
#:pronunciation
#:sense
#:sentence
#:synonym
#:translation
#:variant-form
#:word
;; Slots
#:antonyms
#:audio-file
#:bilingual-p
#:components
#:cross-reference-markers
#:cross-references
#:definitions
#:derivative-of
#:derivatives
#:dialects
#:domains
#:entries
#:etymologies
#:examples
#:first-mention
#:frequency
#:grammatical-features
#:homograph-number
#:id
#:inflection-id
#:inflection-of
#:kind
#:language
#:lemma
#:lexical-category
#:lexical-entries
#:match-string
#:match-type
#:normalized-frequency
#:normalized-lemma
#:notes
#:phonetic-notation
#:phonetic-spelling
#:pronunciations
#:region
#:regions
#:registers
#:score
#:sense-ids
#:senses
#:sentences
#:source
#:subsenses
#:synonyms
#:target-lang
#:text
#:tokens
#:translations
#:true-case
#:variant-forms
#:word
#:wordform)
;; toolkit.lisp
(:export
#:describe-tree))