denckring-en-data 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- denckring_en_data-0.1.0/.gitignore +39 -0
- denckring_en_data-0.1.0/LICENSE +202 -0
- denckring_en_data-0.1.0/LICENSE-CMUDICT +33 -0
- denckring_en_data-0.1.0/LICENSE-SCOWL +248 -0
- denckring_en_data-0.1.0/LICENSE-WORDNET +29 -0
- denckring_en_data-0.1.0/NOTICE +36 -0
- denckring_en_data-0.1.0/PKG-INFO +54 -0
- denckring_en_data-0.1.0/README.md +36 -0
- denckring_en_data-0.1.0/pyproject.toml +34 -0
- denckring_en_data-0.1.0/scripts/build_graded_words.py +217 -0
- denckring_en_data-0.1.0/scripts/build_lexicon.py +149 -0
- denckring_en_data-0.1.0/src/denckring_en_data/__init__.py +306 -0
- denckring_en_data-0.1.0/src/denckring_en_data/data/cmudict.dict +135166 -0
- denckring_en_data-0.1.0/src/denckring_en_data/data/glosses.txt.gz +0 -0
- denckring_en_data-0.1.0/src/denckring_en_data/data/graded_words.txt.gz +0 -0
- denckring_en_data-0.1.0/src/denckring_en_data/data/metadata.json +9 -0
- denckring_en_data-0.1.0/src/denckring_en_data/data/nouns.txt +56468 -0
- denckring_en_data-0.1.0/src/denckring_en_data/py.typed +0 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
.venv/
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.pyc
|
|
4
|
+
.pytest_cache/
|
|
5
|
+
.mypy_cache/
|
|
6
|
+
.ruff_cache/
|
|
7
|
+
.hypothesis/
|
|
8
|
+
dist/
|
|
9
|
+
*.egg-info/
|
|
10
|
+
dist/
|
|
11
|
+
|
|
12
|
+
# Generated docs and site build
|
|
13
|
+
docs/gallery/
|
|
14
|
+
docs/index.md
|
|
15
|
+
docs/contributing.md
|
|
16
|
+
docs/changelog.md
|
|
17
|
+
site/
|
|
18
|
+
|
|
19
|
+
# The explorer keeps its own environment
|
|
20
|
+
apps/explorer/.venv/
|
|
21
|
+
|
|
22
|
+
# Local secrets and paths for the explorer
|
|
23
|
+
apps/explorer/.env
|
|
24
|
+
|
|
25
|
+
# Claude Code session state, including worktrees
|
|
26
|
+
.claude/
|
|
27
|
+
|
|
28
|
+
# Subagent-driven-development scratch workspace (ledgers, briefs, review packages).
|
|
29
|
+
.superpowers/
|
|
30
|
+
|
|
31
|
+
# Node modules for the explorer's browser reproductions (apps/explorer/tests/browser).
|
|
32
|
+
# The manifest and lockfile beside them ARE tracked, so `npm ci --prefix apps/explorer`
|
|
33
|
+
# reinstalls exactly what those scripts were verified against; the 19MB tree is not.
|
|
34
|
+
apps/explorer/node_modules/
|
|
35
|
+
|
|
36
|
+
# pytest-cov writes this on every --cov run; the report is CI's, not the repo's.
|
|
37
|
+
.coverage
|
|
38
|
+
.coverage.*
|
|
39
|
+
htmlcov/
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
https://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
https://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Copyright (C) 1993-2015 Carnegie Mellon University. All rights reserved.
|
|
2
|
+
|
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
|
4
|
+
modification, are permitted provided that the following conditions
|
|
5
|
+
are met:
|
|
6
|
+
|
|
7
|
+
1. Redistributions of source code must retain the above copyright
|
|
8
|
+
notice, this list of conditions and the following disclaimer.
|
|
9
|
+
The contents of this file are deemed to be source code.
|
|
10
|
+
|
|
11
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
12
|
+
notice, this list of conditions and the following disclaimer in
|
|
13
|
+
the documentation and/or other materials provided with the
|
|
14
|
+
distribution.
|
|
15
|
+
|
|
16
|
+
This work was supported in part by funding from the Defense Advanced
|
|
17
|
+
Research Projects Agency, the Office of Naval Research and the National
|
|
18
|
+
Science Foundation of the United States of America, and by member
|
|
19
|
+
companies of the Carnegie Mellon Sphinx Speech Consortium. We acknowledge
|
|
20
|
+
the contributions of many volunteers to the expansion and improvement of
|
|
21
|
+
this dictionary.
|
|
22
|
+
|
|
23
|
+
THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND
|
|
24
|
+
ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
|
25
|
+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
26
|
+
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY
|
|
27
|
+
NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
28
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
29
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
30
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
31
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
32
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
33
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
The collective work is Copyright 2000-2018 by Kevin Atkinson as well
|
|
2
|
+
as any of the copyrights mentioned below:
|
|
3
|
+
|
|
4
|
+
Copyright 2000-2018 by Kevin Atkinson
|
|
5
|
+
|
|
6
|
+
Permission to use, copy, modify, distribute and sell these word
|
|
7
|
+
lists, the associated scripts, the output created from the scripts,
|
|
8
|
+
and its documentation for any purpose is hereby granted without fee,
|
|
9
|
+
provided that the above copyright notice appears in all copies and
|
|
10
|
+
that both that copyright notice and this permission notice appear in
|
|
11
|
+
supporting documentation. Kevin Atkinson makes no representations
|
|
12
|
+
about the suitability of this array for any purpose. It is provided
|
|
13
|
+
"as is" without express or implied warranty.
|
|
14
|
+
|
|
15
|
+
Alan Beale <biljir@pobox.com> also deserves special credit as he has,
|
|
16
|
+
in addition to providing the 12Dicts package and being a major
|
|
17
|
+
contributor to the ENABLE word list, given me an incredible amount of
|
|
18
|
+
feedback and created a number of special lists (those found in the
|
|
19
|
+
Supplement) in order to help improve the overall quality of SCOWL.
|
|
20
|
+
|
|
21
|
+
The 10 level includes the 1000 most common English words (according to
|
|
22
|
+
the Moby (TM) Words II [MWords] package), a subset of the 1000 most
|
|
23
|
+
common words on the Internet (again, according to Moby Words II), and
|
|
24
|
+
frequently class 16 from Brian Kelk's "UK English Wordlist
|
|
25
|
+
with Frequency Classification".
|
|
26
|
+
|
|
27
|
+
The MWords package was explicitly placed in the public domain:
|
|
28
|
+
|
|
29
|
+
The Moby lexicon project is complete and has
|
|
30
|
+
been place into the public domain. Use, sell,
|
|
31
|
+
rework, excerpt and use in any way on any platform.
|
|
32
|
+
|
|
33
|
+
Placing this material on internal or public servers is
|
|
34
|
+
also encouraged. The compiler is not aware of any
|
|
35
|
+
export restrictions so freely distribute world-wide.
|
|
36
|
+
|
|
37
|
+
You can verify the public domain status by contacting
|
|
38
|
+
|
|
39
|
+
Grady Ward
|
|
40
|
+
3449 Martha Ct.
|
|
41
|
+
Arcata, CA 95521-4884
|
|
42
|
+
|
|
43
|
+
grady@netcom.com
|
|
44
|
+
grady@northcoast.com
|
|
45
|
+
|
|
46
|
+
The "UK English Wordlist With Frequency Classification" is also in the
|
|
47
|
+
Public Domain:
|
|
48
|
+
|
|
49
|
+
Date: Sat, 08 Jul 2000 20:27:21 +0100
|
|
50
|
+
From: Brian Kelk <Brian.Kelk@cl.cam.ac.uk>
|
|
51
|
+
|
|
52
|
+
> I was wondering what the copyright status of your "UK English
|
|
53
|
+
> Wordlist With Frequency Classification" word list as it seems to
|
|
54
|
+
> be lacking any copyright notice.
|
|
55
|
+
|
|
56
|
+
There were many many sources in total, but any text marked
|
|
57
|
+
"copyright" was avoided. Locally-written documentation was one
|
|
58
|
+
source. An earlier version of the list resided in a filespace called
|
|
59
|
+
PUBLIC on the University mainframe, because it was considered public
|
|
60
|
+
domain.
|
|
61
|
+
|
|
62
|
+
Date: Tue, 11 Jul 2000 19:31:34 +0100
|
|
63
|
+
|
|
64
|
+
> So are you saying your word list is also in the public domain?
|
|
65
|
+
|
|
66
|
+
That is the intention.
|
|
67
|
+
|
|
68
|
+
The 20 level includes frequency classes 7-15 from Brian's word list.
|
|
69
|
+
|
|
70
|
+
The 35 level includes frequency classes 2-6 and words appearing in at
|
|
71
|
+
least 11 of 12 dictionaries as indicated in the 12Dicts package. All
|
|
72
|
+
words from the 12Dicts package have had likely inflections added via
|
|
73
|
+
my inflection database.
|
|
74
|
+
|
|
75
|
+
The 12Dicts package and Supplement is in the Public Domain.
|
|
76
|
+
|
|
77
|
+
The WordNet database, which was used in the creation of the
|
|
78
|
+
Inflections database, is under the following copyright:
|
|
79
|
+
|
|
80
|
+
This software and database is being provided to you, the LICENSEE,
|
|
81
|
+
by Princeton University under the following license. By obtaining,
|
|
82
|
+
using and/or copying this software and database, you agree that you
|
|
83
|
+
have read, understood, and will comply with these terms and
|
|
84
|
+
conditions.:
|
|
85
|
+
|
|
86
|
+
Permission to use, copy, modify and distribute this software and
|
|
87
|
+
database and its documentation for any purpose and without fee or
|
|
88
|
+
royalty is hereby granted, provided that you agree to comply with
|
|
89
|
+
the following copyright notice and statements, including the
|
|
90
|
+
disclaimer, and that the same appear on ALL copies of the software,
|
|
91
|
+
database and documentation, including modifications that you make
|
|
92
|
+
for internal use or for distribution.
|
|
93
|
+
|
|
94
|
+
WordNet 1.6 Copyright 1997 by Princeton University. All rights
|
|
95
|
+
reserved.
|
|
96
|
+
|
|
97
|
+
THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON
|
|
98
|
+
UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
|
99
|
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON
|
|
100
|
+
UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT-
|
|
101
|
+
ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE
|
|
102
|
+
LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT INFRINGE ANY
|
|
103
|
+
THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
|
|
104
|
+
|
|
105
|
+
The name of Princeton University or Princeton may not be used in
|
|
106
|
+
advertising or publicity pertaining to distribution of the software
|
|
107
|
+
and/or database. Title to copyright in this software, database and
|
|
108
|
+
any associated documentation shall at all times remain with
|
|
109
|
+
Princeton University and LICENSEE agrees to preserve same.
|
|
110
|
+
|
|
111
|
+
The 40 level includes words from Alan's 3esl list found in version 4.0
|
|
112
|
+
of his 12dicts package. Like his other stuff the 3esl list is also in the
|
|
113
|
+
public domain.
|
|
114
|
+
|
|
115
|
+
The 50 level includes Brian's frequency class 1, words appearing
|
|
116
|
+
in at least 5 of 12 of the dictionaries as indicated in the 12Dicts
|
|
117
|
+
package, and uppercase words in at least 4 of the previous 12
|
|
118
|
+
dictionaries. A decent number of proper names is also included: The
|
|
119
|
+
top 1000 male, female, and Last names from the 1990 Census report; a
|
|
120
|
+
list of names sent to me by Alan Beale; and a few names that I added
|
|
121
|
+
myself. Finally a small list of abbreviations not commonly found in
|
|
122
|
+
other word lists is included.
|
|
123
|
+
|
|
124
|
+
The name files form the Census report is a government document which I
|
|
125
|
+
don't think can be copyrighted.
|
|
126
|
+
|
|
127
|
+
The file special-jargon.50 uses common.lst and word.lst from the
|
|
128
|
+
"Unofficial Jargon File Word Lists" which is derived from "The Jargon
|
|
129
|
+
File". All of which is in the Public Domain. This file also contain
|
|
130
|
+
a few extra UNIX terms which are found in the file "unix-terms" in the
|
|
131
|
+
special/ directory.
|
|
132
|
+
|
|
133
|
+
The 55 level includes words from Alan's 2of4brif list found in version
|
|
134
|
+
4.0 of his 12dicts package. Like his other stuff the 2of4brif is also
|
|
135
|
+
in the public domain.
|
|
136
|
+
|
|
137
|
+
The 60 level includes all words appearing in at least 2 of the 12
|
|
138
|
+
dictionaries as indicated by the 12Dicts package.
|
|
139
|
+
|
|
140
|
+
The 70 level includes Brian's frequency class 0 and the 74,550 common
|
|
141
|
+
dictionary words from the MWords package. The common dictionary words,
|
|
142
|
+
like those from the 12Dicts package, have had all likely inflections
|
|
143
|
+
added. The 70 level also included the 5desk list from version 4.0 of
|
|
144
|
+
the 12Dics package which is in the public domain.
|
|
145
|
+
|
|
146
|
+
The 80 level includes the ENABLE word list, all the lists in the
|
|
147
|
+
ENABLE supplement package (except for ABLE), the "UK Advanced Cryptics
|
|
148
|
+
Dictionary" (UKACD), the list of signature words from the YAWL package,
|
|
149
|
+
and the 10,196 places list from the MWords package.
|
|
150
|
+
|
|
151
|
+
The ENABLE package, mainted by M\Cooper <thegrendel@theriver.com>,
|
|
152
|
+
is in the Public Domain:
|
|
153
|
+
|
|
154
|
+
The ENABLE master word list, WORD.LST, is herewith formally released
|
|
155
|
+
into the Public Domain. Anyone is free to use it or distribute it in
|
|
156
|
+
any manner they see fit. No fee or registration is required for its
|
|
157
|
+
use nor are "contributions" solicited (if you feel you absolutely
|
|
158
|
+
must contribute something for your own peace of mind, the authors of
|
|
159
|
+
the ENABLE list ask that you make a donation on their behalf to your
|
|
160
|
+
favorite charity). This word list is our gift to the Scrabble
|
|
161
|
+
community, as an alternate to "official" word lists. Game designers
|
|
162
|
+
may feel free to incorporate the WORD.LST into their games. Please
|
|
163
|
+
mention the source and credit us as originators of the list. Note
|
|
164
|
+
that if you, as a game designer, use the WORD.LST in your product,
|
|
165
|
+
you may still copyright and protect your product, but you may *not*
|
|
166
|
+
legally copyright or in any way restrict redistribution of the
|
|
167
|
+
WORD.LST portion of your product. This *may* under law restrict your
|
|
168
|
+
rights to restrict your users' rights, but that is only fair.
|
|
169
|
+
|
|
170
|
+
UKACD, by J Ross Beresford <ross@bryson.demon.co.uk>, is under the
|
|
171
|
+
following copyright:
|
|
172
|
+
|
|
173
|
+
Copyright (c) J Ross Beresford 1993-1999. All Rights Reserved.
|
|
174
|
+
|
|
175
|
+
The following restriction is placed on the use of this publication:
|
|
176
|
+
if The UK Advanced Cryptics Dictionary is used in a software package
|
|
177
|
+
or redistributed in any form, the copyright notice must be
|
|
178
|
+
prominently displayed and the text of this document must be included
|
|
179
|
+
verbatim.
|
|
180
|
+
|
|
181
|
+
There are no other restrictions: I would like to see the list
|
|
182
|
+
distributed as widely as possible.
|
|
183
|
+
|
|
184
|
+
The 95 level includes the 354,984 single words, 256,772 compound
|
|
185
|
+
words, 4,946 female names and the 3,897 male names, and 21,986 names
|
|
186
|
+
from the MWords package, ABLE.LST from the ENABLE Supplement, and some
|
|
187
|
+
additional words found in my part-of-speech database that were not
|
|
188
|
+
found anywhere else.
|
|
189
|
+
|
|
190
|
+
Accent information was taken from UKACD.
|
|
191
|
+
|
|
192
|
+
The VarCon package was used to create the American, British, Canadian,
|
|
193
|
+
and Australian word list. It is under the following copyright:
|
|
194
|
+
|
|
195
|
+
Copyright 2000-2016 by Kevin Atkinson
|
|
196
|
+
|
|
197
|
+
Permission to use, copy, modify, distribute and sell this array, the
|
|
198
|
+
associated software, and its documentation for any purpose is hereby
|
|
199
|
+
granted without fee, provided that the above copyright notice appears
|
|
200
|
+
in all copies and that both that copyright notice and this permission
|
|
201
|
+
notice appear in supporting documentation. Kevin Atkinson makes no
|
|
202
|
+
representations about the suitability of this array for any
|
|
203
|
+
purpose. It is provided "as is" without express or implied warranty.
|
|
204
|
+
|
|
205
|
+
Copyright 2016 by Benjamin Titze
|
|
206
|
+
|
|
207
|
+
Permission to use, copy, modify, distribute and sell this array, the
|
|
208
|
+
associated software, and its documentation for any purpose is hereby
|
|
209
|
+
granted without fee, provided that the above copyright notice appears
|
|
210
|
+
in all copies and that both that copyright notice and this permission
|
|
211
|
+
notice appear in supporting documentation. Benjamin Titze makes no
|
|
212
|
+
representations about the suitability of this array for any
|
|
213
|
+
purpose. It is provided "as is" without express or implied warranty.
|
|
214
|
+
|
|
215
|
+
Since the original words lists come from the Ispell distribution:
|
|
216
|
+
|
|
217
|
+
Copyright 1993, Geoff Kuenning, Granada Hills, CA
|
|
218
|
+
All rights reserved.
|
|
219
|
+
|
|
220
|
+
Redistribution and use in source and binary forms, with or without
|
|
221
|
+
modification, are permitted provided that the following conditions
|
|
222
|
+
are met:
|
|
223
|
+
|
|
224
|
+
1. Redistributions of source code must retain the above copyright
|
|
225
|
+
notice, this list of conditions and the following disclaimer.
|
|
226
|
+
2. Redistributions in binary form must reproduce the above copyright
|
|
227
|
+
notice, this list of conditions and the following disclaimer in the
|
|
228
|
+
documentation and/or other materials provided with the distribution.
|
|
229
|
+
3. All modifications to the source code must be clearly marked as
|
|
230
|
+
such. Binary redistributions based on modified source code
|
|
231
|
+
must be clearly marked as modified versions in the documentation
|
|
232
|
+
and/or other materials provided with the distribution.
|
|
233
|
+
(clause 4 removed with permission from Geoff Kuenning)
|
|
234
|
+
5. The name of Geoff Kuenning may not be used to endorse or promote
|
|
235
|
+
products derived from this software without specific prior
|
|
236
|
+
written permission.
|
|
237
|
+
|
|
238
|
+
THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS IS'' AND
|
|
239
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
240
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
241
|
+
ARE DISCLAIMED. IN NO EVENT SHALL GEOFF KUENNING OR CONTRIBUTORS BE LIABLE
|
|
242
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
243
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
244
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
245
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
246
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
247
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
248
|
+
SUCH DAMAGE.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Open English WordNet 2024 licence
|
|
2
|
+
==================================
|
|
3
|
+
|
|
4
|
+
This licence covers src/denckring_en_data/data/nouns.txt and
|
|
5
|
+
src/denckring_en_data/data/glosses.txt.gz, both derived from the Open English
|
|
6
|
+
WordNet (oewn:2024). It does not cover the CMU Pronouncing Dictionary in the
|
|
7
|
+
same package, which is BSD-2-Clause — see LICENSE-CMUDICT — nor the code,
|
|
8
|
+
which is MIT.
|
|
9
|
+
|
|
10
|
+
The Open English WordNet is a project of the Globalwordnet Association:
|
|
11
|
+
|
|
12
|
+
https://github.com/globalwordnet/english-wordnet
|
|
13
|
+
|
|
14
|
+
It is released under the Creative Commons Attribution 4.0 International
|
|
15
|
+
licence (CC BY 4.0):
|
|
16
|
+
|
|
17
|
+
https://creativecommons.org/licenses/by/4.0/
|
|
18
|
+
|
|
19
|
+
Attribution
|
|
20
|
+
-----------
|
|
21
|
+
|
|
22
|
+
Open English WordNet 2024, by the Globalwordnet Association and
|
|
23
|
+
contributors, is licensed under CC BY 4.0. Both vendored files in this
|
|
24
|
+
package (nouns.txt, glosses.txt.gz) are derived from it — see
|
|
25
|
+
scripts/build_lexicon.py for the extraction, and metadata.json beside the
|
|
26
|
+
data for the exact version and generation date.
|
|
27
|
+
|
|
28
|
+
Nothing in this package's own MIT licence extends to the data files
|
|
29
|
+
themselves; their terms are CC BY 4.0 as stated here.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
denckring-en-data
|
|
2
|
+
Copyright 2026 senzelden
|
|
3
|
+
|
|
4
|
+
The code in this distribution is licensed under the Apache License, Version 2.0.
|
|
5
|
+
See LICENSE.
|
|
6
|
+
|
|
7
|
+
The data in this distribution is not, and is redistributed under its own terms:
|
|
8
|
+
|
|
9
|
+
- src/denckring_en_data/data/cmudict.dict is the CMU Pronouncing Dictionary,
|
|
10
|
+
Copyright (C) 1993-2015 Carnegie Mellon University, under the BSD-2-Clause
|
|
11
|
+
terms reproduced in LICENSE-CMUDICT.
|
|
12
|
+
|
|
13
|
+
- src/denckring_en_data/data/nouns.txt and data/glosses.txt.gz are derived from
|
|
14
|
+
the Open English WordNet 2024 (oewn:2024), licensed CC BY 4.0 and reproduced in
|
|
15
|
+
LICENSE-WORDNET. Both files are modifications: nouns.txt is a filtered list of
|
|
16
|
+
single-word noun lemmas and glosses.txt.gz a compressed lemma-to-definitions
|
|
17
|
+
index, neither in OEWN's own format. scripts/build_lexicon.py is the derivation.
|
|
18
|
+
|
|
19
|
+
Open English WordNet, https://en-word.net/, CC BY 4.0
|
|
20
|
+
|
|
21
|
+
- src/denckring_en_data/data/graded_words.txt.gz is derived from SCOWL
|
|
22
|
+
2020.12.07, the collective work Copyright 2000-2018 Kevin Atkinson, under the
|
|
23
|
+
terms reproduced in LICENSE-SCOWL. That file is SCOWL's whole Copyright file
|
|
24
|
+
rather than an excerpt of the parts this build draws on, because Atkinson's
|
|
25
|
+
permission notice asks that both the copyright notice and the permission
|
|
26
|
+
notice appear in supporting documentation, and because a licence excerpted to
|
|
27
|
+
the sources drawn on today would need re-excerpting the next time the size
|
|
28
|
+
cap moves. UKACD, whose terms require its notice be reproduced verbatim
|
|
29
|
+
wherever it is redistributed, enters SCOWL at the 80 level and so is not
|
|
30
|
+
redistributed here at all.
|
|
31
|
+
graded_words.txt.gz is a modification: SCOWL's `english-words` and
|
|
32
|
+
`american-words` lists at sizes 10 through 60, reduced to one `word<TAB>size`
|
|
33
|
+
line per word and in none of SCOWL's own formats.
|
|
34
|
+
scripts/build_graded_words.py is the derivation.
|
|
35
|
+
|
|
36
|
+
SCOWL, http://wordlist.aspell.net/, see LICENSE-SCOWL
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: denckring-en-data
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: English pronunciation data for denckring: exact syllable counts and rhyme
|
|
5
|
+
Author-email: Dennis Senzel <dennis.senzel@posteo.com>
|
|
6
|
+
License-Expression: Apache-2.0 AND CC-BY-4.0 AND BSD-2-Clause AND HPND-sell-variant
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
License-File: LICENSE-CMUDICT
|
|
9
|
+
License-File: LICENSE-SCOWL
|
|
10
|
+
License-File: LICENSE-WORDNET
|
|
11
|
+
License-File: NOTICE
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: Topic :: Text Processing :: Linguistic
|
|
14
|
+
Classifier: Typing :: Typed
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Requires-Dist: denckring==0.1.0
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# denckring-en-data
|
|
20
|
+
|
|
21
|
+
English pronunciation data for [denckring](https://github.com/senzelden/denckring):
|
|
22
|
+
exact syllable counts, and the phoneme tails that rhyme checking will need.
|
|
23
|
+
|
|
24
|
+
```console
|
|
25
|
+
pip install denckring[en]
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Installing this package replaces the core English pack's spelling heuristic with
|
|
29
|
+
dictionary lookups. Nothing in the API changes — the same procedures simply answer more
|
|
30
|
+
accurately, and the `estimated_words` metric on every syllabic report drops to zero for
|
|
31
|
+
words the dictionary knows.
|
|
32
|
+
|
|
33
|
+
## Data
|
|
34
|
+
|
|
35
|
+
Three vendored sources, all redistributed rather than downloaded, so neither
|
|
36
|
+
installation nor use touches the network:
|
|
37
|
+
|
|
38
|
+
- The CMU Pronouncing Dictionary, 135,166 entries, under its BSD-2-Clause licence —
|
|
39
|
+
see `LICENSE-CMUDICT`.
|
|
40
|
+
- The Open English WordNet 2024, under its CC BY 4.0 licence — see `LICENSE-WORDNET`.
|
|
41
|
+
`nouns.txt` (56,468 single-word noun lemmas, in dictionary order) and
|
|
42
|
+
`glosses.txt.gz` (78,866 lemmas, 134,298 glosses across every part of speech) are
|
|
43
|
+
both derived from it. `metadata.json` beside the data records the exact version and
|
|
44
|
+
generation date; `scripts/build_lexicon.py` regenerates both files from OEWN alone.
|
|
45
|
+
- SCOWL 2020.12.07, under the terms in `LICENSE-SCOWL`. `graded_words.txt.gz` holds
|
|
46
|
+
77,078 words, each with the SCOWL size band it first appears at, built from the
|
|
47
|
+
`english-words` and `american-words` lists at sizes 10 through 60 — 60 being the
|
|
48
|
+
largest size SCOWL's own documentation is confident carries no misspellings. The
|
|
49
|
+
band is the point: `room` at 10 and `tinsel` at 35 are equally words, and only one
|
|
50
|
+
of them is a common one, which is what a word list built for membership alone
|
|
51
|
+
cannot say. `scripts/build_graded_words.py` regenerates it.
|
|
52
|
+
|
|
53
|
+
The code in this package is Apache-2.0, like denckring itself. The data is not — see
|
|
54
|
+
`NOTICE` for which file carries which terms.
|