add MWThesaurus

This commit is contained in:
julius 2022-07-08 10:43:24 +00:00
parent e2cd9c7e61
commit 8d4c2a14b9
489 changed files with 1100341 additions and 46197 deletions

85
MW_thesaurus.py Normal file
View File

@ -0,0 +1,85 @@
from itertools import chain
from dict_dl import Queue, WordParser, cw, oft, ot, uq, rb, uqall
class MWThesaurusParser(WordParser):
def __init__(self, word):
url_prefix = "https://www.merriam-webster.com/thesaurus/"
super().__init__(word, url_prefix)
@property
def thes(self):
thes = {}
for i in range(1, 10):
for entry in self.root.findall(f".//div[@id='thesaurus-entry-{i}']"):
for se in chain(
entry.findall(".//div[@class='sb no-sn']"),
entry.findall(".//div[@class='sb has-num']"),
):
for e in se.findall(".//span[@class='dt']"):
examples = [ot(li) for li in e.findall(".//li")]
[e.remove(ul) for ul in e.findall(".//ul")]
d = ot(e)
thes[d] = {"examples": examples}
thes[d]["synonyms"] = [
ot(li)
for li in se.findall(
".//span[@class='thes-list syn-list']/div[@class='thes-list-content synonyms_list']//li//a"
)
]
thes[d]["related"] = [
ot(li)
for li in se.findall(
".//span[@class='thes-list rel-list']/div[@class='thes-list-content synonyms_list']//li//a"
)
]
thes[d]["near antonyms"] = [
ot(li)
for li in se.findall(
".//span[@class='thes-list near-list']/div[@class='thes-list-content synonyms_list']//li//a"
)
]
thes[d]["antonyms"] = [
ot(li)
for li in se.findall(
".//span[@class='thes-list ant-list']/div[@class='thes-list-content synonyms_list']//li//a"
)
]
return thes
@property
def type(self):
types = set()
for e in self.root.findall(
".//div[@class='row entry-header thesaurus']//span[@class='fl']"
):
types.add(rb(ot(e), "(", ")"))
return sorted(types)
@property
def neighbours(self):
neighbours = set()
for e in self.root.findall(".//a"):
if "href" in e.attrib and e.attrib["href"].startswith("/thesaurus/"):
link = e.attrib["href"].split("/")[-1].split("#")[0].split("?")[0]
neighbours.add(uq(link))
return neighbours
def todict(self):
assert (
self.type or self.thes
), f"{self.time} {self.word}: type or definitions came back empty..."
return uqall({self.word: self.thes | {"type": self.type}})
# w = MWThesaurusParser("coffining")
# print(w.todict())
# exit()
q = Queue(MWThesaurusParser, "en_MW_thesaurus/", "_mwt.json", prefix_length=2)
q.loadDB()
while True:
q.add_word()

View File

@ -1,14 +1,19 @@
# import matplotlib.pyplot as plt # import matplotlib.pyplot as plt
import numpy as np
# from PIL import Image # from PIL import Image
# from wordcloud import STOPWORDS, WordCloud # from wordcloud import STOPWORDS, WordCloud
from dict_dl import Dictionary from dict_dl import Dictionary, uq, uqall
# d = Dictionary("en_merriam_webster/", "_mw.json")
d = Dictionary("en_merriam_webster/", "_mw.json") d = Dictionary("en_MW_thesaurus/", "_mwt.json")
# d = Dictionary("de_duden/", "_duden.json") # d = Dictionary("de_duden/", "_duden.json")
print(f"{d.readtime:.06f}") print(f"{d.readtime:.06f}")
print(len(d))
d_before = d.copy()
for k in list(d.keys()):
d[uq(k)] = uqall(d.pop(k))
print(len(d))
print(d.keys() & d_before.keys())
exit()
# older than date # older than date
# old = {k for k,v in d.items() if int(v["time_of_retrieval"][:8]) < 20220705} # old = {k for k,v in d.items() if int(v["time_of_retrieval"][:8]) < 20220705}
# with open(f"{d.dir_prefix}redo", "at") as f: # with open(f"{d.dir_prefix}redo", "at") as f:
@ -16,9 +21,14 @@ print(f"{d.readtime:.06f}")
# print(len(old)) # print(len(old))
# new synonym discussion # new synonym discussion
new = {k for k,v in d.items() if "synonym_discussion" in v} new = {k for k, v in d.items() if not "synonym_discussion" in v}
print(len(new)/len(d)) with open(f"{d.dir_prefix}redo", "at") as f:
f.write("\n".join(list(new)))
print(len(new) / len(d))
exit() exit()
def grey_color_func( def grey_color_func(
word, font_size, position, orientation, random_state=None, **kwargs word, font_size, position, orientation, random_state=None, **kwargs
): ):

View File

@ -1,4 +1,45 @@
{ {
"_Sibirien":{
"definitions":{
"bezeichnet in Verbindung mit von geografischen Eigennamen abgeleiteten Adjektiven auf -isch ein abgelegenes, kaltes, in bestimmter Hinsicht als unwirtlich empfundenes Gebiet":[
"Badisch-Sibirien, D\u00e4nisch-Sibirien, Hessisch-Sibirien"
]
},
"history_and_etymology":[
"scherzhafte Bildung nach Namen wie Britisch-Kolumbien, Spanisch-Guinea"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-234752",
"type":"Suffix",
"wendungen":[]
},
"_ade":{
"definitions":{
"bezeichnet in Bildungen mit Substantiven (meist Namen) eine Handlung, eine T\u00e4tigkeit, eine k\u00fcnstlerische Darbietung, die in der bestimmten Art von jemandem ausgef\u00fchrt wird":[
"Chaplinade, Harlekinade, Valentinade"
]
},
"history_and_etymology":[
"franz\u00f6sisch"
],
"pronounciation":"a\u02d0d\u0259",
"synonyms":[],
"time_of_retrieval":"20220707-213738",
"type":"Suffix",
"wendungen":[]
},
"_aeugig":{
"definitions":{
"in Zusammenbildungen, z. B. bernstein-, mehr-, viel-, zwei\u00e4ugig":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-182715",
"type":"Suffix",
"wendungen":[]
},
"_and":{ "_and":{
"definitions":{ "definitions":{
"Bei der Bildung von Personenbezeichnungen bestehen oft Zweifel dar\u00fcber, ob sie mit dem Suffix ":[], "Bei der Bildung von Personenbezeichnungen bestehen oft Zweifel dar\u00fcber, ob sie mit dem Suffix ":[],
@ -58,6 +99,51 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_bereit":{
"definitions":{
"dr\u00fcckt in Bildungen mit Substantiven aus, dass die beschriebene Person den Willen zu etwas hat":[
"dialog-, leistungs-, risikobereit"
],
"dr\u00fcckt in Bildungen mit Substantiven aus, dass die beschriebene Person oder Sache zu etwas bereit, ger\u00fcstet ist":[
"funktions-, reise-, sprungbereit"
],
"dr\u00fcckt in Bildungen mit Verben (Verbst\u00e4mmen) aus, dass etwas sofort getan werden kann":[
"abruf-, fahr-, startbereit"
]
},
"history_and_etymology":null,
"pronounciation":"b\u0259ra\u026a\u032ft",
"synonyms":[],
"time_of_retrieval":"20220707-212828",
"type":"Suffix",
"wendungen":[]
},
"_biose":{
"definitions":{
"Wortbildungselement mit der Bedeutung \u201eLebensweise\u201c, z. B. Anabiose, Symbiose":[]
},
"history_and_etymology":[
"aus griechisch b\u00ed\u014dsis \u201eLebensweise\u201c"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-205909",
"type":"Suffix",
"wendungen":[]
},
"_bolzen":{
"definitions":{
"bezeichnet in Bildungen mit Substantiven eine Person, die etwas in hohem Ma\u00dfe hat":[
"Charme-, Intelligenz-, Temperamentsbolzen"
]
},
"history_and_etymology":null,
"pronounciation":"b\u0254ltsn\u0329",
"synonyms":[],
"time_of_retrieval":"20220708-014528",
"type":"Suffix",
"wendungen":[]
},
"_denken":{ "_denken":{
"definitions":{ "definitions":{
"bezeichnet in Bildungen mit Substantiven ein Denken von jemandem":[ "bezeichnet in Bildungen mit Substantiven ein Denken von jemandem":[
@ -77,6 +163,62 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_ei":{
"definitions":{
"dient zur Bildung einer Ortsangabe":[
"B\u00e4ckerei",
"Fleischerei",
"W\u00e4scherei"
]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-201029",
"type":"Suffix",
"wendungen":[]
},
"_ergie":{
"definitions":{
"Wortbildungselement mit der Bedeutung \u201ewirksame Funktion, wirksamer Bestandteil\u201c, z. B. Energie":[]
},
"history_and_etymology":[
"aus griechisch -erg\u00eda zu \u00e9rgon \u201eArbeit, Werk\u201c"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-000146",
"type":"Suffix",
"wendungen":[]
},
"_eur":{
"definitions":{
"bezeichnet in Bildungen mit Substantiven oder Verben (Verbst\u00e4mmen) eine m\u00e4nnliche Person, die etwas tut, die mit etwas in irgendeiner Weise zu tun hat":[
"Boykotteur, Flaneur, Marodeur, Rechercheur"
]
},
"history_and_etymology":[
"franz\u00f6sisch -eur"
],
"pronounciation":"\u2026\u00f8\u02d0\u0250\u032f",
"synonyms":[],
"time_of_retrieval":"20220708-054644",
"type":"Suffix",
"wendungen":[]
},
"_fabrik":{
"definitions":{
"bezeichnet in Bildungen mit Substantiven oder Verben (Verbst\u00e4mmen) einen Ort, eine Einrichtung, wo flie\u00dfbandm\u00e4\u00dfig oder in hohem Ma\u00df etwas getan wird, wo etwas in gro\u00dfen Mengen hergestellt wird oder wo eine Dienstleistung o. \u00c4. unpers\u00f6nlich, mechanisch und ohne individuelle Betreuung erbracht wird":[
"Denk-, Hit-, Gesundheitsfabrik"
]
},
"history_and_etymology":null,
"pronounciation":"fabri\u02d0k",
"synonyms":[],
"time_of_retrieval":"20220707-172842",
"type":"Suffix",
"wendungen":[]
},
"_fach":{ "_fach":{
"definitions":{ "definitions":{
"in Zusammenbildungen, z.\u00a0B. achtfach (mit Ziffer: 8-fach oder 8fach), mehrfach":[] "in Zusammenbildungen, z.\u00a0B. achtfach (mit Ziffer: 8-fach oder 8fach), mehrfach":[]
@ -107,6 +249,85 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_feindlich":{
"definitions":{
"dr\u00fcckt in Bildungen mit Substantiven aus, dass die beschriebene Person oder Sache jemanden, etwas ablehnt, gegen jemanden, etwas eingestellt ist":[
"fremden-, regierungs-, systemfeindlich"
],
"dr\u00fcckt in Bildungen mit Substantiven aus, dass die beschriebene Person oder Sache ung\u00fcnstig f\u00fcr jemanden, etwas ist, sich f\u00fcr jemanden, etwas nachteilig auswirkt, etwas behindert, hemmt":[
"arbeitnehmer-, kommunikations-, verbraucherfeindlich"
]
},
"history_and_etymology":null,
"pronounciation":"fa\u026a\u032fntl\u026a\u00e7",
"synonyms":[],
"time_of_retrieval":"20220708-102831",
"type":"Suffix",
"wendungen":[]
},
"_feldig":{
"definitions":{},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-021057",
"type":"Suffix",
"wendungen":[]
},
"_fluegler":{
"definitions":{
"in Zusammenbildungen, z. B. Deckfl\u00fcgler (Insekt mit Deckfl\u00fcgeln)":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-011651",
"type":"Suffix",
"wendungen":[]
},
"_flueglig":{
"definitions":{
"in Zusammenbildungen, z. B. zweifl\u00fcgelig (mit zwei Fl\u00fcgeln 2a [versehen])":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-043107",
"type":"Suffix",
"wendungen":[]
},
"_flut":{
"definitions":{
"dr\u00fcckt in Bildungen mit Substantiven aus, dass [pl\u00f6tzlich] etwas \u2013 seltener jemand \u2013 unerwartet in gro\u00dfer Masse auftaucht, auftritt":[
"Auftrags-, Bilder-, Informationsflut"
]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-005118",
"type":"Suffix",
"wendungen":[]
},
"_fremd":{
"definitions":{
"dr\u00fcckt in Bildungen mit Substantiven aus, dass die beschriebene Person oder Sache an einem bestimmten Ort o. \u00c4. nicht zu Hause ist":[
"orts-, revierfremd"
],
"dr\u00fcckt in Bildungen mit Substantiven aus, dass die beschriebene Person oder Sache nicht zu etwas geh\u00f6rt":[
"betriebs-, k\u00f6rperfremd"
],
"dr\u00fcckt in Bildungen mit Substantiven aus, dass die beschriebene Person sich in etwas nicht auskennt, dass die beschriebene Sache mit etwas nichts zu tun hat":[
"branchen-, praxisfremd"
]
},
"history_and_etymology":null,
"pronounciation":"fr\u025bmt",
"synonyms":[],
"time_of_retrieval":"20220708-051148",
"type":"Suffix",
"wendungen":[]
},
"_gen":{ "_gen":{
"definitions":{ "definitions":{
"dr\u00fcckt in Bildungen mit Substantiven meist griechischen Ursprungs oder deren Ableitungen aus, dass etwas der Ausl\u00f6ser, der Ausgangspunkt ist":[ "dr\u00fcckt in Bildungen mit Substantiven meist griechischen Ursprungs oder deren Ableitungen aus, dass etwas der Ausl\u00f6ser, der Ausgangspunkt ist":[
@ -131,6 +352,38 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_glaeubig":{
"definitions":{
"dr\u00fcckt in Bildungen mit Substantiven aus, dass die beschriebene Person, Auffassung o. \u00c4. durch eine sehr starke [Heils-]Erwartung an etwas gekennzeichnet ist":[
"jugend-, markt-, vernunftgl\u00e4ubig"
]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-051740",
"type":"Suffix",
"wendungen":[]
},
"_graf":{
"definitions":{
"In bestimmten Situationen wird die maskuline Form (z. B. Arzt , Mieter , B\u00e4cker ) gebraucht, um damit Personen aller Geschlechter zu bezeichnen. Bei dieser Verwendung ist aber sprachlich nicht immer eindeutig, ob nur m\u00e4nnliche Personen gemeint sind oder auch andere. Deswegen wird seit einiger Zeit \u00fcber sprachliche Alternativen diskutiert.":[],
"Wortbildungselement mit der Bedeutung \u201eSchreiber, Beschreibender; Schrift, Geschriebenes\u201c":[
"Autograf",
"Biograf",
"Geograf",
"Seismograf"
]
},
"history_and_etymology":[
"zu griechisch gr\u00e1phein = schreiben"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-171420",
"type":"Suffix",
"wendungen":[]
},
"_gramm":{ "_gramm":{
"definitions":{ "definitions":{
"in Zusammenbildungen, z.\u00a0B. Autogramm, Elektrokardiogramm":[] "in Zusammenbildungen, z.\u00a0B. Autogramm, Elektrokardiogramm":[]
@ -176,6 +429,34 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_huber":{
"definitions":{
"kennzeichnet in Bildungen mit Substantiven \u2013 seltener mit Adjektiven \u2013 eine m\u00e4nnliche Person, die sehr allgemein durch etwas charakterisiert ist":[
"Fakten-, Gschaftl-, Zahlenhuber"
]
},
"history_and_etymology":[
"nach den h\u00e4ufigen Familiennamen Huber, \u2026huber"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-183527",
"type":"Suffix",
"wendungen":[]
},
"_huberei":{
"definitions":{
"dr\u00fcckt in Bildungen mit Substantiven aus, dass eine T\u00e4tigkeit o. \u00c4. \u00fcbertrieben oder engstirnig auf etwas gerichtet ist, auf etwas abzielt":[
"Angst-, Fakten-, Parteihuberei"
]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-175652",
"type":"Suffix",
"wendungen":[]
},
"_i":{ "_i":{
"definitions":{ "definitions":{
"kennzeichnet eine substantivische Abk\u00fcrzung, die durch Weglassen der auf -i folgenden Buchstaben entstanden ist":[ "kennzeichnet eine substantivische Abk\u00fcrzung, die durch Weglassen der auf -i folgenden Buchstaben entstanden ist":[
@ -198,6 +479,48 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_imperium":{
"definitions":{
"kennzeichnet in Bildungen mit Substantiven eine Unternehmensgruppe, ein Unternehmen als gro\u00df, weit ausgebaut und m\u00e4chtig":[
"Familien-, Medien-, \u00d6limperium"
]
},
"history_and_etymology":null,
"pronounciation":"\u026amperi\u028am",
"synonyms":[],
"time_of_retrieval":"20220708-085418",
"type":"Suffix",
"wendungen":[]
},
"_intensiv":{
"definitions":{
"dr\u00fcckt in Bildungen mit Substantiven aus, dass eine Sache \u2013 seltener eine Person \u2013 etwas in starkem Ma\u00dfe hat, zeigt, aufweist":[
"gef\u00fchls-, geschmacks-, l\u00e4rmintensiv"
],
"dr\u00fcckt in Bildungen mit Substantiven \u2013 selten mit Verben (Verbst\u00e4mmen) \u2013 aus, dass die beschriebene Person oder Sache etwas in starkem Ma\u00dfe erfordert":[
"betreuungs-, bewegungs-, zeitintensiv"
]
},
"history_and_etymology":null,
"pronounciation":"\u026ant\u025bnzi\u02d0f",
"synonyms":[],
"time_of_retrieval":"20220707-183502",
"type":"Suffix",
"wendungen":[]
},
"_intern":{
"definitions":{
"dr\u00fcckt in Bildungen mit Substantiven aus, dass die beschriebene Sache innerhalb von etwas (einer Gruppe, Firma o. \u00c4.) besteht, stattfindet":[
"fach-, gewerkschafts-, partei-, verbandsintern"
]
},
"history_and_etymology":null,
"pronounciation":"\u026ant\u025brn",
"synonyms":[],
"time_of_retrieval":"20220708-051854",
"type":"Suffix",
"wendungen":[]
},
"_isieren":{ "_isieren":{
"definitions":{ "definitions":{
"dr\u00fcckt in Bildungen mit Substantiven oder Adjektiven aus, dass eine Person oder Sache in einen bestimmten Zustand gebracht wird, zu etwas gemacht wird":[ "dr\u00fcckt in Bildungen mit Substantiven oder Adjektiven aus, dass eine Person oder Sache in einen bestimmten Zustand gebracht wird, zu etwas gemacht wird":[
@ -216,6 +539,20 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_iv":{
"definitions":{
"kennzeichnet in Bildungen mit Substantiven \u2013 seltener mit Verben (Verbst\u00e4mmen) auf -ieren \u2013 eine Eigenschaft, Beschaffenheit oder eine F\u00e4higkeit zu etwas":[
"expansiv, impulsiv, produktiv",
"\u2329mit -at-:\u232a manipulativ, repr\u00e4sentativ"
]
},
"history_and_etymology":null,
"pronounciation":"i\u02d0f",
"synonyms":[],
"time_of_retrieval":"20220708-033957",
"type":"Suffix",
"wendungen":[]
},
"_kratie":{ "_kratie":{
"definitions":{ "definitions":{
"kennzeichnet eine bestimmte Herrschaftsform oder Verhaltensweise":[ "kennzeichnet eine bestimmte Herrschaftsform oder Verhaltensweise":[
@ -277,6 +614,28 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_linig":{
"definitions":{},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-065031",
"type":"Suffix",
"wendungen":[]
},
"_lith":{
"definitions":{
"in Zusammenbildungen, z. B. Megalith, Monolith":[]
},
"history_and_etymology":[
"griechisch l\u00edthos = Stein"
],
"pronounciation":"\u2026\u02c8l\u026at",
"synonyms":[],
"time_of_retrieval":"20220707-224909",
"type":"Suffix",
"wendungen":[]
},
"_logie":{ "_logie":{
"definitions":{ "definitions":{
"\n":[] "\n":[]
@ -291,6 +650,33 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_mache":{
"definitions":{
"dr\u00fcckt in Bildungen mit Substantiven aus, dass etwas mit unlauteren Mitteln hervorgerufen, herbeigef\u00fchrt wird, dass etwas auf unredliche Art beeinflusst wird":[
"Meinungs-, Panik-, Sensationsmache"
]
},
"history_and_etymology":null,
"pronounciation":"max\u0259",
"synonyms":[],
"time_of_retrieval":"20220708-004905",
"type":"Suffix",
"wendungen":[]
},
"_malig":{
"definitions":{
"in Zusammenbildungen, z. B. achtmalig (acht Male stattfindend, geschehend, wiederkehrend), einmalig (nur ein [einziges] Mal vorkommend)":[]
},
"history_and_etymology":[
"zu",
"Mal"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-060515",
"type":"Suffix",
"wendungen":[]
},
"_maszen":{ "_maszen":{
"definitions":{ "definitions":{
"wird mit 2.\u00a0Partizipien und dem Fugenzeichen -er- zur Bildung von Adverbien verwendet/was\u00a0\u2026 ist, wird; wie allgemein\u00a0\u2026":[ "wird mit 2.\u00a0Partizipien und dem Fugenzeichen -er- zur Bildung von Adverbien verwendet/was\u00a0\u2026 ist, wird; wie allgemein\u00a0\u2026":[
@ -305,6 +691,41 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_mensch":{
"definitions":{
"kennzeichnet in Bildungen mit Substantiven \u2013 seltener mit W\u00f6rtern anderer Wortart \u2013 eine Person, die sehr allgemein durch etwas charakterisiert ist oder beruflich mit etwas zu tun hat":[
"Karriere-, Nacht-, Zeitungsmensch"
]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-063811",
"type":"Suffix",
"wendungen":[]
},
"_mogul":{
"definitions":{
"kennzeichnet in Bildungen mit Substantiven jemanden als (besonders in wirtschaftlicher Hinsicht) sehr m\u00e4chtig, einflussreich auf einem bestimmten Gebiet":[
"Film-, Immobilien-, Medienmogul"
]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-173301",
"type":"Suffix",
"wendungen":[]
},
"_namig":{
"definitions":{},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-203305",
"type":"Suffix",
"wendungen":[]
},
"_naus":{ "_naus":{
"definitions":{ "definitions":{
"\n":[] "\n":[]
@ -319,6 +740,61 @@
"type":"Adverb", "type":"Adverb",
"wendungen":[] "wendungen":[]
}, },
"_oid":{
"definitions":{
"bezeichnet in Bildungen mit Substantiven einen K\u00f6rper, eine Form, ein Gebilde o. \u00c4., das mit etwas vergleichbar, einer Sache \u00e4hnlich ist":[
"Kristalloid, Metalloid, Pr\u00e4fixoid"
],
"dr\u00fcckt in Bildungen mit Substantiven oder Adjektiven aus, dass die beschriebene Person oder Sache vergleichbar mit etwas ist, jemandem, etwas \u00e4hnlich ist":[
"anarchoid, faschistoid, humanoid"
]
},
"history_and_etymology":[
"zu griechisch -oied\u1e17s = \u00e4hnlich"
],
"pronounciation":"oi\u02d0t",
"synonyms":[],
"time_of_retrieval":"20220708-081312",
"type":"Suffix",
"wendungen":[]
},
"_omanin":{
"definitions":{
"-manin":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-053257",
"type":"Suffix",
"wendungen":[]
},
"_orientiert":{
"definitions":{
"dr\u00fcckt in Bildungen mit Substantiven \u2013 seltener mit Adjektiven oder Adverbien \u2013 aus, dass die beschriebene Person oder Sache auf etwas ausgerichtet, abgestellt ist":[
"export-, links-, praxis-, zukunftsorientiert"
]
},
"history_and_etymology":null,
"pronounciation":"ori\u025bnti\u02d0\u0250\u032ft",
"synonyms":[],
"time_of_retrieval":"20220707-184045",
"type":"Suffix",
"wendungen":[]
},
"_papst":{
"definitions":{
"kennzeichnet in Bildungen mit Substantiven \u2013 seltener mit Verben \u2013 eine m\u00e4nnliche Person als f\u00fchrend, richtungweisend, als h\u00f6chste Autorit\u00e4t auf einem bestimmten Gebiet":[
"Kritiker-, Literatur-, Mode-, Abnehmpapst"
]
},
"history_and_etymology":null,
"pronounciation":"pa\u02d0pst",
"synonyms":[],
"time_of_retrieval":"20220708-061130",
"type":"Suffix",
"wendungen":[]
},
"_path":{ "_path":{
"definitions":{ "definitions":{
"kennzeichnet jemanden als Vertreter, Anh\u00e4nger einer medizinischen Schule, Krankheitslehre oder als Facharzt auf diesem Gebiet":[ "kennzeichnet jemanden als Vertreter, Anh\u00e4nger einer medizinischen Schule, Krankheitslehre oder als Facharzt auf diesem Gebiet":[
@ -340,6 +816,39 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_polig":{
"definitions":{
"in Zusammenbildungen, z. B. zwei-, dreipolig (zwei, drei Pole 2b aufweisend; mit Ziffer: 2-polig, 3-polig), mehrpolig":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-190856",
"type":"Suffix",
"wendungen":[]
},
"_propellerig":{
"definitions":{
"in Zusammenbildungen, z. B. vierpropell[e]rig (mit vier Propellern ausgestattet; mit Ziffer: 4-propell[e]rig)":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-031312",
"type":"Suffix",
"wendungen":[]
},
"_prozentig":{
"definitions":{
"in Zusammenbildungen, z. B. f\u00fcnfprozentig (f\u00fcnf Prozent von etwas enthaltend; mit Ziffer: 5-prozentig oder 5%ig), hochprozentig (einen hohen Prozentsatz von etwas enthaltend)":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-000421",
"type":"Suffix",
"wendungen":[]
},
"_sam":{ "_sam":{
"definitions":{ "definitions":{
"<verneint in Verbindungen mit un->":[ "<verneint in Verbindungen mit un->":[
@ -365,6 +874,33 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_schichtig":{
"definitions":{
"in Zusammenbildungen, z. B. dreischichtig, mehrschichtig":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-002444",
"type":"Suffix",
"wendungen":[]
},
"_schiene":{
"definitions":{
"bezeichnet in Bildungen mit Substantiven ein Programm, Programmschema":[
"Montags-, Musik-, Unterhaltungsschiene"
],
"bezeichnet in Bildungen mit Substantiven einen vorgegebenen Weg, eine Bahn, einen Kurs in Bezug auf jemanden, etwas":[
"Erfolgs-, Partei-, Vertriebsschiene"
]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-040538",
"type":"Suffix",
"wendungen":[]
},
"_seits":{ "_seits":{
"definitions":{ "definitions":{
"bezeichnet in Bildungen mit Substantiven, seltener mit Adjektiven + -er-, den Ort, die Stelle/an, auf der Seite von":[ "bezeichnet in Bildungen mit Substantiven, seltener mit Adjektiven + -er-, den Ort, die Stelle/an, auf der Seite von":[
@ -386,6 +922,39 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_spaenner":{
"definitions":{
"in Zusammenbildungen, z. B. Zweisp\u00e4nner (mit zwei Zugtieren bespanntes Fahrzeug)":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-174657",
"type":"Suffix",
"wendungen":[]
},
"_spaennig":{
"definitions":{
"in Zusammenbildungen, z. B. zweisp\u00e4nnig ([von Fuhrwerken] mit zwei Zugtieren bespannt)":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-220737",
"type":"Suffix",
"wendungen":[]
},
"_streifig":{
"definitions":{
"in Zusammenbildungen, z. B. zweistreifig (zwei Fahrstreifen aufweisend)":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-055128",
"type":"Suffix",
"wendungen":[]
},
"_taegig":{ "_taegig":{
"definitions":{ "definitions":{
"in Zusammenbildungen, z. B. achtt\u00e4gig (acht Tage dauernd), mehrt\u00e4gig (mehrere Tage dauernd)":[] "in Zusammenbildungen, z. B. achtt\u00e4gig (acht Tage dauernd), mehrt\u00e4gig (mehrere Tage dauernd)":[]
@ -397,6 +966,71 @@
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
}, },
"_taeter":{
"definitions":{
"kennzeichnet in Bildungen mit Substantiven \u2013 seltener mit Adjektiven oder Adverbien \u2013 eine m\u00e4nnliche Person, die eine Straftat begangen hat, wobei T\u00e4ter oder Tat n\u00e4her charakterisiert sind":[
"Einzelt\u00e4ter, Individualt\u00e4ter, Intelligenzt\u00e4ter, Mehrfacht\u00e4ter, Nachahmungst\u00e4ter"
]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-084605",
"type":"Suffix",
"wendungen":[]
},
"_tante":{
"definitions":{
"kennzeichnet in Bildungen mit Substantiven eine weibliche Person, die sehr allgemein durch etwas charakterisiert ist":[
"Bastel-, Briefkasten-, \u00d6ko-, Schlagertante"
]
},
"history_and_etymology":[
"zu",
"Tante (2b)"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-054108",
"type":"Suffix",
"wendungen":[]
},
"_traegerin":{
"definitions":{
"weibliche Form zu -tr\u00e4ger":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-071726",
"type":"Suffix",
"wendungen":[]
},
"_ung":{
"definitions":{},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-200905",
"type":"Suffix",
"wendungen":[]
},
"_verdaechtig":{
"definitions":{
"dr\u00fcckt in Bildungen mit Substantiven aus, dass bei, von der beschriebenen Person oder Sache etwas vermutet wird oder bef\u00fcrchtet werden muss":[
"abseits-, plagiat-, putschverd\u00e4chtig"
],
"dr\u00fcckt in Bildungen mit Substantiven aus, dass die beschriebene Person oder Sache gute Aussichten hat, etwas zu werden oder zu bekommen":[
"bestseller-, preis-, rekordverd\u00e4chtig"
]
},
"history_and_etymology":null,
"pronounciation":"f\u025b\u0250\u032fd\u025b\u00e7t\u026a\u00e7",
"synonyms":[],
"time_of_retrieval":"20220707-191656",
"type":"Suffix",
"wendungen":[]
},
"_verhalten":{ "_verhalten":{
"definitions":{ "definitions":{
"bezeichnet in Bildungen mit Substantiven das Verhalten von jemandem":[ "bezeichnet in Bildungen mit Substantiven das Verhalten von jemandem":[
@ -446,5 +1080,65 @@
"time_of_retrieval":"20220706-183846", "time_of_retrieval":"20220706-183846",
"type":"Suffix", "type":"Suffix",
"wendungen":[] "wendungen":[]
},
"_weise":{
"definitions":{
"dr\u00fcckt in Bildungen mit ersten Partizipien und dem Fugenzeichen -er- aus, dass etwas (ein Tun) das Mittel oder der Begleitumstand ist; durch \u2026, bei \u2026, mit \u2026":[
"lesender-, schwimmender-, sitzenderweise"
],
"wird mit Adjektiven oder Partizipien und dem Fugenzeichen -er- zur Bildung von Adverbien verwendet; was \u2026 ist, wie es \u2026 ist":[
"h\u00f6flicher-, knutschender-, realistischerweise"
],
"wird mit Substantiven zur Bildung von Adverbien verwendet, die dann eine Ma\u00df- oder Mengeneinheit ausdr\u00fccken; in [jeweils] \u2026, nach \u2026":[
"familien-, l\u00f6ffel-, zentimeterweise"
],
"wird mit Substantiven zur Bildung von Adverbien verwendet; in Form von \u2026, als \u2026":[
"ausnahms-, besuchs-, versuchsweise"
],
"wird mit Verben (Verbst\u00e4mmen) zur Bildung von Adverbien verwendet; in Form von \u2026, zum \u2026":[
"klecker-, leih-, mietweise"
]
},
"history_and_etymology":null,
"pronounciation":"va\u026a\u032fz\u0259",
"synonyms":[],
"time_of_retrieval":"20220708-082432",
"type":"Suffix",
"wendungen":[]
},
"_widrig":{
"definitions":{
"dr\u00fcckt in Bildungen mit Substantiven \u2013 selten mit Adjektiven \u2013 aus, dass die beschriebene Person oder Sache gegen etwas gerichtet ist, verst\u00f6\u00dft, in Widerspruch zu etwas steht":[
"befehls-, gesetz[es]-, rechts-, vernunftwidrig"
]
},
"history_and_etymology":null,
"pronounciation":"vi\u02d0dr\u026a\u00e7",
"synonyms":[],
"time_of_retrieval":"20220708-085114",
"type":"Suffix",
"wendungen":[]
},
"_wut":{
"definitions":{
"bezeichnet in Bildungen mit Substantiven oder Verben (Verbst\u00e4mmen) einen sehr gro\u00dfen, vehementen, leidenschaftlichen Eifer bei etwas, im Hinblick auf etwas":[
"Reform-, Spar-, Tanzwut"
]
},
"history_and_etymology":null,
"pronounciation":"vu\u02d0t",
"synonyms":[],
"time_of_retrieval":"20220708-083334",
"type":"Suffix",
"wendungen":[]
},
"_zuegig":{
"definitions":{},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-192616",
"type":"Suffix",
"wendungen":[]
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,18 +1,12 @@
import json import json
import time
from collections import Counter
with open("a_mw.json", "r") as f: with open("a_mw.json", "r") as f:
mw = json.load(f) mw = json.load(f)
import os
import random import random
from os import path
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
import numpy as np from wordcloud import WordCloud
from PIL import Image
from wordcloud import STOPWORDS, WordCloud
def grey_color_func( def grey_color_func(

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,4 @@
import json
import re import re
import time
from datetime import datetime from datetime import datetime
from xml.etree import ElementTree as ET from xml.etree import ElementTree as ET

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,120 @@
{ {
"Quackeler":{
"definitions":{
"In bestimmten Situationen wird die maskuline Form (z. B. Arzt , Mieter , B\u00e4cker ) gebraucht, um damit Personen aller Geschlechter zu bezeichnen. Bei dieser Verwendung ist aber sprachlich nicht immer eindeutig, ob nur m\u00e4nnliche Personen gemeint sind oder auch andere. Deswegen wird seit einiger Zeit \u00fcber sprachliche Alternativen diskutiert.":[],
"m\u00e4nnliche Person, die quackelt":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-225210",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quackelerin":{
"definitions":{
"weibliche Person, die quackelt":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[
"Schw\u00e4tzer",
"Schw\u00e4tzerin"
],
"time_of_retrieval":"20220707-193659",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quackler":{
"definitions":{
"In bestimmten Situationen wird die maskuline Form (z. B. Arzt , Mieter , B\u00e4cker ) gebraucht, um damit Personen aller Geschlechter zu bezeichnen. Bei dieser Verwendung ist aber sprachlich nicht immer eindeutig, ob nur m\u00e4nnliche Personen gemeint sind oder auch andere. Deswegen wird seit einiger Zeit \u00fcber sprachliche Alternativen diskutiert.":[],
"m\u00e4nnliche Person, die quackelt":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-082709",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quacklerin":{
"definitions":{
"weibliche Person, die quackelt":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-205515",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quacksalber":{
"definitions":{
"Arzt o. \u00c4., der mit obskuren Mitteln und Methoden Krankheiten zu heilen versucht":[],
"In bestimmten Situationen wird die maskuline Form (z. B. Arzt , Mieter , B\u00e4cker ) gebraucht, um damit Personen aller Geschlechter zu bezeichnen. Bei dieser Verwendung ist aber sprachlich nicht immer eindeutig, ob nur m\u00e4nnliche Personen gemeint sind oder auch andere. Deswegen wird seit einiger Zeit \u00fcber sprachliche Alternativen diskutiert.":[]
},
"history_and_etymology":[
"niederl\u00e4ndisch kwakzalver, eigentlich = prahlerischer Salbenverk\u00e4ufer, zu: kwacken = schwatzen, prahlen und zalven = salben"
],
"pronounciation":[],
"synonyms":[
"Medizinmann",
"Scharlatan",
"Scharlatanin",
"Medikaster"
],
"time_of_retrieval":"20220707-183946",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quacksalberei":{
"definitions":{
"Behandlung von Krankheiten nach Art eines Quacksalbers":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-215046",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quad":{
"definitions":{
"motorrad\u00e4hnliches Fahrzeug mit vier R\u00e4dern":[]
},
"history_and_etymology":[
"englisch quad (bike), gek\u00fcrzt aus: quadruplet = Vierling, zu lateinisch quadr- (in Zusammensetzungen) = vier, zu: quattuor = vier"
],
"pronounciation":"kv\u0254t",
"synonyms":[],
"time_of_retrieval":"20220707-221947",
"type":"Substantiv, Neutrum",
"wendungen":[]
},
"Quaddel":{
"definitions":{
"juckende Anschwellung der Haut":[]
},
"history_and_etymology":[
"aus dem Niederdeutschen, mit althochdeutsch quedilla zu einer urspr\u00fcnglichen Bedeutung \u201eAnschwellung, Wulst\u201c"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-202644",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quade":{
"definitions":{
"Angeh\u00f6riger eines westgermanischen Volkes":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-191143",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quader":{ "Quader":{
"definitions":{ "definitions":{
"behauener Steinblock von der Form eines Quaders (b)":[ "behauener Steinblock von der Form eines Quaders (b)":[
@ -18,6 +134,41 @@
"type":"Substantiv, maskulin, oder Substantiv, feminin", "type":"Substantiv, maskulin, oder Substantiv, feminin",
"wendungen":[] "wendungen":[]
}, },
"Quaderbauweise":{
"definitions":{
"Quaderbau (1)":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-204914",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quaderform":{
"definitions":{
"Form eines Quaders (b)":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-205049",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quadral":{
"definitions":{
"eigener Numerus 3 f\u00fcr vier Dinge oder Wesen":[]
},
"history_and_etymology":[
"lateinisch-neulateinisch"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-223222",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quadrangel":{ "Quadrangel":{
"definitions":{ "definitions":{
"\n":[] "\n":[]
@ -36,6 +187,25 @@
"type":"Substantiv, Neutrum", "type":"Substantiv, Neutrum",
"wendungen":[] "wendungen":[]
}, },
"Quadrant":{
"definitions":{
"(heute nicht mehr gebr\u00e4uchliches) Instrument zur Bestimmung der H\u00f6he (4b) von Gestirnen":[],
"Viertel einer Kreisfl\u00e4che":[],
"Viertel eines Kreises, besonders eines Meridians oder des \u00c4quators":[
"der Punkt P (5, 3) liegt im ersten Quadranten"
],
"eines der vier Viertel, in die die Ebene eines ebenen rechtwinkligen Koordinatensystems durch das Achsenkreuz aufgeteilt ist":[]
},
"history_and_etymology":[
"lateinisch quadrans (Genitiv: quadrantis) = der vierte Teil, substantiviertes 1. Partizip von: quadrare,",
"quadrieren"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-230654",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quadrat":{ "Quadrat":{
"definitions":{ "definitions":{
"90\u00b0 Winkelabstand zwischen Planeten":[ "90\u00b0 Winkelabstand zwischen Planeten":[
@ -69,6 +239,92 @@
"im/zum Quadrat (umgangssprachlich: in besonders gesteigerter, ausgepr\u00e4gter Form: das war Pech im Quadrat)" "im/zum Quadrat (umgangssprachlich: in besonders gesteigerter, ausgepr\u00e4gter Form: das war Pech im Quadrat)"
] ]
}, },
"Quadrata":{
"definitions":{
"die Buchschriftform der Kapitalis":[]
},
"history_and_etymology":[
"lateinisch (capitalis) quadrata, eigentlich = die Viereckige, nach der Form"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-231433",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quadratenkasten":{
"definitions":{
"Kasten zur Aufbewahrung der Quadraten (3)":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-235511",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quadratmeile":{
"definitions":{
"der Fl\u00e4che eines Quadrats mit der Seitenl\u00e4nge 1 Meile entsprechende Ma\u00dfeinheit der Fl\u00e4che":[]
},
"history_and_etymology":null,
"pronounciation":"\u2026\u02c8drat\u2026",
"synonyms":[],
"time_of_retrieval":"20220708-021507",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quadratmeter":{
"definitions":{
"der Fl\u00e4che eines Quadrats mit der Seitenl\u00e4nge 1 m entsprechende Ma\u00dfeinheit der Fl\u00e4che":[
"das Haus hat 180 Quadratmeter Wohnfl\u00e4che"
]
},
"history_and_etymology":null,
"pronounciation":"\u2026\u02c8drat\u2026",
"synonyms":[],
"time_of_retrieval":"20220708-001630",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quadratnote":{
"definitions":{
"Nota quadrata":[]
},
"history_and_etymology":null,
"pronounciation":"kva\u02c8dra\u02d0tno\u02d0t\u0259",
"synonyms":[],
"time_of_retrieval":"20220708-003020",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quadratschaedel":{
"definitions":{
"breiter, eckiger Kopf":[],
"starrsinniger, dickk\u00f6pfiger Mensch":[]
},
"history_and_etymology":null,
"pronounciation":"\u2026\u02c8drat\u2026",
"synonyms":[
"Dickkopf",
"Querkopf",
"Trotzkopf"
],
"time_of_retrieval":"20220708-075411",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quadratschnauze":{
"definitions":{
"Mund (im Hinblick auf dreiste, gro\u00dfsprecherische o. \u00e4. \u00c4u\u00dferungen)":[]
},
"history_and_etymology":null,
"pronounciation":"\u2026\u02c8drat\u2026",
"synonyms":[],
"time_of_retrieval":"20220708-012615",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quadratwurzel":{ "Quadratwurzel":{
"definitions":{ "definitions":{
"zweite Wurzel aus einer Zahl":[ "zweite Wurzel aus einer Zahl":[
@ -83,6 +339,17 @@
"type":"Substantiv, feminin", "type":"Substantiv, feminin",
"wendungen":[] "wendungen":[]
}, },
"Quadratzentimeter":{
"definitions":{
"der Fl\u00e4che eines Quadrats mit der Seitenl\u00e4nge 1 cm entsprechende Ma\u00dfeinheit der Fl\u00e4che":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-032045",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quaeler":{ "Quaeler":{
"definitions":{ "definitions":{
"\n In bestimmten Situationen wird die maskuline Form (z.\u00a0B. ":[], "\n In bestimmten Situationen wird die maskuline Form (z.\u00a0B. ":[],
@ -264,6 +531,30 @@
"type":"Substantiv, feminin", "type":"Substantiv, feminin",
"wendungen":[] "wendungen":[]
}, },
"Qualifizierungsmasznahme":{
"definitions":{
"Ma\u00dfnahme, die dazu dient, Arbeitskr\u00e4ften h\u00f6here Qualifikationen zu vermitteln":[]
},
"history_and_etymology":null,
"pronounciation":"kvalifi\u02c8tsi\u02d0r\u028a\u014bsma\u02d0sna\u02d0m\u0259",
"synonyms":[],
"time_of_retrieval":"20220708-083431",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Qualifying":{
"definitions":{
"Qualifikation (3b) und Festlegung der Startreihenfolge f\u00fcr ein [Auto]rennen":[]
},
"history_and_etymology":[
"englisch qualifying = das (Sich)qualifizieren"
],
"pronounciation":"\u02c8kw\u0254l\u026afa\u026a\u032f\u026a\u014b",
"synonyms":[],
"time_of_retrieval":"20220708-061434",
"type":"Substantiv, Neutrum",
"wendungen":[]
},
"Qualitaet":{ "Qualitaet":{
"definitions":{ "definitions":{
"\n":[ "\n":[
@ -313,6 +604,19 @@
"type":"Substantiv, feminin", "type":"Substantiv, feminin",
"wendungen":[] "wendungen":[]
}, },
"Qualitaetsanforderung":{
"definitions":{
"Anforderung (2) , die im Hinblick auf die Qualit\u00e4t (3a) gestellt wird":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[
"Anforderung"
],
"time_of_retrieval":"20220708-060504",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Qualm":{ "Qualm":{
"definitions":{ "definitions":{
"[als unangenehm empfundener] dichter, quellender Rauch":[ "[als unangenehm empfundener] dichter, quellender Rauch":[
@ -417,6 +721,131 @@
"type":"Substantiv, feminin", "type":"Substantiv, feminin",
"wendungen":[] "wendungen":[]
}, },
"Quarantaeneflagge":{
"definitions":{
"Signalflagge, die anzeigt, dass ein Schiff in Quarant\u00e4ne liegt":[]
},
"history_and_etymology":null,
"pronounciation":"karan\u02c8t\u025b\u02d0n\u0259fla\u0261\u0259",
"synonyms":[],
"time_of_retrieval":"20220708-045922",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quarantaenelager":{
"definitions":{
"Lager zur Unterbringung von Personen, Tieren, die unter Quarant\u00e4ne stehen":[]
},
"history_and_etymology":null,
"pronounciation":"karan\u02c8t\u025b\u02d0n\u0259",
"synonyms":[],
"time_of_retrieval":"20220708-032313",
"type":"Substantiv, Neutrum",
"wendungen":[]
},
"Quarantaenestation":{
"definitions":{
"Einrichtung zur Unterbringung von Personen, Tieren, die unter Quarant\u00e4ne stehen":[]
},
"history_and_etymology":null,
"pronounciation":"karan\u02c8t\u025b\u02d0n\u0259\u0283tatsi\u032fo\u02d0n",
"synonyms":[],
"time_of_retrieval":"20220708-022103",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quark_Milcherzeugnis_Unsinn":{
"definitions":{
"Unsinn, Unfug, dummes Zeug":[
"getretener Quark wird breit, nicht stark (etwas ohne inhaltliche Tiefe wird auch durch noch so gro\u00dfen Aufwand nicht auf ein h\u00f6heres Niveau gebracht; Goethe, West\u00f6stlicher Diwan)"
],
"aus saurer Milch hergestelltes, wei\u00dfes, breiiges Nahrungsmittel":[
"fettarmer, 40 %iger Quark"
]
},
"history_and_etymology":[
"sp\u00e4tmittelhochdeutsch quarc, quarg, twarc, aus dem Slawischen; vgl. polnisch twar\u00f3g"
],
"pronounciation":[],
"synonyms":[
"H\u00fcttenk\u00e4se",
"Schichtk\u00e4se",
"Siebk\u00e4se",
"Glumse"
],
"time_of_retrieval":"20220707-201812",
"type":"Substantiv, maskulin",
"wendungen":[
"getretener Quark wird breit, nicht stark (etwas ohne inhaltliche Tiefe wird auch durch noch so gro\u00dfen Aufwand nicht auf ein h\u00f6heres Niveau gebracht; Goethe, West\u00f6stlicher Diwan)"
]
},
"Quarkauflauf":{
"definitions":{
"aus Quark u. a. bereiteter Auflauf":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-225803",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quarkbrot":{
"definitions":{
"mit Quark bestrichenes Brot":[],
"mit Quark hergestelltes Brot":[]
},
"history_and_etymology":null,
"pronounciation":"\u02c8kvarkbro\u02d0t",
"synonyms":[],
"time_of_retrieval":"20220708-042720",
"type":"Substantiv, Neutrum",
"wendungen":[]
},
"Quarkkaese":{
"definitions":{
"eine Art Handk\u00e4se":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-004829",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quarkschnitte":{
"definitions":{
"mit Quark bestrichene Scheibe Brot":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-070725",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quarkstrudel":{
"definitions":{
"mit Quark gef\u00fcllter Strudel (2)":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-033014",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quarktorte":{
"definitions":{
"K\u00e4setorte":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-054003",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Quart_Hohlmasz_Buchformat":{ "Quart_Hohlmasz_Buchformat":{
"definitions":{ "definitions":{
"altes deutsches Hohlma\u00df (unterschiedlicher Gr\u00f6\u00dfe)":[ "altes deutsches Hohlma\u00df (unterschiedlicher Gr\u00f6\u00dfe)":[
@ -728,6 +1157,27 @@
"type":"Substantiv, maskulin", "type":"Substantiv, maskulin",
"wendungen":[] "wendungen":[]
}, },
"Querulant":{
"definitions":{
"In bestimmten Situationen wird die maskuline Form (z. B. Arzt , Mieter , B\u00e4cker ) gebraucht, um damit Personen aller Geschlechter zu bezeichnen. Bei dieser Verwendung ist aber sprachlich nicht immer eindeutig, ob nur m\u00e4nnliche Personen gemeint sind oder auch andere. Deswegen wird seit einiger Zeit \u00fcber sprachliche Alternativen diskutiert.":[],
"m\u00e4nnliche Person, die sich unn\u00f6tigerweise beschwert und dabei starrk\u00f6pfig auf ihr [vermeintliches] Recht pocht":[]
},
"history_and_etymology":[
"neulateinisch Substantivierung des 1. Partizip von lateinisch querelari (",
"querulieren",
"), eigentlich = Klagender oder neulateinische Bildung zu",
"querulieren"
],
"pronounciation":[],
"synonyms":[
"N\u00f6rgler",
"N\u00f6rglerin",
"Raunzer"
],
"time_of_retrieval":"20220708-070804",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Quintenzirkel":{ "Quintenzirkel":{
"definitions":{ "definitions":{
"Kreis, in dem alle Tonarten in Dur und Moll in Quintenschritten dargestellt werden":[] "Kreis, in dem alle Tonarten in Dur und Moll in Quintenschritten dargestellt werden":[]
@ -803,6 +1253,86 @@
"type":"Substantiv, feminin", "type":"Substantiv, feminin",
"wendungen":[] "wendungen":[]
}, },
"quabbelig":{
"definitions":{
"schwabbelig":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[
"gallertartig",
"labberig",
"schleimig",
"schwabbelig"
],
"time_of_retrieval":"20220707-234431",
"type":"Adjektiv",
"wendungen":[]
},
"quabblig":{
"definitions":{
"schwabbelig":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-193804",
"type":"Adjektiv",
"wendungen":[]
},
"quacksalberisch":{
"definitions":{
"in der Art eines Quacksalbers":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-222012",
"type":"Adjektiv",
"wendungen":[]
},
"quacksalbern":{
"definitions":{
"in der Art eines Quacksalbers Krankheiten behandeln":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[
"behandeln",
"verarzten"
],
"time_of_retrieval":"20220707-181103",
"type":"schwaches Verb",
"wendungen":[]
},
"quaderfoermig":{
"definitions":{
"die Form eines Quaders aufweisend":[
"ein quaderf\u00f6rmiger Klotz"
]
},
"history_and_etymology":null,
"pronounciation":"\u02c8kva\u02d0d\u0250f\u0153rm\u026a\u00e7",
"synonyms":[],
"time_of_retrieval":"20220707-213114",
"type":"Adjektiv",
"wendungen":[]
},
"quadraeteln":{
"definitions":{
"mit Geviertst\u00fccken w\u00fcrfeln [W\u00fcrfelspiel der Buchdrucker und Setzer]":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[
"w\u00fcrfeln",
"knobeln",
"paschen"
],
"time_of_retrieval":"20220708-042336",
"type":"schwaches Verb",
"wendungen":[]
},
"quadrangulaer":{ "quadrangulaer":{
"definitions":{ "definitions":{
"\n":[] "\n":[]
@ -983,6 +1513,24 @@
"type":"Adjektiv", "type":"Adjektiv",
"wendungen":[] "wendungen":[]
}, },
"qualitativ":{
"definitions":{
"die Qualit\u00e4t (1a) betreffend":[
"Fortschritte in qualitativer Hinsicht machen",
"qualitative M\u00e4ngel beseitigen",
"eine qualitativ hochstehende Konstruktion des Fahrwerks"
],
"die [gute] Qualit\u00e4t (3a) betreffend":[]
},
"history_and_etymology":[
"mittellateinisch qualitativus"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-013942",
"type":"Adjektiv",
"wendungen":[]
},
"qualmen":{ "qualmen":{
"definitions":{ "definitions":{
"Qualm abgeben, verbreiten":[ "Qualm abgeben, verbreiten":[
@ -1045,6 +1593,46 @@
"type":"Adjektiv", "type":"Adjektiv",
"wendungen":[] "wendungen":[]
}, },
"quantum_satis":{
"definitions":{
"in ausreichender Menge":[]
},
"history_and_etymology":[
"lateinisch"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-085359",
"type":"Medizin",
"wendungen":[]
},
"quarkig":{
"definitions":{
"in Aussehen und Konsistenz \u00e4hnlich wie Quark":[
"eine quarkige Masse"
]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-024849",
"type":"Adjektiv",
"wendungen":[]
},
"quarrig":{
"definitions":{
"quarrend (1)":[],
"zum Quarren (1) neigend":[
"das Kind ist quarrig"
]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-073950",
"type":"Adjektiv",
"wendungen":[]
},
"quatschen":{ "quatschen":{
"definitions":{ "definitions":{
"(in Bezug auf eine nasse, breiig-weiche Masse) ein dem Klatschen \u00e4hnliches Ger\u00e4usch hervorbringen":[ "(in Bezug auf eine nasse, breiig-weiche Masse) ein dem Klatschen \u00e4hnliches Ger\u00e4usch hervorbringen":[

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +0,0 @@
Verschluss
Geschaeftsleben
ausbaggern
Schnauze
Aufwendung
ueberfliegen_fliegen_andere_Seite

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,25 @@
Scheidegg
einmal
Brandsilber
Dollbord
Arbeitsnachfrage
Atomkraft
Taetzchen
Ebur
Flitz
unbetraechtlich
Staatssklave
Sanitaerin
Tanja
Endobiose
professorenmaeszig
Agenda_21
Strafkammer
leidsam
Vermietung
Sozialreformismus
verwurzeln
zurueckrudern
Ausfaellung
Zusatzgeraet
Packfilm

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

313
de_duden/y_duden.json Normal file
View File

@ -0,0 +1,313 @@
{
"Y_Chromosom":{
"definitions":{
"eines der beiden Chromosomen, durch die das Geschlecht bestimmt wird":[]
},
"history_and_etymology":[
"nach der Form"
],
"pronounciation":"\u02c8\u028fpsil\u0254nkro\u2026",
"synonyms":[],
"time_of_retrieval":"20220708-001322",
"type":"Substantiv, Neutrum",
"wendungen":[]
},
"Yamoussoukro":{
"definitions":{
"Hauptstadt von Elfenbeink\u00fcste":[]
},
"history_and_etymology":null,
"pronounciation":"jamusu\u02c8kro\u02d0",
"synonyms":[],
"time_of_retrieval":"20220708-084822",
"type":"Substantiv, Neutrum (Eigenname)",
"wendungen":[]
},
"Yankeetum":{
"definitions":{},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-233616",
"type":"Substantiv, Neutrum",
"wendungen":[]
},
"Yard":{
"definitions":{
"L\u00e4ngeneinheit in Gro\u00dfbritannien und den USA (= 3 Feet = 91,44 cm)":[]
},
"history_and_etymology":[
"englisch yard, eigentlich = Ma\u00dfstab; Rute"
],
"pronounciation":"j\u0251\u02d0d",
"synonyms":[],
"time_of_retrieval":"20220708-084738",
"type":"Substantiv, Neutrum",
"wendungen":[]
},
"Yawl":{
"definitions":{
"zweimastiges [Sport]segelboot":[]
},
"history_and_etymology":[
"deutsch-englisch"
],
"pronounciation":"j\u0254\u02d0l",
"synonyms":[],
"time_of_retrieval":"20220708-085635",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Yb":{
"definitions":{},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-201912",
"type":"Abk\u00fcrzung",
"wendungen":[]
},
"Ybbs_an_der_Donau":{
"definitions":{
"\u00f6sterreichische Stadt":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-200729",
"type":"Substantiv, Neutrum (Eigenname)",
"wendungen":[]
},
"Yellow_Press":{
"definitions":{
"Regenbogenpresse":[]
},
"history_and_etymology":[
"englisch yellow press, eigentlich = gelbe Presse"
],
"pronounciation":"\u02c8j\u025bl\u0254\u028a\u032f \u02c8pr\u025bs",
"synonyms":[
"Boulevardpresse",
"Revolverpresse",
"Sensationspresse",
"Skandalpresse"
],
"time_of_retrieval":"20220708-000923",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Yen":{
"definitions":{
"W\u00e4hrungseinheit in Japan (1 Yen = 100 Sen ; W\u00e4hrungscode: JPY)":[]
},
"history_and_etymology":[
"japanisch yen < chinesisch yuan = rund, also eigentlich = runde (M\u00fcnze)"
],
"pronounciation":"j\u025bn",
"synonyms":[],
"time_of_retrieval":"20220707-182315",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Yeomanry":{
"definitions":{
"Milizkavallerie in Gro\u00dfbritannien":[]
},
"history_and_etymology":[
"englisch yeomanry, zu: yeoman,",
"Yeoman"
],
"pronounciation":"\u02c8j\u0254\u028a\u032fm\u0259nri",
"synonyms":[],
"time_of_retrieval":"20220707-185235",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Yerba":{
"definitions":{
"Mate":[]
},
"history_and_etymology":[
"amerikanisch-spanisch yerba (mate)"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-050644",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Yin":{
"definitions":{
"(zusammen mit Yang die Grundkraft des Lebens bildendes) weibliches Prinzip in der chinesischen Philosophie":[]
},
"history_and_etymology":[
"chinesisch = weiblich"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-075731",
"type":"Substantiv, Neutrum",
"wendungen":[]
},
"Ylang_Ylang_Oel":{
"definitions":{
"fruchtig-blumig riechendes \u00e4therisches \u00d6l des Ylang-Ylang-Baumes":[]
},
"history_and_etymology":null,
"pronounciation":"\u02c8i\u02d0la\u014b\u02c8\u0294i\u02d0la\u014b\u0294\u00f8\u02d0l",
"synonyms":[],
"time_of_retrieval":"20220708-020848",
"type":"Substantiv, Neutrum",
"wendungen":[]
},
"Yngling":{
"definitions":{
"von drei Personen zu segelndes unsinkbares Boot mit einem Kiel (b)":[]
},
"history_and_etymology":[
"norwegisch yngling = J\u00fcngling, Junge; 1967 so benannt vom norwegischen Konstrukteur J. Linge, der urspr\u00fcnglich ein kleines Kielboot f\u00fcr seinen gerade geborenen Sohn bauen wollte"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-080121",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Yoga":{
"definitions":{
"Gesamtheit der \u00dcbungen, die aus dem Yoga (a) herausgel\u00f6st und zum Zwecke einer gesteigerten Beherrschung des K\u00f6rpers, der Konzentration und Entspannung ausgef\u00fchrt werden":[],
"indische philosophische Lehre, die durch Meditation, Askese und bestimmte k\u00f6rperliche \u00dcbungen den Menschen vom Gebundensein an die Last der K\u00f6rperlichkeit befreien will":[]
},
"history_and_etymology":[
"altindisch y\u014dga-\u1e25, eigentlich = Verbindung, Vereinigung, zu: yug\u00e1-m = Joch"
],
"pronounciation":"\u02c8jo\u02d0\u0261a",
"synonyms":[],
"time_of_retrieval":"20220707-234651",
"type":"Substantiv, Neutrum, oder Substantiv, maskulin",
"wendungen":[]
},
"Yogalates":{
"definitions":{
"Verbindung aus Elementen des Yoga (b) und dem Fitnessprogramm Pilates":[
"Yogalates f\u00fcr Anf\u00e4nger, Fortgeschrittene",
"Kurse f\u00fcr Yogalates anbieten"
]
},
"history_and_etymology":[
"aus",
"Yoga (b)",
"und",
"Pilates"
],
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-023037",
"type":"Substantiv, Neutrum",
"wendungen":[]
},
"Yogalehrer":{
"definitions":{
"In bestimmten Situationen wird die maskuline Form (z. B. Arzt , Mieter , B\u00e4cker ) gebraucht, um damit Personen aller Geschlechter zu bezeichnen. Bei dieser Verwendung ist aber sprachlich nicht immer eindeutig, ob nur m\u00e4nnliche Personen gemeint sind oder auch andere. Deswegen wird seit einiger Zeit \u00fcber sprachliche Alternativen diskutiert.":[],
"m\u00e4nnliche Person, die anderen ihr Wissen \u00fcber Yoga vermittelt":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-030250",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"Yogalehrerin":{
"definitions":{
"weibliche Person, die anderen ihr Wissen \u00fcber Yoga vermittelt":[]
},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-085528",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Yogauebung":{
"definitions":{
"einzelne \u00dcbung des Yoga":[
"mit einfachen Yoga\u00fcbungen beginnen"
]
},
"history_and_etymology":null,
"pronounciation":"\u02c8jo\u02d0\u0261a\u0294y\u02d0b\u028a\u014b",
"synonyms":[],
"time_of_retrieval":"20220708-043104",
"type":"Substantiv, feminin",
"wendungen":[]
},
"Yohimbin":{
"definitions":{
"Alkaloid aus der Rinde eines westafrikanischen Baumes (als Aphrodisiakum verwendet)":[]
},
"history_and_etymology":[
"Bantusprache-neulateinisch"
],
"pronounciation":"j\u2026",
"synonyms":[],
"time_of_retrieval":"20220708-051232",
"type":"Substantiv, Neutrum",
"wendungen":[]
},
"Yoni":{
"definitions":{
"als heilig geltendes Symbol des weiblichen Geschlechts in Indien":[]
},
"history_and_etymology":[
"sanskritisch"
],
"pronounciation":"\u02c8jo\u02d0\u2026",
"synonyms":[],
"time_of_retrieval":"20220708-052053",
"type":"Substantiv, Neutrum, oder Substantiv, feminin",
"wendungen":[]
},
"Yonne":{
"definitions":{
"linker Nebenfluss der Seine":[]
},
"history_and_etymology":null,
"pronounciation":"j\u0254n",
"synonyms":[],
"time_of_retrieval":"20220708-070848",
"type":"Substantiv, feminin (Eigenname)",
"wendungen":[]
},
"Yorkshireterrier":{
"definitions":{
"englischer Zwerghund mit langen, gl\u00e4nzenden, seidigen Haaren von stahlblauer, an Kopf, Brust und Beinen rotbrauner F\u00e4rbung, kurzer Schnauze und schwarzem Nasenspiegel (2)":[]
},
"history_and_etymology":[
"nach der englischen Grafschaft Yorkshire"
],
"pronounciation":"\u02c8j\u0254\u02d0k\u0283\u0259\u2026",
"synonyms":[],
"time_of_retrieval":"20220708-084603",
"type":"Substantiv, maskulin",
"wendungen":[]
},
"yds":{
"definitions":{},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220708-064919",
"type":"Abk\u00fcrzung",
"wendungen":[]
},
"yds_":{
"definitions":{},
"history_and_etymology":null,
"pronounciation":[],
"synonyms":[],
"time_of_retrieval":"20220707-185513",
"type":"Abk\u00fcrzung",
"wendungen":[]
}
}

File diff suppressed because it is too large Load Diff

View File

@ -5,6 +5,7 @@ import string
import time import time
from datetime import datetime from datetime import datetime
from pathlib import Path from pathlib import Path
from urllib.parse import unquote as uq
from xml.etree import ElementTree as ET from xml.etree import ElementTree as ET
import requests import requests
@ -12,6 +13,44 @@ from bs4 import BeautifulSoup
from requests.exceptions import ConnectionError from requests.exceptions import ConnectionError
def uqall(data):
if isinstance(data, list):
iterator = enumerate(data)
elif isinstance(data, dict):
for k in list(data.keys()):
data[uq(k)] = data.pop(k)
iterator = data.items()
elif isinstance(data, str):
data = [data]
iterator = enumerate(data)
else:
raise TypeError("can only traverse list or dict")
for i, value in iterator:
if isinstance(value, (list, dict)):
uqall(value)
elif isinstance(value, str):
data[i] = uq(value)
return data
def clear_whitespace(data):
if isinstance(data, list):
iterator = enumerate(data)
elif isinstance(data, dict):
iterator = data.items()
elif isinstance(data, str):
data = [data]
iterator = enumerate(data)
else:
raise TypeError("can only traverse list or dict")
for i, value in iterator:
if isinstance(value, (list, dict)):
clear_whitespace(value)
elif isinstance(value, str):
data[i] = re.sub(r"[\n\t\s]+", " ", value).strip()
return data
def randtime(a, b, k=0): def randtime(a, b, k=0):
if k: if k:
return [random.uniform(a, b) for _ in range(k)] return [random.uniform(a, b) for _ in range(k)]
@ -51,28 +90,14 @@ def all_text(e):
return clear_whitespace(" ".join(e.itertext())) return clear_whitespace(" ".join(e.itertext()))
def only_first_text(e):
return clear_whitespace([next(e.itertext())])[0]
def only_text(e): def only_text(e):
return " ".join(all_text(e)) return " ".join(all_text(e))
def clear_whitespace(data):
if isinstance(data, list):
iterator = enumerate(data)
elif isinstance(data, dict):
iterator = data.items()
elif isinstance(data, str):
data = [data]
iterator = enumerate(data)
else:
raise TypeError("can only traverse list or dict")
for i, value in iterator:
if isinstance(value, (list, dict)):
clear_whitespace(value)
elif isinstance(value, str):
data[i] = re.sub(r"[\n\t\s]+", " ", value).strip()
return data
def url2str(url: str) -> str: def url2str(url: str) -> str:
headers = { headers = {
"user-agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.115 Safari/537.36" "user-agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.115 Safari/537.36"
@ -92,6 +117,8 @@ def url2str(url: str) -> str:
rb = remove_between rb = remove_between
cw = clear_whitespace cw = clear_whitespace
ot = only_text ot = only_text
at = all_text
oft = only_first_text
class WordParser: class WordParser:
@ -116,12 +143,14 @@ class FileSet(set):
self.update({line.strip() for line in open(self.file, "r")}) self.update({line.strip() for line in open(self.file, "r")})
def save(self): def save(self):
with open(self.file, "w") as f: if self:
f.write("\n".join(list(self))) with open(self.file, "w") as f:
f.write("\n".join([w for w in self if w]))
def append(self): def append(self):
self |= {line.strip() for line in open(self.file, "r")} if self:
self.save() self |= {line.strip() for line in open(self.file, "r")}
self.save()
class Dictionary(dict): class Dictionary(dict):
@ -189,7 +218,7 @@ class Queue:
self.queue -= set(self.full_dict.keys()) self.queue -= set(self.full_dict.keys())
self.queue -= self.snafus self.queue -= self.snafus
self.queue |= self.redo self.queue |= self.redo
len_queue = len(self.queue) # actual queue len_queue = len(self.queue) # actual queue
p = random.choice(list(self.queue)) p = random.choice(list(self.queue))
try: try:
start_parsing = time.time() start_parsing = time.time()
@ -198,17 +227,19 @@ class Queue:
start_db_stuff = time.time() start_db_stuff = time.time()
self.full_dict |= word_dict self.full_dict |= word_dict
self.queue |= set(w.neighbours)
self.queue -= {p}
self.redo -= {p}
self.redo.save()
self.updateDB(p)
print( print(
f"{p} | "
f"{len(self.full_dict)} words collected, " f"{len(self.full_dict)} words collected, "
f"{len_queue} words waiting in queue, " f"{len_queue} words waiting in queue, "
f"{start_db_stuff-start_parsing:.06f}s" f"{start_db_stuff-start_parsing:.06f}s"
f"/{time.time() - start_db_stuff:.06f}s" f"/{time.time() - start_db_stuff:.06f}s"
) )
self.queue |= set(w.neighbours)
self.queue -= {p}
self.redo -= {p}
self.redo.save()
self.updateDB(p)
self.wait() self.wait()
except ( except (
AssertionError, AssertionError,
@ -225,9 +256,6 @@ class Queue:
self.queue.save() self.queue.save()
self.time_exponent += 1 self.time_exponent += 1
self.wait() self.wait()
except:
self.queue.save()
exit()
if __name__ == "__main__": if __name__ == "__main__":

View File

@ -1,5 +1,4 @@
from time import time from dict_dl import WordParser, Queue, cw, ot, uqall
from dict_dl import WordParser, Queue, cw, ot
class DudenParser(WordParser): class DudenParser(WordParser):
def __init__(self, word): def __init__(self, word):
@ -81,7 +80,7 @@ class DudenParser(WordParser):
assert ( assert (
self.type or self.definitions self.type or self.definitions
), f"{self.time} {self.word}: type or definitions came back empty..." ), f"{self.time} {self.word}: type or definitions came back empty..."
return { return uqall({
self.word: { self.word: {
"type": self.type, "type": self.type,
"definitions": self.definitions, "definitions": self.definitions,
@ -91,7 +90,7 @@ class DudenParser(WordParser):
"wendungen": self.wendungen, "wendungen": self.wendungen,
"time_of_retrieval": self.time, "time_of_retrieval": self.time,
} }
} })
# d = DudenParser("hinfallen") # d = DudenParser("hinfallen")
# print(d.neighbours) # print(d.neighbours)

296
en_MW_thesaurus/___mwt.json Normal file
View File

@ -0,0 +1,296 @@
{
"%28the%29%20people":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"plural noun"
]
},
"%C3%A0%20deux":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"adverb"
]
},
"(the) populace":{
"as in (the) public , (the) people":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"A1":{
"of the very best kind":{
"antonyms":[
"atrocious",
"awful",
"execrable",
"lousy",
"pathetic",
"poor",
"rotten",
"terrible",
"vile",
"wretched"
],
"examples":[
"an A1 mom deserves only the very best Mother's Day card"
],
"near antonyms":[
"bad",
"inferior",
"low-grade",
"substandard",
"unsatisfactory",
"mediocre",
"middling",
"second-class",
"second-rate"
],
"related":[
"acceptable",
"adequate",
"all right",
"decent",
"good",
"OK",
"okay",
"passable",
"satisfactory",
"tolerable",
"better",
"exceptional",
"fancy",
"high-grade",
"high-test",
"premium",
"select",
"special",
"superfine",
"classical",
"standard",
"traditional"
],
"synonyms":[
"A-OK",
"awesome",
"bang-up",
"banner",
"beautiful",
"blue-chip",
"blue-ribbon",
"boffo",
"bonny",
"bonnie",
"boss",
"brag",
"brave",
"bully",
"bumper",
"capital",
"choice",
"classic",
"cool",
"corking",
"crackerjack",
"cracking",
"dandy",
"divine",
"dope",
"down",
"dynamite",
"excellent",
"fab",
"fabulous",
"famous",
"fantabulous",
"fantastic",
"fine",
"first-class",
"first-rate",
"first-string",
"five-star",
"four-star",
"frontline",
"gangbusters",
"gangbuster",
"gilt-edged",
"gilt-edge",
"gone",
"grand",
"great",
"groovy",
"heavenly",
"high-class",
"hot",
"hype",
"immense",
"jim-dandy",
"keen",
"lovely",
"marvelous",
"marvellous",
"mean",
"neat",
"nifty",
"noble",
"number one",
"No. 1",
"numero uno",
"out-of-sight",
"par excellence",
"peachy",
"peachy keen",
"phat",
"prime",
"primo",
"prize",
"prizewinning",
"quality",
"radical",
"righteous",
"sensational",
"slick",
"splendid",
"stellar",
"sterling",
"superb",
"superior",
"superlative",
"supernal",
"swell",
"terrific",
"tip-top",
"top",
"top-notch",
"top-of-the-line",
"top-shelf",
"topflight",
"topping",
"unsurpassed",
"wizard",
"wonderful"
]
},
"type":[
"adjective"
]
},
"B%20movie":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"G%C3%B6tterd%C3%A4mmerung":{
"a loss of status":{
"antonyms":[
"aggrandizement",
"ascent",
"exaltation",
"rise",
"up"
],
"examples":[
"a film that chronicles the chaotic G\u00f6tterd\u00e4mmerung of the Third Reich"
],
"near antonyms":[
"advance",
"headway",
"progress",
"flower",
"heyday",
"prime"
],
"related":[
"breakdown",
"burnout",
"collapse",
"crash",
"meltdown",
"ruin",
"undoing",
"defeat",
"disappointment",
"reversal",
"setback",
"bottom",
"nadir",
"abasement",
"disgrace",
"humiliation"
],
"synonyms":[
"comedown",
"decline",
"d\u00e9gringolade",
"demise",
"descent",
"down",
"downfall",
"fall",
"flameout"
]
},
"type":[
"noun"
]
},
"d%C3%A9but":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"the first time an actor, musician, athlete, etc., does something in public or for the public":{
"antonyms":[],
"examples":[
"He made his singing debut at a very young age.",
"She is making her television debut in the new sitcom."
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun",
"verb"
]
},
"d\u00e9gag\u00e9":{
"as in relaxed , sporty":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"adjective"
]
}
}

3090
en_MW_thesaurus/ab_mwt.json Normal file

File diff suppressed because it is too large Load Diff

3686
en_MW_thesaurus/ac_mwt.json Normal file

File diff suppressed because it is too large Load Diff

3453
en_MW_thesaurus/ad_mwt.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,82 @@
{
"aeon":{
"a long or seemingly long period of time":{
"antonyms":[],
"examples":[
"it's been aeons since I saw a movie at the multiplex",
"glaciers that formed aeons ago"
],
"near antonyms":[
"flash",
"instant",
"jiffy",
"minute",
"moment",
"second",
"shake",
"split second",
"trice",
"twinkle",
"twinkling",
"wink",
"microsecond",
"nanosecond"
],
"related":[
"infinity",
"lifetime"
],
"synonyms":[
"age",
"blue moon",
"coon's age",
"cycle",
"donkey's years",
"eternity",
"forever",
"long",
"months",
"moon"
]
},
"type":[
"noun"
]
},
"aerobics":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"aestivated":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"verb"
]
},
"aestivates":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"verb"
]
}
}

890
en_MW_thesaurus/af_mwt.json Normal file
View File

@ -0,0 +1,890 @@
{
"affable":{
"having a relaxed, casual manner":{
"antonyms":[
"high-strung",
"uptight"
],
"examples":[
"as the show's affable host, she keeps the freewheeling gabfest from getting out of hand"
],
"near antonyms":[
"ceremonious",
"decorous",
"formal",
"rigid",
"strict",
"anxious",
"bothered",
"distressed",
"worried",
"jittery",
"jumpy",
"nervous",
"skittish",
"tense"
],
"related":[
"carefree",
"casual",
"d\u00e9gag\u00e9",
"lackadaisical",
"nonchalant",
"unaffected",
"unconcerned",
"unfussy",
"unperturbed",
"untroubled",
"unworried",
"familiar",
"homey",
"homy",
"informal",
"flexible",
"lax",
"lenient",
"permissive",
"pliable",
"pliant",
"soft",
"accessible",
"approachable",
"imperturbable",
"nerveless",
"unflappable",
"unshakable",
"amicable",
"companionable",
"comradely",
"cordial",
"genial",
"hail-fellow-well-met",
"hearty",
"neighborly",
"warm",
"warmhearted"
],
"synonyms":[
"breezy",
"devil-may-care",
"easygoing",
"happy-go-lucky",
"laid-back",
"low-pressure",
"mellow"
]
},
"having an easygoing and pleasing manner especially in social situations":{
"antonyms":[
"disagreeable",
"ill-natured",
"ill-tempered",
"unamiable",
"ungenial",
"ungracious",
"unpleasant"
],
"examples":[
"as an experienced event planner, he knows that having an affable emcee is critical"
],
"near antonyms":[
"boorish",
"discourteous",
"ill-mannered",
"impolite",
"inconsiderate",
"rude",
"surly",
"uncivil",
"unkind",
"unmannerly",
"unsociable",
"bearish",
"bilious",
"cantankerous",
"choleric",
"churlish",
"crabby",
"cranky",
"dyspeptic",
"fussy",
"grouchy",
"grumpy",
"ill-humored",
"irascible",
"irritable",
"peevish",
"petulant",
"quick-tempered",
"snappish",
"testy",
"touchy",
"argumentative",
"contentious",
"contrary",
"ornery",
"querulous",
"unappealing",
"unattractive",
"sour",
"vinegary"
],
"related":[
"amicable",
"clever",
"cordial",
"friendly",
"neighborly",
"benign",
"gentle",
"kind",
"cheerful",
"cheery",
"glad",
"sunny",
"companionable",
"conversable",
"sociable",
"civil",
"considerate",
"courteous",
"polite",
"thoughtful",
"accommodating",
"amenable",
"obliging",
"attractive",
"delightful",
"enjoyable",
"likable",
"likeable"
],
"synonyms":[
"agreeable",
"amiable",
"genial",
"good-natured",
"good-tempered",
"gracious",
"mellow",
"nice",
"pleasant",
"sweet",
"well-disposed"
]
},
"showing a natural kindness and courtesy especially in social situations":{
"antonyms":[
"inhospitable",
"ungenial",
"ungracious",
"unsociable"
],
"examples":[
"although First Lady Lucretia Hayes didn't particularly enjoy her role as White House hostess, she was always affable"
],
"near antonyms":[
"boorish",
"churlish",
"abrupt",
"blunt",
"brusque",
"brusk",
"curt",
"gruff",
"sharp",
"snippy",
"antisocial",
"disagreeable",
"discourteous",
"ill-mannered",
"impolite",
"rude",
"sullen",
"surly",
"uncivil",
"unfriendly",
"unkind",
"unmannerly",
"crabbed",
"crabby",
"cross",
"crusty",
"grumpy"
],
"related":[
"agreeable",
"amiable",
"benign",
"benignant",
"congenial",
"convivial",
"friendly",
"kind",
"kindly",
"neighborly",
"accommodating",
"obliging",
"considerate",
"courteous",
"polite",
"thoughtful",
"cosmopolitan",
"sophisticated",
"urbane",
"approachable",
"attentive",
"outgoing"
],
"synonyms":[
"cordial",
"genial",
"gracious",
"hospitable",
"sociable"
]
},
"type":[
"adjective"
]
},
"affection":{
"a feeling of strong or constant regard for and dedication to someone":{
"antonyms":[
"abomination",
"hate",
"hatred",
"loathing",
"rancor"
],
"examples":[
"an elderly couple showing their affection for each other by little acts of kindness"
],
"near antonyms":[
"allergy",
"animosity",
"antagonism",
"antipathy",
"aversion",
"disfavor",
"dislike",
"enmity",
"hostility",
"abhorrence",
"disgust",
"repugnance",
"repulsion",
"revulsion",
"misanthropy"
],
"related":[
"appetite",
"fancy",
"favor",
"like",
"liking",
"partiality",
"preference",
"relish",
"taste",
"craving",
"crush",
"desire",
"infatuation",
"longing",
"lust",
"yearning",
"ardor",
"eagerness",
"enthusiasm",
"fervor",
"zeal",
"appreciation",
"esteem",
"estimation",
"regard",
"respect",
"adoration",
"adulation",
"deification",
"idolatry",
"idolization",
"worship",
"allegiance",
"faithfulness",
"fealty",
"fidelity",
"loyalty",
"steadfastness"
],
"synonyms":[
"attachment",
"devotedness",
"devotion",
"fondness",
"love",
"passion"
]
},
"a habitual attraction to some activity or thing":{
"antonyms":[],
"examples":[
"I'm rooting for the Cubs\u2014just my natural affection for the underdog, I guess"
],
"near antonyms":[
"allergy",
"averseness",
"aversion",
"disfavor",
"disinclination",
"dislike",
"disliking",
"disrelish",
"distaste",
"detachment",
"impartiality",
"neutrality",
"objectivity",
"apathy",
"disinterestedness",
"indifference",
"insouciance",
"nonchalance",
"unconcern"
],
"related":[
"favor",
"one-sidedness",
"partisanship",
"prejudice",
"endowment",
"faculty",
"flair",
"gift",
"knack",
"talent",
"addiction",
"appetite",
"fancy",
"fondness",
"like",
"liking",
"preference",
"taste",
"forte",
"speciality",
"specialty",
"convention",
"custom",
"habit",
"pattern",
"practice",
"practise",
"routine",
"trick",
"way",
"wont",
"eccentricity",
"idiosyncrasy",
"kink",
"oddity",
"peculiarity",
"quirk",
"singularity"
],
"synonyms":[
"affinity",
"aptitude",
"bent",
"bias",
"bone",
"devices",
"disposition",
"genius",
"habitude",
"impulse",
"inclination",
"leaning",
"partiality",
"penchant",
"predilection",
"predisposition",
"proclivity",
"propensity",
"tendency",
"turn"
]
},
"an abnormal state that disrupts a plant's or animal's normal bodily functioning":{
"antonyms":[
"health",
"wellness"
],
"examples":[
"born with a heart affection that later caused him problems"
],
"near antonyms":[
"fitness",
"healthiness",
"heartiness",
"robustness",
"soundness",
"wholeness",
"wholesomeness",
"fettle",
"shape"
],
"related":[
"contagion",
"contagious disease",
"contagium",
"infection",
"attack",
"bout",
"fit",
"spell",
"debility",
"decrepitude",
"feebleness",
"frailness",
"lameness",
"sickliness",
"unhealthiness",
"unsoundness",
"unwellness",
"weakness",
"malaise",
"matter",
"pip",
"epidemic",
"pest",
"pestilence",
"plague"
],
"synonyms":[
"ail",
"ailment",
"bug",
"complaint",
"complication",
"condition",
"disease",
"disorder",
"distemper",
"distemperature",
"fever",
"ill",
"illness",
"infirmity",
"malady",
"sickness",
"trouble"
]
},
"something that sets apart an individual from others of the same kind":{
"antonyms":[],
"examples":[
"religion, of one kind or another, is an affection common to every society known to have existed"
],
"near antonyms":[],
"related":[
"badge",
"indication",
"sign",
"emblem",
"symbol",
"token",
"charm",
"grace",
"excellence",
"merit",
"virtue",
"eccentricity",
"idiosyncrasy",
"oddity",
"quirk",
"individuality",
"singularity",
"uniqueness"
],
"synonyms":[
"attribute",
"attribution",
"character",
"characteristic",
"criterion",
"diagnostic",
"differentia",
"feature",
"fingerprint",
"hallmark",
"mark",
"marker",
"note",
"particularity",
"peculiarity",
"point",
"property",
"quality",
"specific",
"stamp",
"touch",
"trait"
]
},
"type":[
"noun"
]
},
"affiance":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"verb"
]
},
"affiliations":{
"the state of having shared interests or efforts (as in social or business matters)":{
"antonyms":[
"disaffiliations",
"dissociations"
],
"examples":[
"the Little League team, despite its name, the Northern Dynamites, has no affiliation with the Northern Dynamite Company"
],
"near antonyms":[
"breakups",
"dissolutions",
"disunions",
"divisions",
"partings",
"separations",
"severances",
"splits",
"alienations",
"divorces",
"estrangements"
],
"related":[
"businesses",
"dealings",
"interactions",
"exchanges",
"interconnections",
"interrelations",
"mutualisms",
"reciprocities",
"symbioses",
"incorporations",
"integrations",
"mergers",
"unifications",
"affinities",
"attachments",
"intimacies",
"rapports",
"sympathies",
"kinships",
"solidarities",
"unities",
"colleagueships",
"companies",
"companionships",
"fellowships",
"beds",
"cahoots",
"leagues"
],
"synonyms":[
"alliances",
"associations",
"collaborations",
"confederations",
"connections",
"cooperations",
"hookups",
"liaisons",
"linkups",
"partnerships",
"relations",
"relationships",
"tie-ups",
"unions"
]
},
"type":[
"noun"
]
},
"afford":{
"to have enough money for":{
"antonyms":[],
"examples":[
"we can't afford a new car this year"
],
"near antonyms":[],
"related":[
"cover",
"expend",
"finance",
"outlay",
"pay (for)",
"pony up",
"spring (for)",
"pick up",
"purchase",
"take",
"acquire",
"get",
"obtain",
"procure",
"secure",
"bid",
"offer",
"bankroll",
"endow",
"subsidize",
"underwrite"
],
"synonyms":[
"go",
"swing"
]
},
"type":[
"verb"
]
},
"afforded":{
"to have enough money for":{
"antonyms":[],
"examples":[
"we can't afford a new car this year"
],
"near antonyms":[],
"related":[
"covered",
"expended",
"financed",
"outlaid",
"paid (for)",
"ponied up",
"sprang (for)",
"sprung (for)",
"picked up",
"purchased",
"took",
"acquired",
"got",
"obtained",
"procured",
"secured",
"bade",
"bid",
"offered",
"bankrolled",
"endowed",
"subsidized",
"underwrote"
],
"synonyms":[
"swung",
"went"
]
},
"type":[
"verb"
]
},
"aficionados":{
"a person with a strong and habitual liking for something":{
"antonyms":[
"nonfans"
],
"examples":[
"an aficionado of the sci-fi series who has seen all the movies several times"
],
"near antonyms":[
"nonadmirers",
"belittlers",
"carpers",
"critics",
"detractors"
],
"related":[
"groupies",
"admirers",
"amateurs",
"collectors",
"connoisseurs",
"dilettantes",
"dilettanti",
"authorities",
"experts",
"adherents",
"converts",
"cultists",
"disciples",
"followers",
"hangers-on",
"votaries",
"advocates",
"apostles",
"backers",
"champions",
"evangelists",
"exponents",
"friends",
"patrons",
"promoters",
"proponents",
"supporters",
"partisans",
"partizans",
"zealots",
"boosters",
"rooters",
"well-wishers",
"faddists"
],
"synonyms":[
"addicts",
"buffs",
"bugs",
"devotees",
"enthusiasts",
"fanatics",
"fanciers",
"fans",
"fiends",
"fools",
"freaks",
"habitu\u00e9s",
"habitues",
"heads",
"hounds",
"junkies",
"lovers",
"maniacs",
"mavens",
"mavins",
"nuts",
"suckers"
]
},
"type":[
"noun"
]
},
"aftereffects":{
"a condition or occurrence traceable to a cause":{
"antonyms":[
"antecedents",
"causations",
"causes",
"occasions",
"reasons"
],
"examples":[
"in the U.S. slavery was abolished in 1865, but its aftereffects remained keenly felt long afterwards"
],
"near antonyms":[
"considerations",
"determinants",
"factors",
"bases",
"bases",
"foundations",
"grounds",
"groundworks",
"impetuses",
"incentives",
"inspirations",
"instigations",
"stimuli",
"mothers",
"origins",
"roots",
"sources",
"springs"
],
"related":[
"ramifications",
"denouements",
"d\u00e9nouements",
"echoes",
"echos",
"implications",
"repercussions",
"afterclaps",
"afterglows",
"aftershocks",
"blowbacks",
"by-products",
"byproducts",
"fallouts",
"offshoots",
"ripples",
"side effects",
"side reactions",
"spin-offs"
],
"synonyms":[
"aftermaths",
"backwashes",
"children",
"conclusions",
"consequences",
"corollaries",
"developments",
"effects",
"fates",
"fruits",
"issues",
"outcomes",
"outgrowths",
"precipitates",
"products",
"resultants",
"results",
"sequels",
"sequences",
"upshots"
]
},
"type":[
"noun"
]
},
"afterglow":{
"as in aftershock , afterclap":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"as in joy , elation":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"as in ray , streak":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
}
}

1210
en_MW_thesaurus/ag_mwt.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,50 @@
{
"ah":{
"how surprising, doubtful, or unbelievable":{
"antonyms":[],
"examples":[
"ah \u2014so that's the way it is!"
],
"near antonyms":[],
"related":[
"gee",
"gee whiz",
"ha",
"hello",
"hey",
"lo",
"oh",
"fiddlesticks",
"phooey",
"pooh",
"there",
"oops",
"whoops",
"woops",
"ugh",
"egad",
"gad",
"gadzooks",
"(the) deuce",
"the devil",
"the dickens",
"zounds"
],
"synonyms":[
"aha",
"come on",
"fie",
"indeed",
"my word",
"no",
"pshaw",
"well",
"what",
"why"
]
},
"type":[
"interjection"
]
}
}

407
en_MW_thesaurus/ai_mwt.json Normal file
View File

@ -0,0 +1,407 @@
{
"aided":{
"to provide (someone) with what is useful or necessary to achieve an end":{
"antonyms":[
"hindered"
],
"examples":[
"sought to aid her in her search for a dachshund puppy by looking online"
],
"near antonyms":[
"balked",
"barred",
"blocked",
"constrained",
"hampered",
"handicapped",
"held back",
"impeded",
"inhibited",
"obstructed",
"restrained",
"strangled",
"baffled",
"foiled",
"frustrated",
"inconvenienced",
"interfered",
"opposed",
"sabotaged",
"thwarted",
"deserted",
"disappointed",
"failed",
"let down",
"discouraged",
"disheartened",
"repressed",
"retarded",
"stifled",
"straitened",
"stunted",
"damaged",
"harmed",
"hurt",
"injured"
],
"related":[
"advanced",
"eased",
"facilitated",
"forwarded",
"fostered",
"furthered",
"launched",
"championed",
"endorsed",
"indorsed",
"patronized",
"promoted",
"sponsored",
"attended",
"cared (for)",
"comforted",
"ministered (to)",
"succored",
"sustained",
"bolstered",
"boosted",
"buttressed",
"reinforced",
"reenforced",
"advised",
"counseled",
"counselled",
"guided",
"mentored",
"nurtured",
"bailed out",
"delivered",
"rescued",
"saved",
"emboldened",
"encouraged",
"heartened",
"benefited",
"benefitted",
"favored",
"obliged",
"profited",
"served"
],
"synonyms":[
"abetted",
"assisted",
"backed",
"backstopped",
"helped",
"propped (up)",
"supported"
]
},
"type":[
"verb"
]
},
"aimed":{
"to have in mind as a purpose or goal":{
"antonyms":[],
"examples":[
"aimed to have his paper all done in time to go to the movies"
],
"near antonyms":[],
"related":[
"dreamed",
"dreamt",
"hoped",
"wished",
"considered",
"debated",
"mulled (over)",
"pondered",
"attempted",
"endeavored",
"strove",
"strived",
"struggled",
"tried",
"plotted",
"schemed",
"accomplished",
"achieved",
"effected",
"executed",
"performed"
],
"synonyms":[
"allowed",
"aspired",
"calculated",
"contemplated",
"designed",
"intended",
"looked",
"meant",
"meditated",
"planned",
"proposed",
"purported",
"purposed",
"went"
]
},
"to point or turn (something) toward a target or goal":{
"antonyms":[],
"examples":[
"the new accounting system is aimed at reducing costs"
],
"near antonyms":[
"averted",
"curved",
"deflected",
"detoured",
"diverted",
"rechanneled",
"rechannelled",
"shunted",
"sidetracked"
],
"related":[
"sighted",
"bore",
"faced",
"concentrated",
"focused",
"focussed",
"inclined",
"oriented",
"steered"
],
"synonyms":[
"bent",
"cast",
"directed",
"headed",
"held",
"leveled",
"levelled",
"pinpointed",
"set",
"trained"
]
},
"type":[
"verb"
]
},
"aircraft":{
"a machine that flies through the air":{
"antonyms":[],
"examples":[
"a new military aircraft",
"a company that manufactures aircraft"
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"aircraft carrier":{
"as in tanker , merchant ship":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"aircraft%20carrier":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"airdrome":{
"a place from which aircraft operate that usually has paved runways and a terminal":{
"antonyms":[],
"examples":[
"helicopters taking off from a military airdrome near Moscow"
],
"near antonyms":[],
"related":[
"air base",
"air park",
"helipad",
"heliport",
"jetport",
"airstrip",
"landing field",
"landing strip",
"runway",
"launchpad",
"pad"
],
"synonyms":[
"aerodrome",
"airfield",
"airport",
"field"
]
},
"type":[
"noun"
]
},
"airhead":{
"a stupid person":{
"antonyms":[
"brain",
"genius"
],
"examples":[
"I felt like an airhead when I couldn't remember my new neighbor's name in trying to introduce him"
],
"near antonyms":[
"intellect",
"intellectual",
"sage",
"thinker",
"whiz",
"wizard",
"polymath",
"Renaissance man",
"sharpie",
"sharpy"
],
"related":[
"booby",
"buffoon",
"fool",
"goose",
"loony",
"lunatic",
"madman",
"nut",
"zany",
"loser",
"gawk",
"featherbrain",
"scatterbrain",
"beast",
"boor",
"cad",
"churl",
"clown",
"creep",
"cur",
"heel",
"jerk",
"skunk",
"snake",
"stinker",
"villain"
],
"synonyms":[
"birdbrain",
"blockhead",
"bonehead",
"bubblehead",
"chowderhead",
"chucklehead",
"clodpoll",
"clodpole",
"clot",
"cluck",
"clunk",
"cretin",
"cuddy",
"cuddie",
"deadhead",
"dim bulb",
"dimwit",
"dip",
"dodo",
"dolt",
"donkey",
"doofus",
"dope",
"dork",
"dullard",
"dum-dum",
"dumbbell",
"dumbhead",
"dummkopf",
"dummy",
"dunce",
"dunderhead",
"fathead",
"gander",
"golem",
"goof",
"goon",
"half-wit",
"hammerhead",
"hardhead",
"idiot",
"ignoramus",
"imbecile",
"jackass",
"know-nothing",
"knucklehead",
"lamebrain",
"loggerhead",
"loon",
"lump",
"lunkhead",
"meathead",
"mome",
"moron",
"mug",
"mutt",
"natural",
"nimrod",
"nincompoop",
"ninny",
"ninnyhammer",
"nit",
"nitwit",
"noddy",
"noodle",
"numskull",
"numbskull",
"oaf",
"pinhead",
"prat",
"ratbag",
"saphead",
"schlub",
"shlub",
"schnook",
"simpleton",
"stock",
"stupe",
"stupid",
"thickhead",
"turkey",
"woodenhead",
"yahoo",
"yo-yo"
]
},
"type":[
"noun"
]
}
}

3760
en_MW_thesaurus/al_mwt.json Normal file

File diff suppressed because it is too large Load Diff

1043
en_MW_thesaurus/am_mwt.json Normal file

File diff suppressed because it is too large Load Diff

3054
en_MW_thesaurus/an_mwt.json Normal file

File diff suppressed because it is too large Load Diff

3008
en_MW_thesaurus/ap_mwt.json Normal file

File diff suppressed because it is too large Load Diff

3441
en_MW_thesaurus/ar_mwt.json Normal file

File diff suppressed because it is too large Load Diff

3596
en_MW_thesaurus/as_mwt.json Normal file

File diff suppressed because it is too large Load Diff

944
en_MW_thesaurus/at_mwt.json Normal file
View File

@ -0,0 +1,944 @@
{
"Attic":{
"a room or unfinished space directly beneath the roof of a building":{
"antonyms":[],
"examples":[
"rented the attic out to a college student"
],
"near antonyms":[],
"related":[
"hayloft"
],
"synonyms":[
"cockloft",
"garret",
"loft"
]
},
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"adjective",
"noun"
]
},
"athletic":{
"having great physical strength, skill, or ability":{
"antonyms":[],
"examples":[
"She had always been athletic , playing multiple sports even as a child."
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"adjective"
]
},
"atoms":{
"a very small piece":{
"antonyms":[],
"examples":[
"give me just one atom of information about the novel's surprise ending"
],
"near antonyms":[
"chunks",
"gobs",
"hunks",
"lumps",
"slabs",
"abundances",
"barrels",
"buckets",
"bushels",
"deals",
"heaps",
"loads",
"masses",
"mountains",
"pecks",
"piles",
"pots",
"profusions",
"quantities",
"rafts",
"scads",
"stacks",
"volumes",
"wads",
"wealths"
],
"related":[
"aces",
"dabs",
"dashes",
"driblets",
"drops",
"fractions",
"haets",
"halfpence",
"halfpennies",
"ha'pennies",
"iotas",
"jots",
"kennings",
"licks",
"minims",
"mites",
"modicums",
"nutshells",
"ounces",
"pinches",
"shreds",
"smatters",
"smidgens",
"smidgeons",
"smidgins",
"smidges",
"spots",
"strains",
"streaks",
"suspicions",
"tastes",
"touches",
"traces",
"whispers",
"whits",
"bites",
"mouthfuls",
"nibbles",
"tidbits",
"titbits",
"fragments",
"parts",
"portions",
"sections",
"chips",
"flakes",
"shards",
"shivers",
"slivers",
"splinters",
"clippings",
"parings",
"shavings",
"smithereens"
],
"synonyms":[
"bits",
"crumbs",
"dribbles",
"flecks",
"flyspecks",
"grains",
"granules",
"molecules",
"morsels",
"motes",
"nubbins",
"nuggets",
"particles",
"patches",
"scraps",
"scruples",
"snippets",
"snips",
"specks",
"tittles"
]
},
"type":[
"noun"
]
},
"attacked":{
"to criticize harshly and usually publicly":{
"antonyms":[],
"examples":[
"the mayor and all his aides were attacked mercilessly in the press when the scandal erupted"
],
"near antonyms":[
"acclaimed",
"commended",
"complimented",
"hailed",
"lauded",
"praised"
],
"related":[
"berated",
"harangued",
"harassed",
"harried",
"reviled",
"scolded",
"whipped",
"blasphemed",
"cursed",
"execrated",
"imprecated",
"profaned",
"affronted",
"insulted",
"slurred",
"aspersed",
"bad-mouthed",
"belittled",
"blackguarded",
"disparaged",
"put down",
"libeled",
"libelled",
"slandered",
"traduced",
"vilified",
"chastised",
"chid",
"chided",
"criticized",
"laced (into)",
"rebuked",
"reprimanded",
"fulminated",
"lashed (out)"
],
"synonyms":[
"abused",
"assailed",
"bashed",
"belabored",
"blasted",
"castigated",
"excoriated",
"jumped (on)",
"lambasted",
"potshot",
"savaged",
"scathed",
"slammed",
"trashed",
"vituperated"
]
},
"to start work on energetically":{
"antonyms":[],
"examples":[
"Courtney attacked the huge mess in her room with determination and enthusiasm"
],
"near antonyms":[
"avoided",
"evaded",
"shunned",
"dallied",
"dawdled",
"dillydallied",
"fiddled (around)",
"fooled",
"idled",
"lagged",
"messed",
"monkeyed (around)",
"played",
"poked",
"pottered (around)",
"puttered (around)",
"trifled"
],
"related":[
"addressed",
"approached",
"faced",
"buckled (down to)",
"concentrated (on)",
"focused (on)",
"focussed (on)",
"knuckled down (to)",
"zeroed (in on)",
"fell (to)",
"pitched in",
"plunged (in)",
"settled (down)",
"pursued",
"took up",
"undertook"
],
"synonyms":[
"dived (into)",
"dove (into)",
"tackled",
"waded (in or into)"
]
},
"to take sudden, violent action against":{
"antonyms":[],
"examples":[
"our dog unexpectedly attacked the mailman, sinking his teeth into the startled man's leg"
],
"near antonyms":[
"covered",
"defended",
"guarded",
"protected",
"secured",
"shielded"
],
"related":[
"bum-rushed",
"ganged up (on)",
"mobbed",
"swarmed",
"mugged",
"robbed",
"ambuscaded",
"ambushed",
"surprised",
"surprized",
"waylaid",
"blitzed",
"bombarded",
"bombed",
"nuked",
"barraged",
"cannonaded",
"cannoned",
"banged away (at)",
"battered",
"buffeted",
"plastered",
"beleaguered",
"besieged",
"pressed",
"harried",
"looted",
"pillaged",
"plundered",
"ravaged",
"sacked",
"forayed",
"invaded",
"overran",
"enveloped",
"flanked"
],
"synonyms":[
"assailed",
"assaulted",
"beset",
"bushwhacked",
"charged",
"descended (on or upon)",
"jumped (on)",
"pounced (on or upon)",
"raided",
"rushed",
"set on",
"sicced",
"sicked",
"stormed",
"struck",
"trashed",
"turned (on)",
"went in (on)"
]
},
"type":[
"verb"
]
},
"attend%20%28to%29":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"verb"
]
},
"attentive":{
"given to or made with heedful anticipation of the needs and happiness of others":{
"antonyms":[
"heedless",
"inconsiderate",
"thoughtless",
"unthinking"
],
"examples":[
"an attentive neighbor who helps out whenever and wherever she spots a need"
],
"near antonyms":[
"inattentive",
"uncaring",
"unheeding",
"inhospitable",
"unkind",
"unkindly",
"ill-bred",
"ill-mannered",
"impolite",
"rude",
"uncivil",
"unmannerly",
"unhelpful",
"malevolent",
"malicious",
"mean",
"spiteful"
],
"related":[
"brotherly",
"good",
"good-hearted",
"helpful",
"hospitable",
"kindhearted",
"kindly",
"neighborly",
"nice",
"caring",
"compassionate",
"sympathetic",
"tender",
"chivalrous",
"courteous",
"courtly",
"gallant",
"gracious",
"polite",
"diplomatic",
"tactful",
"deferential",
"dutiful",
"obliging",
"regardful",
"respectful",
"altruistic",
"beneficent",
"benevolent",
"benignant",
"humane",
"selfless",
"unselfish",
"charitable",
"generous",
"magnanimous"
],
"synonyms":[
"considerate",
"kind",
"solicitous",
"thoughtful"
]
},
"having the mind fixed on something":{
"antonyms":[
"absent",
"absentminded",
"abstracted",
"distracted",
"inattentive",
"inobservant",
"unabsorbed",
"unfocused",
"unfocussed"
],
"examples":[
"Susan became particularly attentive when the sportscaster turned to women's tennis, her favorite sport"
],
"near antonyms":[
"daydreaming",
"dreamy",
"faraway",
"foggy",
"hazy",
"lost",
"oblivious",
"preoccupied",
"remote",
"apathetic",
"disinterested",
"uninterested"
],
"related":[
"engaged",
"interested",
"intrigued",
"involved",
"hypnotized",
"mesmerized",
"alert",
"alive",
"conscious",
"open-eyed",
"watchful",
"wide-awake"
],
"synonyms":[
"absorbed",
"deep",
"engrossed",
"enthralled",
"focused",
"focussed",
"immersed",
"intent",
"observant",
"rapt"
]
},
"paying close attention usually for the purpose of anticipating approaching danger or opportunity":{
"antonyms":[
"asleep"
],
"examples":[
"if only for your own safety, you need to stay attentive when you are hunting"
],
"near antonyms":[
"absent",
"absentminded",
"absorbed",
"abstracted",
"daydreaming",
"dazed",
"distracted",
"dreaming",
"dreamy",
"engrossed",
"faraway",
"insensible",
"oblivious",
"preoccupied",
"sleeping",
"unaware",
"unconscious",
"unknowing",
"unwitting",
"careless",
"heedless",
"inattentive",
"unheeding",
"unmindful",
"unthinking",
"unwary",
"unprepared",
"unready"
],
"related":[
"alive",
"aware",
"conscious",
"sensitive",
"cognizant",
"heedful",
"keen",
"mindful",
"observing",
"regardful",
"sharp",
"sharp-eyed",
"hyperalert",
"hypervigilant",
"sleepless",
"wakeful",
"careful",
"cautious",
"chary",
"wary",
"prepared",
"ready"
],
"synonyms":[
"alert",
"Argus-eyed",
"awake",
"observant",
"open-eyed",
"tenty",
"tentie",
"vigilant",
"watchful",
"wide-awake"
]
},
"type":[
"adjective"
]
},
"attest":{
"to declare (something) to be true or genuine":{
"antonyms":[],
"examples":[
"the appraiser attests that the lamp is indeed an original Tiffany"
],
"near antonyms":[],
"related":[
"guarantee",
"warrant",
"affirm",
"assert",
"aver",
"avow",
"profess",
"vow"
],
"synonyms":[
"authenticate",
"avouch",
"certify",
"testify (to)",
"vouch (for)",
"witness"
]
},
"to give evidence or testimony to the truth or factualness of":{
"antonyms":[
"disprove",
"rebut",
"refute"
],
"examples":[
"I'll attest that she was at the party"
],
"near antonyms":[
"contradict",
"gainsay",
"deny",
"disavow",
"disclaim",
"challenge",
"contest",
"dispute",
"question"
],
"related":[
"avouch",
"back (up)",
"testify (to)",
"vouch (for)",
"witness",
"guarantee",
"warrant",
"affirm",
"assert",
"aver",
"avow",
"declare",
"profess",
"demonstrate",
"document",
"establish",
"prove",
"reinforce",
"reenforce"
],
"synonyms":[
"argue",
"authenticate",
"bear out",
"certify",
"confirm",
"corroborate",
"substantiate",
"support",
"validate",
"verify",
"vindicate"
]
},
"to make a solemn declaration under oath for the purpose of establishing a fact":{
"antonyms":[],
"examples":[
"an eyewitness who will attest to my innocence"
],
"near antonyms":[],
"related":[
"verify",
"vouch",
"promise",
"vow"
],
"synonyms":[
"depose",
"swear",
"testify",
"witness"
]
},
"type":[
"verb"
]
},
"attestations":{
"something presented in support of the truth or accuracy of a claim":{
"antonyms":[
"disproofs"
],
"examples":[
"the fact that he spent hours standing in line for the sequel should be attestation enough that he's a die-hard fan of the movie series"
],
"near antonyms":[
"rebuttals",
"refutations",
"accusations",
"allegations",
"charges",
"assumptions",
"conjectures",
"guesses",
"presumptions",
"surmises",
"suspicions"
],
"related":[
"(the) goods",
"certificates",
"documents",
"exhibits",
"demonstrations",
"illustrations",
"authentications",
"identifications",
"manifestations",
"verifications"
],
"synonyms":[
"confirmations",
"corroborations",
"documentations",
"evidences",
"proofs",
"substantiations",
"testaments",
"testimonials",
"testimonies",
"validations",
"vouchers",
"witnesses"
]
},
"type":[
"noun"
]
},
"attired":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"to outfit with clothes and especially fine or special clothes":{
"antonyms":[
"disarrayed",
"disrobed",
"stripped",
"stript",
"unclothed",
"undressed",
"untrussed"
],
"examples":[
"men attired in tuxedos for the awards banquet"
],
"near antonyms":[
"denuded",
"divested",
"uncovered",
"undraped",
"unveiled"
],
"related":[
"cloaked",
"frocked",
"jacketed",
"mantled",
"vested",
"draped",
"enswathed",
"happed",
"huddled",
"swaddled",
"swathed",
"wrapped",
"accoutred",
"accoutered",
"bedighted",
"bedight",
"equipped",
"furnished",
"habilitated",
"outfitted",
"tailored",
"uniformed",
"dressed down",
"underdressed"
],
"synonyms":[
"appareled",
"apparelled",
"arrayed",
"bedecked",
"caparisoned",
"clothed",
"clad",
"costumed",
"decked (out)",
"did up",
"dressed",
"dressed up",
"enrobed",
"garbed",
"garmented",
"got up",
"gowned",
"habited",
"invested",
"rigged (out)",
"robed",
"suited",
"togged (up or out)",
"toileted",
"vestured"
]
},
"type":[
"adjective",
"verb"
]
},
"attributions":{
"something that sets apart an individual from others of the same kind":{
"antonyms":[],
"examples":[
"a genuine respect for one another is one of the most commonly cited attributions of a happily married couple"
],
"near antonyms":[],
"related":[
"badges",
"indications",
"signs",
"emblems",
"symbols",
"tokens",
"charms",
"graces",
"excellences",
"merits",
"virtues",
"eccentricities",
"idiosyncrasies",
"oddities",
"quirks",
"individualities",
"singularities"
],
"synonyms":[
"affections",
"attributes",
"characteristics",
"characters",
"criteria",
"criterions",
"diagnostics",
"differentiae",
"features",
"fingerprints",
"hallmarks",
"markers",
"marks",
"notes",
"particularities",
"peculiarities",
"points",
"properties",
"qualities",
"specifics",
"stamps",
"touches",
"traits"
]
},
"type":[
"noun"
]
},
"attuned":{
"to bring to a state free of conflicts, inconsistencies, or differences":{
"antonyms":[
"disharmonized"
],
"examples":[
"after years spent in academia, he's finding it difficult to attune himself to the corporate culture"
],
"near antonyms":[
"confused",
"disarrayed",
"disordered",
"disorganized",
"disrupted",
"disturbed",
"skewed",
"upset",
"alienated",
"estranged"
],
"related":[
"adapted",
"tuned",
"blended",
"blent",
"combined",
"connected",
"correlated",
"dovetailed",
"fitted",
"fit",
"fused",
"integrated",
"joined",
"matched",
"merged",
"orchestrated",
"paired",
"squared",
"suited",
"synchronized",
"synthesized",
"unified",
"united",
"aligned",
"alined",
"arranged",
"arrayed",
"balanced",
"equalized",
"evened",
"ordered",
"proportioned",
"regularized",
"standardized"
],
"synonyms":[
"accommodated",
"conciliated",
"conformed",
"coordinated",
"harmonized",
"keyed",
"reconciled"
]
},
"type":[
"verb"
]
}
}

985
en_MW_thesaurus/au_mwt.json Normal file
View File

@ -0,0 +1,985 @@
{
"auction":{
"a public event at which things are sold to the people who offer to pay the most":{
"antonyms":[],
"examples":[
"She bought the desk at an auction .",
"He made several bids at the auction ."
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun",
"verb"
]
},
"auditing":{
"to look over closely (as for judging quality or condition)":{
"antonyms":[],
"examples":[
"audited the equipment to make sure that everything was in working order"
],
"near antonyms":[
"skimming",
"missing"
],
"related":[
"noticing",
"observing",
"watching",
"combing",
"perusing",
"poring (over)",
"analyzing",
"dissecting",
"parsing",
"delving (into)",
"exploring",
"investigating",
"plumbing",
"probing",
"researching",
"studying",
"categorizing",
"classifying",
"picking over",
"reinspecting",
"rereviewing",
"re-reviewing",
"resurveying"
],
"synonyms":[
"checking (out)",
"conning",
"examining",
"inspecting",
"overlooking",
"overseeing",
"reviewing",
"scanning",
"scrutinizing",
"surveying",
"viewing"
]
},
"type":[
"verb"
]
},
"augment":{
"to make greater in size, amount, or number":{
"antonyms":[
"abate",
"decrease",
"de-escalate",
"diminish",
"downsize",
"dwindle",
"lessen",
"lower",
"minify",
"reduce",
"subtract (from)"
],
"examples":[
"our volleyball team was augmented by some of the exchange team's players"
],
"near antonyms":[
"abbreviate",
"abridge",
"curtail",
"shorten",
"compress",
"condense",
"constrict",
"contract",
"cut back",
"retrench"
],
"related":[
"boom",
"jump",
"skyrocket",
"spike",
"bump (up)",
"ratchet (up)",
"rachet (up)",
"blow up",
"dilate",
"distend",
"inflate",
"draw out",
"elongate",
"flesh (out)",
"lengthen",
"prolong",
"protract",
"stretch",
"develop",
"enhance",
"heighten",
"intensify",
"magnify",
"complement",
"supplement",
"beef (up)",
"reinforce",
"reenforce",
"strengthen",
"maximize",
"accumulate",
"amass",
"collect",
"follow up",
"parlay"
],
"synonyms":[
"accelerate",
"add (to)",
"aggrandize",
"amplify",
"boost",
"build up",
"compound",
"enlarge",
"escalate",
"expand",
"extend",
"hype",
"increase",
"multiply",
"pump up",
"raise",
"stoke",
"supersize",
"swell",
"up"
]
},
"type":[
"verb"
]
},
"aurorae":{
"the first appearance of light in the morning or the time of its appearance":{
"antonyms":[
"nightfalls",
"sundowns",
"sunsets"
],
"examples":[
"a gorgeous pink aurora aroused us out of our slumber"
],
"near antonyms":[
"darks",
"midnights",
"nights",
"nighttimes",
"afternoons",
"middays",
"dusks",
"evenings",
"eventides",
"gloamings",
"twilights"
],
"related":[
"daytimes",
"forenoons"
],
"synonyms":[
"cockcrows",
"dawns",
"daybreaks",
"daylights",
"days",
"lights",
"mornings",
"morns",
"sunrises",
"suns",
"sunups"
]
},
"type":[
"noun"
]
},
"austerity":{
"the quality or state of being stern and serious in manner or appearance":{
"antonyms":[],
"examples":[
"His air of austerity tends to put others off."
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"the state of lacking sufficient money or material possessions":{
"antonyms":[],
"examples":[
"His family spent years living in austerity during the recession."
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
],
"voluntary restraint in the satisfaction of one's appetites":{
"antonyms":[],
"examples":[
"They moved off the grid to live a life of austerity ."
],
"near antonyms":[],
"related":[],
"synonyms":[]
}
},
"author":{
"a person who creates a written work":{
"antonyms":[
"nonauthor"
],
"examples":[
"a brilliant novel by a first-time author"
],
"near antonyms":[],
"related":[
"auteur",
"belletrist",
"belle-lettrist",
"stylist",
"wordsmith",
"coauthor",
"coscenarist",
"cowriter",
"ghostwriter",
"hack",
"hatchet man",
"scribbler",
"wordmonger",
"biographer",
"hagiographer",
"autobiographer",
"memoirist",
"memorialist",
"fabulist",
"fictioneer",
"fictionist",
"novelist",
"romancer",
"storyteller",
"essayist",
"pamphleteer",
"satirist",
"dramatist",
"playwright",
"scenarist",
"screenwriter",
"scriptwriter",
"prosaist",
"prosateur",
"proser",
"bard",
"poet",
"rhymer",
"versifier",
"blogger",
"columnist",
"journalist",
"newspaperman",
"paragrapher",
"reporter",
"sportswriter"
],
"synonyms":[
"litterateur",
"litt\u00e9rateur",
"pen",
"penman",
"scribe",
"scrivener",
"writer"
]
},
"a person who establishes a whole new field of endeavor":{
"antonyms":[],
"examples":[
"the author of modern genetics"
],
"near antonyms":[
"disciple",
"follower",
"pupil",
"student",
"supporter"
],
"related":[
"cocreator",
"cofounder",
"conceiver",
"contriver",
"designer",
"deviser",
"formulator",
"innovator",
"introducer",
"inventor",
"spawner",
"builder",
"maker",
"producer",
"developer",
"pioneer",
"researcher",
"researchist",
"organizer",
"promoter",
"encourager",
"galvanizer",
"inspiration",
"inspirer"
],
"synonyms":[
"begetter",
"creator",
"establisher",
"father",
"founder",
"founding father",
"generator",
"inaugurator",
"initiator",
"instituter",
"institutor",
"originator",
"sire"
]
},
"the being worshipped as the creator and ruler of the universe":{
"antonyms":[],
"examples":[
"let us thank the Author of our being for all the blessings He has bestowed"
],
"near antonyms":[],
"related":[],
"synonyms":[
"Allah",
"Almighty",
"Creator",
"deity",
"Divinity",
"Eternal",
"Everlasting",
"Father",
"God",
"Godhead",
"Jehovah",
"King",
"Lord",
"Maker",
"Providence",
"Supreme Being",
"Yahweh",
"Jahveh",
"Yahveh"
]
},
"to compose and set down on paper the words of":{
"antonyms":[],
"examples":[
"authored a new biography of Thomas Jefferson"
],
"near antonyms":[],
"related":[
"cast",
"compose",
"craft",
"draft",
"draw up",
"formulate",
"frame",
"prepare",
"recast",
"redraft",
"revise",
"rewrite",
"letter",
"print",
"type",
"typewrite",
"record",
"take down",
"transcribe",
"autograph",
"pencil (in)",
"register",
"sign",
"couch",
"express",
"phrase",
"put",
"word"
],
"synonyms":[
"pen",
"scratch (out)",
"scribble",
"write"
]
},
"type":[
"noun",
"verb"
]
},
"authority":{
"a person with a high level of knowledge or skill in a field":{
"antonyms":[
"amateur",
"inexpert",
"nonexpert"
],
"examples":[
"the leading authority on neural anatomy"
],
"near antonyms":[
"apprentice",
"beginner",
"neophyte",
"novice",
"dabbler",
"dilettante",
"layman",
"nonprofessional"
],
"related":[
"pro",
"professional",
"consultant",
"hired gun",
"specialist",
"addict",
"aficionado",
"afficionado",
"buff",
"devotee",
"enthusiast",
"fan",
"craftsman",
"journeyman",
"all-rounder",
"jack-of-all-trades",
"Renaissance man",
"mistress"
],
"synonyms":[
"ace",
"adept",
"artist",
"cognoscente",
"connoisseur",
"crackerjack",
"crackajack",
"dab",
"dab hand",
"expert",
"fiend",
"geek",
"guru",
"hand",
"hotshot",
"maestro",
"master",
"maven",
"mavin",
"meister",
"past master",
"proficient",
"scholar",
"shark",
"sharp",
"virtuoso",
"whiz",
"wizard"
]
},
"lawful control over the affairs of a political unit (as a nation)":{
"antonyms":[],
"examples":[
"the sheriff had authority over the whole county"
],
"near antonyms":[],
"related":[
"reign",
"dominion",
"power",
"sovereignty",
"sovranty",
"supremacy",
"sway",
"command",
"leadership",
"direction",
"management",
"regulation",
"superintendence",
"supervision",
"autocracy",
"dictatorship",
"domination",
"hegemony",
"mastery",
"oppression",
"subjugation",
"tyranny"
],
"synonyms":[
"administration",
"governance",
"government",
"jurisdiction",
"regime",
"r\u00e9gime",
"regimen",
"rule"
]
},
"something (as a belief) that serves as the basis for another thing":{
"antonyms":[],
"examples":[
"I had good authority to believe that the information was correct"
],
"near antonyms":[],
"related":[
"antecedent",
"cause",
"consideration",
"impetus",
"incentive",
"inspiration",
"instigation",
"occasion",
"stimulus"
],
"synonyms":[
"account",
"grounds",
"motive",
"reason",
"subject",
"wherefore",
"why"
]
},
"something mentioned in a text as providing related and especially supporting information":{
"antonyms":[],
"examples":[
"the Bible is the sole authority for his impassioned defense of creationism"
],
"near antonyms":[],
"related":[
"citation",
"excerpt",
"extract",
"quotation",
"caption",
"cross-reference",
"footnote",
"note"
],
"synonyms":[
"reference",
"source"
]
},
"the capacity to persuade":{
"antonyms":[
"inconclusiveness",
"ineffectiveness",
"ineffectuality",
"ineffectualness"
],
"examples":[
"a strict grammarian whose pronouncements carried plenty of authority with my third-grade English teacher"
],
"near antonyms":[
"invalidity",
"shakiness",
"unsoundness",
"feebleness",
"powerlessness",
"weakness"
],
"related":[
"impact",
"might",
"power",
"punch",
"strength",
"weight",
"believability",
"credibility",
"soundness",
"validity",
"authoritativeness",
"definitiveness",
"influence",
"sway",
"appeal",
"seductiveness"
],
"synonyms":[
"cogency",
"conclusiveness",
"convincingness",
"effectiveness",
"force",
"forcefulness",
"persuasion",
"persuasiveness",
"suasiveness"
]
},
"the power to direct the thinking or behavior of others usually indirectly":{
"antonyms":[],
"examples":[
"speaks with a persuasive authority on matters of public health"
],
"near antonyms":[
"helplessness",
"impotence",
"impotency",
"powerlessness",
"weakness"
],
"related":[
"counterinfluence",
"command",
"dominance",
"dominion",
"mastery",
"predominance",
"reign",
"scepter",
"sovereignty",
"sovranty",
"supremacy",
"consequence",
"eminence",
"importance",
"moment",
"impact",
"impress",
"impression",
"imprint",
"mark"
],
"synonyms":[
"clout",
"credit",
"heft",
"in",
"influence",
"juice",
"leverage",
"pull",
"sway",
"weight"
]
},
"the right or means to command or control others":{
"antonyms":[
"impotence",
"impotency",
"powerlessness"
],
"examples":[
"by the authority vested in me, I now pronounce you married"
],
"near antonyms":[
"helplessness",
"weakness"
],
"related":[
"clout",
"influence",
"leverage",
"pull",
"voice",
"weight",
"jurisdiction",
"direction",
"management",
"dominance",
"imperium",
"predominance",
"sovereignty",
"sovranty",
"supremacy",
"prerogative",
"privilege",
"right",
"eminence",
"importance",
"moment"
],
"synonyms":[
"arm",
"clutch",
"command",
"control",
"death grip",
"dominion",
"grip",
"hold",
"mastery",
"power",
"reign",
"rein(s)",
"sway"
]
},
"type":[
"noun"
]
},
"authorize":{
"to give a right to":{
"antonyms":[
"disqualify"
],
"examples":[
"this pass will authorize you to go backstage"
],
"near antonyms":[
"disable",
"disempower",
"disenfranchise",
"decertify",
"disallow",
"forbid",
"proscribe",
"delegitimize",
"invalidate",
"nullify"
],
"related":[
"empower",
"enable",
"enfranchise",
"license",
"licence",
"approve",
"endorse",
"indorse",
"allow",
"let",
"permit",
"accredit",
"certificate",
"certify",
"charter",
"ratify",
"legitimize",
"sanction",
"validate",
"warrant",
"reaccredit",
"reapprove",
"recertify",
"recharter",
"revalidate"
],
"synonyms":[
"entitle",
"privilege",
"qualify"
]
},
"to give official acceptance of as satisfactory":{
"antonyms":[
"decline",
"deny",
"disallow",
"disapprove",
"negative",
"reject",
"turn down",
"veto"
],
"examples":[
"a system for sound reproduction that has been authorized as meeting the electronic industry's highest standards"
],
"near antonyms":[
"ban",
"enjoin",
"forbid",
"illegalize",
"interdict",
"prohibit",
"proscribe",
"disregard",
"ignore",
"neglect",
"overlook",
"rebuff",
"rebut",
"refuse",
"spurn"
],
"related":[
"accept",
"acknowledge",
"affirm",
"certify",
"endorse",
"indorse",
"validate",
"bless",
"canonize",
"sanctify",
"initial",
"rubber-stamp",
"sign",
"sign off (on)",
"allow",
"enable",
"legalize",
"license",
"licence",
"pass",
"permit",
"reapprove"
],
"synonyms":[
"accredit",
"approbate",
"approve",
"clear",
"confirm",
"finalize",
"formalize",
"homologate",
"OK",
"okay",
"ratify",
"sanction",
"warrant"
]
},
"to give official or legal power to":{
"antonyms":[
"disqualify"
],
"examples":[
"only the school nurse is authorized to give any necessary shots"
],
"near antonyms":[
"ban",
"bar",
"block",
"constrain",
"deny",
"disallow",
"disbar",
"discourage",
"disenfranchise",
"disfranchise",
"exclude",
"hinder",
"hold back",
"impede",
"inhibit",
"obstruct",
"prevent",
"shut out",
"stop",
"enjoin",
"forbid",
"interdict",
"outlaw",
"prohibit",
"proscribe",
"veto"
],
"related":[
"approve",
"clear",
"credential",
"endorse",
"indorse",
"OK",
"okay",
"sanction",
"affirm",
"confirm",
"validate",
"inaugurate",
"induct",
"initiate",
"install",
"instate",
"swear in",
"allow",
"let",
"permit",
"enfranchise",
"entitle",
"privilege"
],
"synonyms":[
"accredit",
"certify",
"charter",
"commission",
"empower",
"enable",
"invest",
"license",
"licence",
"qualify",
"vest",
"warrant"
]
},
"type":[
"verb"
]
},
"autobahns":{
"as in interstates , motorways":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"autoroute":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
}
}

524
en_MW_thesaurus/av_mwt.json Normal file
View File

@ -0,0 +1,524 @@
{
"avers":{
"to state as a fact usually forcefully":{
"antonyms":[
"denies",
"gainsays"
],
"examples":[
"was tearfully averring his innocence"
],
"near antonyms":[
"abandons",
"disavows",
"disclaims",
"disowns",
"negates",
"negatives",
"rejects",
"repudiates",
"challenges",
"disputes",
"questions",
"confutes",
"disproves",
"rebuts",
"refutes",
"contradicts",
"counters"
],
"related":[
"announces",
"broadcasts",
"proclaims",
"argues",
"rationalizes",
"reasons",
"confirms",
"justifies",
"vindicates",
"defends",
"perseveres",
"supports",
"upholds",
"reaffirms",
"reasserts"
],
"synonyms":[
"affirms",
"alleges",
"asserts",
"avouches",
"avows",
"claims",
"contends",
"declares",
"insists",
"maintains",
"professes",
"protests",
"purports",
"warrants"
]
},
"to state clearly and strongly":{
"antonyms":[],
"examples":[
"averred that she didn't need any help choosing her own clothes"
],
"near antonyms":[
"minimizes",
"understates",
"disregards",
"ignores",
"neglects",
"overlooks"
],
"related":[
"advances",
"advertises",
"boosts",
"plugs",
"promotes",
"publicizes",
"announces",
"blazes",
"calls",
"proclaims",
"pronounces",
"says",
"accents",
"accentuates",
"emphasizes",
"stresses",
"underlines",
"underscores",
"advocates",
"champions",
"defends",
"espouses",
"supports",
"upholds",
"assures",
"convinces",
"persuades",
"explains",
"justifies",
"rationalizes",
"reaffirms",
"reasserts"
],
"synonyms":[
"affirms",
"asserts",
"avouches",
"avows",
"declares",
"guarantees",
"lays down",
"professes"
]
},
"type":[
"verb"
]
},
"averts":{
"to keep from happening by taking action in advance":{
"antonyms":[],
"examples":[
"her careful planning averted disaster"
],
"near antonyms":[
"abets",
"aids",
"assists",
"eases",
"facilitates",
"smooths",
"smoothes",
"unclogs",
"advances",
"cultivates",
"encourages",
"forwards",
"fosters",
"furthers",
"nurtures",
"promotes",
"allows",
"leaves",
"lets",
"permits"
],
"related":[
"anticipates",
"provides",
"negates",
"neutralizes",
"nullifies",
"saves",
"baffles",
"balks",
"checkmates",
"deters",
"foils",
"frustrates",
"thwarts",
"bars",
"blocks",
"hampers",
"hinders",
"impedes",
"interferes (with)",
"retards",
"stalls",
"deflects",
"fends (off)",
"stops",
"wards (off)",
"avoids",
"circumvents",
"dodges",
"ducks",
"eludes",
"escapes",
"eschews",
"evades",
"shakes",
"shirks",
"shuns",
"forbids",
"inhibits",
"prohibits",
"arrests",
"checks",
"halts",
"stops",
"compensates (for)",
"counteracts",
"counterbalances",
"makes up (for)",
"offsets"
],
"synonyms":[
"forestalls",
"heads off",
"helps",
"obviates",
"precludes",
"prevents",
"staves off"
]
},
"type":[
"verb"
]
},
"avoiding":{
"to get or keep away from (as a responsibility) through cleverness or trickery":{
"antonyms":[],
"examples":[
"trying to avoid writing thank-you notes for the gifts he didn't like"
],
"near antonyms":[
"accepting",
"courting",
"embracing",
"pursuing",
"seeking",
"welcoming",
"catching",
"contracting",
"incurring"
],
"related":[
"missing",
"averting",
"deflecting",
"diverting",
"obviating",
"parrying",
"preventing",
"warding (off)",
"banning",
"barring",
"debarring",
"eliminating",
"excepting",
"excluding",
"precluding",
"ruling out",
"bypassing",
"circumventing",
"skirting",
"foiling",
"foxing",
"frustrating",
"outfoxing",
"outsmarting",
"outwitting",
"overreaching",
"thwarting"
],
"synonyms":[
"dodging",
"ducking",
"eluding",
"escaping",
"eschewing",
"evading",
"finessing",
"getting around",
"scaping",
"shaking",
"shirking",
"shuffling (out of)",
"shunning",
"weaseling (out of)"
]
},
"to put an end to by formal action":{
"antonyms":[],
"examples":[
"asked the court to avoid the contract because it was signed under duress"
],
"near antonyms":[
"enacting",
"laying down",
"legislating",
"establishing",
"founding",
"instituting",
"formalizing",
"legalizing",
"legitimating",
"legitimizing",
"validating",
"passing",
"ratifying",
"allowing",
"approving",
"authorizing",
"clearing",
"endorsing",
"indorsing",
"permitting",
"sanctioning",
"warranting",
"commanding",
"decreeing",
"mandating",
"ordering",
"prescribing"
],
"related":[
"countermanding",
"overriding",
"overruling",
"overturning",
"vetoing",
"aborting",
"calling",
"calling off",
"dropping",
"recalling",
"retracting",
"reversing",
"revoking",
"suspending",
"withdrawing",
"banning",
"enjoining",
"forbidding",
"outlawing",
"prohibiting",
"disallowing",
"dismissing",
"rejecting",
"annihilating",
"breaking down",
"eliminating",
"eradicating",
"erasing",
"liquidating",
"removing",
"throwing out",
"writing off"
],
"synonyms":[
"abating",
"abolishing",
"abrogating",
"annulling",
"canceling",
"cancelling",
"disannulling",
"dissolving",
"invalidating",
"negating",
"nullifying",
"nulling",
"quashing",
"repealing",
"rescinding",
"rolling back",
"striking down",
"vacating",
"voiding"
]
},
"type":[
"verb"
]
},
"avouches":{
"to declare (something) to be true or genuine":{
"antonyms":[],
"examples":[
"a note from my doctor avouching that my medical condition did indeed disqualify me from gym class"
],
"near antonyms":[],
"related":[
"guarantees",
"warrants",
"affirms",
"asserts",
"avers",
"avows",
"professes",
"vows"
],
"synonyms":[
"attests",
"authenticates",
"certifies",
"testifies (to)",
"vouches (for)",
"witnesses"
]
},
"to state as a fact usually forcefully":{
"antonyms":[
"denies",
"gainsays"
],
"examples":[
"avouched that he had never cheated on his taxes in his life"
],
"near antonyms":[
"abandons",
"disavows",
"disclaims",
"disowns",
"negates",
"negatives",
"rejects",
"repudiates",
"challenges",
"disputes",
"questions",
"confutes",
"disproves",
"rebuts",
"refutes",
"contradicts",
"counters"
],
"related":[
"announces",
"broadcasts",
"proclaims",
"argues",
"rationalizes",
"reasons",
"confirms",
"justifies",
"vindicates",
"defends",
"perseveres",
"supports",
"upholds",
"reaffirms",
"reasserts"
],
"synonyms":[
"affirms",
"alleges",
"asserts",
"avers",
"avows",
"claims",
"contends",
"declares",
"insists",
"maintains",
"professes",
"protests",
"purports",
"warrants"
]
},
"to state clearly and strongly":{
"antonyms":[],
"examples":[
"she tends to avouch her opinions in such a way as to imply that anyone who thinks otherwise is an idiot"
],
"near antonyms":[
"minimizes",
"understates",
"disregards",
"ignores",
"neglects",
"overlooks"
],
"related":[
"advances",
"advertises",
"boosts",
"plugs",
"promotes",
"publicizes",
"announces",
"blazes",
"calls",
"proclaims",
"pronounces",
"says",
"accents",
"accentuates",
"emphasizes",
"stresses",
"underlines",
"underscores",
"advocates",
"champions",
"defends",
"espouses",
"supports",
"upholds",
"assures",
"convinces",
"persuades",
"explains",
"justifies",
"rationalizes",
"reaffirms",
"reasserts"
],
"synonyms":[
"affirms",
"asserts",
"avers",
"avows",
"declares",
"guarantees",
"lays down",
"professes"
]
},
"type":[
"verb"
]
}
}

190
en_MW_thesaurus/aw_mwt.json Normal file
View File

@ -0,0 +1,190 @@
{
"awash":{
"containing, covered with, or thoroughly penetrated by water":{
"antonyms":[
"arid",
"dry",
"unwatered",
"waterless"
],
"examples":[
"the streets were awash from the heavy rains"
],
"near antonyms":[
"bone-dry",
"hyperarid",
"ultradry",
"waterproof",
"water-repellent",
"water-resistant",
"watertight",
"baked",
"dehydrated",
"freeze-dried",
"droughty",
"parched",
"sere",
"sear",
"sunbaked",
"thirsty",
"wrung"
],
"related":[
"deluged",
"drowned",
"flooded",
"inundated",
"overflowed",
"submerged",
"swamped",
"hydrated",
"dipped",
"dunked",
"splashed",
"aqueous",
"steeped",
"flushed",
"irrigated",
"laved",
"rinsed",
"sluiced",
"clammy",
"damp",
"dampish",
"dank",
"humid",
"moist",
"semimoist",
"wettish",
"boggy",
"miry",
"seepy",
"sloppy",
"squashy"
],
"synonyms":[
"bathed",
"bedraggled",
"doused",
"dowsed",
"drenched",
"dripping",
"logged",
"saturate",
"saturated",
"soaked",
"soaking",
"sodden",
"soggy",
"sopping",
"soppy",
"soused",
"washed",
"water-soaked",
"watered",
"waterlogged",
"watery",
"wet"
]
},
"possessing or covered with great numbers or amounts of something specified":{
"antonyms":[],
"examples":[
"the literary review is currently awash in submissions and will not be accepting any more until next year"
],
"near antonyms":[
"bare",
"barren",
"blank",
"devoid",
"empty",
"stark",
"vacant",
"void",
"depleted",
"drained",
"exhausted",
"deficient",
"incomplete",
"insufficient",
"short"
],
"related":[
"brimming",
"bulging",
"bursting",
"chock-full",
"chockful",
"crammed",
"crowded",
"fat",
"filled",
"full",
"jammed",
"jam-packed",
"loaded",
"packed",
"saturated",
"stuffed",
"clogged",
"congested",
"overcrowded",
"overfilled",
"overflowing",
"overfull",
"overladen",
"overloaded",
"overstuffed",
"surfeited",
"alive",
"animated",
"astir",
"bustling",
"busy",
"buzzing",
"humming",
"lively"
],
"synonyms":[
"abounding",
"abundant",
"flush",
"fraught",
"lousy",
"replete",
"rife",
"swarming",
"teeming",
"thick",
"thronging"
]
},
"type":[
"adjective"
]
},
"awesomeness":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"awkwardly":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"adverb"
]
}
}

142
en_MW_thesaurus/ay_mwt.json Normal file
View File

@ -0,0 +1,142 @@
{
"aye":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"for all time":{
"antonyms":[
"ne'er",
"never",
"nevermore"
],
"examples":[
"a friendship that will aye endure"
],
"near antonyms":[
"once"
],
"related":[
"enduringly",
"long",
"perennially"
],
"synonyms":[
"always",
"e'er",
"eternally",
"ever",
"everlastingly",
"evermore",
"forever",
"forevermore",
"indelibly",
"permanently",
"perpetually"
]
},
"on every relevant occasion":{
"antonyms":[
"ne'er",
"never"
],
"examples":[
"I aye thought that she was the loveliest woman I ever laid eyes on"
],
"near antonyms":[
"intermittently",
"occasionally",
"periodically",
"sometimes",
"sporadically",
"infrequently",
"rarely",
"seldom",
"unusually",
"variously"
],
"related":[
"commonly",
"frequently",
"oft",
"often",
"oftentimes",
"ofttimes",
"recurrently",
"repeatedly",
"continuously",
"steadily",
"uninterruptedly",
"unremittingly",
"dependably",
"generally",
"habitually",
"normally",
"ordinarily",
"regularly",
"routinely",
"typically",
"usually",
"inevitably",
"eternally",
"everlastingly"
],
"synonyms":[
"always",
"consistently",
"constantly",
"continually",
"ever",
"forever",
"incessantly",
"invariably",
"night and day",
"perpetually",
"unfailingly"
]
},
"type":[
"adverb",
"noun"
],
"used to express agreement":{
"antonyms":[
"nay",
"no",
"no way",
"scarcely"
],
"examples":[
"aye , you're right about that"
],
"near antonyms":[],
"related":[
"absolutely",
"assuredly",
"certainly",
"indeed",
"indisputably",
"positively",
"undoubtedly",
"unquestionably"
],
"synonyms":[
"all right",
"alright",
"exactly",
"OK",
"okay",
"okeydoke",
"okeydokey",
"yea",
"yeah",
"yep",
"yes",
"yo"
]
}
}
}

5469
en_MW_thesaurus/ba_mwt.json Normal file

File diff suppressed because it is too large Load Diff

7674
en_MW_thesaurus/be_mwt.json Normal file

File diff suppressed because it is too large Load Diff

2315
en_MW_thesaurus/bi_mwt.json Normal file

File diff suppressed because it is too large Load Diff

7142
en_MW_thesaurus/bl_mwt.json Normal file

File diff suppressed because it is too large Load Diff

6474
en_MW_thesaurus/bo_mwt.json Normal file

File diff suppressed because it is too large Load Diff

5620
en_MW_thesaurus/br_mwt.json Normal file

File diff suppressed because it is too large Load Diff

4950
en_MW_thesaurus/bu_mwt.json Normal file

File diff suppressed because it is too large Load Diff

128
en_MW_thesaurus/by_mwt.json Normal file
View File

@ -0,0 +1,128 @@
{
"byname":{
"a descriptive or familiar name given instead of or in addition to the one belonging to an individual":{
"antonyms":[],
"examples":[
"Thomas Edward Lawrence is better known to most people by his byname , Lawrence of Arabia"
],
"near antonyms":[],
"related":[
"appellation",
"denomination",
"denotation",
"designation",
"label",
"tag",
"title",
"anonym",
"nom de guerre",
"nom de plume",
"pen name",
"pseudonym"
],
"synonyms":[
"alias",
"cognomen",
"epithet",
"handle",
"moniker",
"monicker",
"nickname",
"sobriquet",
"soubriquet",
"surname"
]
},
"type":[
"noun"
]
},
"bypath":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"bystreet":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"byzantine":{
"having many parts or aspects that are usually interrelated":{
"antonyms":[
"noncomplex",
"noncomplicated",
"plain",
"simple",
"uncomplicated"
],
"examples":[
"spent his first year at the Pentagon just trying to fathom its byzantine workings"
],
"near antonyms":[
"oversimplified",
"simplified",
"simplistic",
"homogeneous",
"uniform",
"unvaried"
],
"related":[
"overcomplex",
"overcomplicated",
"composite",
"compound",
"heterogeneous",
"mixed",
"multibranched",
"multifaceted",
"multifarious",
"multipart",
"varied",
"challenging",
"difficult",
"tough",
"impenetrable",
"incomprehensible",
"inexplicable",
"Kafkaesque",
"unfathomable",
"unintelligible"
],
"synonyms":[
"baroque",
"complex",
"complicate",
"complicated",
"convoluted",
"daedal",
"elaborate",
"intricate",
"involute",
"involved",
"knotty",
"labyrinthian",
"labyrinthine",
"sophisticated",
"tangled"
]
},
"type":[
"adjective"
]
}
}

6775
en_MW_thesaurus/ca_mwt.json Normal file

File diff suppressed because it is too large Load Diff

927
en_MW_thesaurus/ce_mwt.json Normal file
View File

@ -0,0 +1,927 @@
{
"ceases":{
"the stopping of a process or activity":{
"antonyms":[
"continuances",
"continuations"
],
"examples":[
"worked without cease for the betterment of humanity"
],
"near antonyms":[
"extensions",
"persistences",
"prolongations"
],
"related":[
"mop-ups",
"phaseouts",
"abeyances",
"breaks",
"interruptions",
"layoffs",
"letups",
"moratoriums",
"moratoria",
"pauses",
"standstills",
"suspensions"
],
"synonyms":[
"arrestments",
"arrests",
"cessations",
"checks",
"closedowns",
"closes",
"closures",
"conclusions",
"cutoffs",
"discontinuances",
"discontinuations",
"endings",
"ends",
"expirations",
"finishes",
"halts",
"lapses",
"offsets",
"shutdowns",
"shutoffs",
"stays",
"stoppages",
"stops",
"surceases",
"terminations"
]
},
"to bring (as an action or operation) to an immediate end":{
"antonyms":[],
"examples":[
"cease chattering and get down to work, please"
],
"near antonyms":[
"carries on",
"continues",
"follows through (with)",
"keeps up",
"runs on",
"advances",
"proceeds",
"progresses",
"actuates",
"drives",
"impels",
"propels",
"stirs"
],
"related":[
"completes",
"concludes",
"finishes",
"closes (down)",
"deactivates",
"blockades",
"blocks",
"dams",
"delays",
"detains",
"hinders",
"holds",
"holds back",
"impedes",
"kiboshes",
"obstructs",
"stems",
"calls",
"suspends",
"arrests",
"brakes",
"checks",
"clamps down",
"reins (in)",
"squashes",
"squelches",
"stamps",
"stanches",
"staunches",
"stunts",
"suppresses",
"turns back",
"pauses",
"stays",
"suspends",
"abolishes",
"aborts",
"annuls",
"demolishes",
"destroys",
"dissolves",
"kills",
"ruins",
"scuttles",
"snuffs"
],
"synonyms":[
"breaks",
"breaks off",
"breaks up",
"cans",
"cuts off",
"cuts out",
"desists (from)",
"discontinues",
"drops",
"ends",
"gives over",
"halts",
"knocks off",
"lays off",
"leaves off",
"packs (up or in)",
"quits",
"shuts off",
"stops"
]
},
"to come to an end":{
"antonyms":[
"continues",
"hangs on",
"persists"
],
"examples":[
"the rain finally ceased , and we were able to continue the baseball game"
],
"near antonyms":[
"draws out",
"extends",
"prolongs",
"protracts"
],
"related":[
"desists (from)",
"lays off (of)",
"refrains (from)",
"gives over",
"knocks off",
"packs (up or in)",
"breaks down",
"conks (out)",
"cuts out",
"stalls",
"pauses",
"stays",
"suspends",
"abates",
"peters (out)",
"winds down"
],
"synonyms":[
"breaks off",
"breaks up",
"closes",
"concludes",
"dead-ends",
"determines",
"dies",
"discontinues",
"elapses",
"ends",
"expires",
"finishes",
"goes",
"halts",
"lapses",
"leaves off",
"lets up",
"passes",
"quits",
"stops",
"terminates",
"winds up",
"winks (out)"
]
},
"type":[
"noun",
"verb"
]
},
"celestial":{
"of, relating to, or suggesting heaven":{
"antonyms":[
"chthonic",
"chthonian",
"hellish",
"infernal",
"plutonian",
"sulfurous",
"Tartarean"
],
"examples":[
"movie scenes depicting life after death are usually accompanied by celestial music"
],
"near antonyms":[
"earthly",
"mundane",
"terrestrial",
"worldly",
"anti-utopian",
"dystopian"
],
"related":[
"supernatural",
"transcendent",
"transcendental",
"unearthly",
"unworldly",
"angelic",
"angelical",
"beatific",
"blissful",
"Olympian",
"paradisiacal",
"paradisiac",
"utopian",
"cosmic",
"cosmical",
"galactic",
"stellar"
],
"synonyms":[
"elysian",
"empyreal",
"empyrean",
"ethereal",
"heavenly",
"supernal"
]
},
"type":[
"adjective"
]
},
"cemented":{
"as in bonded , glued":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"as in combined , welded":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"adjective",
"verb"
]
},
"censoring":{
"to remove objectionable parts from":{
"antonyms":[],
"examples":[
"the producers were told that they would have to censor their movie if they wanted a PG rating"
],
"near antonyms":[
"approving",
"authorizing",
"sanctioning"
],
"related":[
"cleansing",
"purging",
"purifying",
"abbreviating",
"blue-penciling",
"editing",
"shortening",
"bleeping",
"blipping",
"cutting (out)",
"deleting",
"excising",
"expunging",
"gutting",
"x-ing (out)",
"x'ing (out)",
"blacking out",
"repressing",
"silencing",
"suppressing",
"censuring",
"condemning",
"denouncing",
"examining",
"reviewing",
"screening",
"scrutinizing"
],
"synonyms":[
"bowdlerizing",
"cleaning (up)",
"expurgating",
"laundering",
"red-penciling"
]
},
"type":[
"verb"
]
},
"censorship":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"censures":{
"an often public or formal expression of disapproval":{
"antonyms":[
"citations",
"commendations",
"endorsements",
"indorsements"
],
"examples":[
"a rare censure of a senator by the full United States Senate for misconduct"
],
"near antonyms":[
"acclamations",
"honors",
"tributes",
"encomiums",
"encomia",
"eulogies",
"panegyrics",
"plaudits",
"praises",
"approvals",
"blessings",
"sanctions"
],
"related":[
"admonishments",
"admonitions",
"castigations",
"chastisements",
"damnations",
"punishments",
"remonstrances",
"businesses",
"devils",
"dressing-downs",
"lashes",
"lectures",
"lessons",
"raps",
"scoldings",
"talking-tos",
"tongue-lashings",
"belittlements",
"criticisms",
"deprecations",
"depreciations",
"disparagements",
"pans"
],
"synonyms":[
"comminations",
"condemnations",
"denunciations",
"excoriations",
"objurgations",
"rebukes",
"reprimands",
"reproaches",
"reproofs",
"riot acts",
"strictures"
]
},
"to declare to be morally wrong or evil":{
"antonyms":[
"blesses"
],
"examples":[
"our society generally censures the taking of another person's life"
],
"near antonyms":[
"approves",
"endorses",
"indorses",
"sanctions",
"eulogizes",
"exalts",
"extols",
"extolls",
"glorifies",
"lauds",
"praises",
"acclaims",
"applauds",
"commends",
"hails",
"salutes",
"touts",
"consecrates",
"hallows",
"sanctifies",
"honors",
"reveres",
"venerates"
],
"related":[
"attacks",
"blames",
"blasts",
"criticizes",
"dispraises",
"disses",
"faults",
"knocks",
"pans",
"slams",
"belittles",
"deprecates",
"disparages",
"dooms",
"sentences",
"convicts",
"blacklists",
"excommunicates",
"ostracizes",
"castigates",
"chastises",
"rebukes",
"reprimands",
"reproaches",
"admonishes",
"chides",
"reproves",
"berates",
"lambastes",
"lambasts",
"rakes",
"scolds",
"upbraids",
"vituperates",
"curses",
"imprecates",
"abhors",
"abominates",
"detests",
"hates",
"loathes",
"reviles"
],
"synonyms":[
"anathematizes",
"condemns",
"damns",
"decries",
"denounces",
"execrates",
"reprehends",
"reprobates"
]
},
"to express one's unfavorable opinion of the worth or quality of":{
"antonyms":[
"extols",
"extolls",
"lauds",
"praises"
],
"examples":[
"critics have striven to outdo each other in censuring that pop novelist's latest work"
],
"near antonyms":[
"approves",
"commends",
"endorses",
"indorses",
"recommends",
"sanctions"
],
"related":[
"skewers",
"tweaks",
"assails",
"attacks",
"blasts",
"clobbers",
"slams",
"slashes",
"nicks (at)",
"snipes (at)",
"beefs",
"bellyaches",
"bitches",
"carps",
"cavils",
"complains",
"crabs",
"croaks",
"fusses",
"gripes",
"grouses",
"growls",
"grumbles",
"kicks",
"kvetches",
"moans",
"murmurs",
"mutters",
"niggles",
"quibbles",
"whines",
"admonishes",
"chides",
"drubs",
"rebukes",
"reprimands",
"reproaches",
"reproves",
"berates",
"castigates",
"crucifies",
"excoriates",
"flays",
"gibbets",
"hammers",
"keelhauls",
"lambastes",
"lambasts",
"lashes",
"pillories",
"scolds",
"upbraids",
"bad-mouths",
"belittles",
"decries",
"derides",
"discommends",
"disparages",
"puts down"
],
"synonyms":[
"blames",
"condemns",
"criticizes",
"denounces",
"dispraises",
"disses",
"faults",
"knocks",
"pans",
"reprehends",
"slags"
]
},
"to express public or formal disapproval of":{
"antonyms":[
"cites",
"commends",
"endorses",
"indorses"
],
"examples":[
"a vote to censure the President for conduct that was unbecoming to his office"
],
"near antonyms":[
"acclaims",
"applauds",
"hails",
"honors",
"eulogizes",
"lauds",
"praises",
"approves",
"blesses",
"sanctions"
],
"related":[
"admonishes",
"chastises",
"castigates",
"punishes",
"bawls out",
"berates",
"chews out",
"cuts up",
"dresses down",
"flays",
"gibbets",
"jaws",
"keelhauls",
"lambastes",
"lambasts",
"lectures",
"rags",
"rails (at or against)",
"rates",
"scolds",
"scores",
"tells off",
"upbraids",
"belittles",
"criticizes",
"deprecates",
"depreciates",
"disparages"
],
"synonyms":[
"condemns",
"denounces",
"objurgates",
"rebukes",
"reprimands",
"reproaches",
"reproves"
]
},
"type":[
"noun",
"verb"
]
},
"ceremony":{
"an oft-repeated action or series of actions performed in accordance with tradition or a set of rules":{
"antonyms":[],
"examples":[
"a beautiful, old-fashioned wedding ceremony"
],
"near antonyms":[],
"related":[
"amenities",
"civility",
"decorum",
"etiquette",
"graces",
"proprieties",
"protocol",
"convention",
"custom",
"habit",
"manners",
"mores",
"practice",
"practise",
"standard",
"tradition",
"way",
"celebration",
"service"
],
"synonyms":[
"ceremonial",
"form",
"formality",
"observance",
"rite",
"ritual",
"solemnity"
]
},
"type":[
"noun"
]
},
"certificate":{
"a written or printed paper giving information about or proof of something":{
"antonyms":[],
"examples":[
"a certificate will be awarded to each person who completes the course in lifesaving"
],
"near antonyms":[],
"related":[
"credentials",
"diploma",
"parchment",
"record",
"warrant",
"writ",
"warranty",
"coupon",
"voucher"
],
"synonyms":[
"certification",
"document",
"instrument"
]
},
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun",
"verb"
]
},
"certifications":{
"a written or printed paper giving information about or proof of something":{
"antonyms":[],
"examples":[
"submitted the required certifications"
],
"near antonyms":[],
"related":[
"credentials",
"diplomas",
"parchments",
"records",
"warrants",
"writs",
"warranties",
"coupons",
"vouchers"
],
"synonyms":[
"certificates",
"documents",
"instruments"
]
},
"type":[
"noun"
]
},
"certifying":{
"to declare (something) to be true or genuine":{
"antonyms":[],
"examples":[
"experts certified the letter as indeed having been written by Abraham Lincoln"
],
"near antonyms":[],
"related":[
"guaranteeing",
"warranting",
"affirming",
"asserting",
"averring",
"avowing",
"professing",
"vowing"
],
"synonyms":[
"attesting",
"authenticating",
"avouching",
"testifying (to)",
"vouching (for)",
"witnessing"
]
},
"to give evidence or testimony to the truth or factualness of":{
"antonyms":[
"disproving",
"rebutting",
"refuting"
],
"examples":[
"please bring in a doctor's note to certify that you were really sick"
],
"near antonyms":[
"contradicting",
"gainsaying",
"denying",
"disavowing",
"disclaiming",
"challenging",
"contesting",
"disputing",
"questioning"
],
"related":[
"avouching",
"backing (up)",
"testifying (to)",
"vouching (for)",
"witnessing",
"guaranteeing",
"warranting",
"affirming",
"asserting",
"averring",
"avowing",
"declaring",
"professing",
"demonstrating",
"documenting",
"establishing",
"proving",
"reinforcing",
"reenforcing"
],
"synonyms":[
"arguing",
"attesting",
"authenticating",
"bearing out",
"confirming",
"corroborating",
"substantiating",
"supporting",
"validating",
"verifying",
"vindicating"
]
},
"to give official or legal power to":{
"antonyms":[
"disqualifying"
],
"examples":[
"certified her as a teacher"
],
"near antonyms":[
"banning",
"barring",
"blocking",
"constraining",
"denying",
"disallowing",
"disbarring",
"discouraging",
"disenfranchising",
"disfranchising",
"excluding",
"hindering",
"holding back",
"impeding",
"inhibiting",
"obstructing",
"preventing",
"shutting out",
"stopping",
"enjoining",
"forbidding",
"interdicting",
"outlawing",
"prohibiting",
"proscribing",
"vetoing"
],
"related":[
"approving",
"clearing",
"credentialing",
"credentialling",
"endorsing",
"indorsing",
"OK'ing",
"okaying",
"sanctioning",
"affirming",
"confirming",
"validating",
"inaugurating",
"inducting",
"initiating",
"installing",
"instating",
"swearing in",
"allowing",
"letting",
"permitting",
"enfranchising",
"entitling",
"privileging"
],
"synonyms":[
"accrediting",
"authorizing",
"chartering",
"commissioning",
"empowering",
"enabling",
"investing",
"licensing",
"licencing",
"qualifying",
"vesting",
"warranting"
]
},
"type":[
"verb"
]
}
}

6201
en_MW_thesaurus/ch_mwt.json Normal file

File diff suppressed because it is too large Load Diff

893
en_MW_thesaurus/ci_mwt.json Normal file
View File

@ -0,0 +1,893 @@
{
"cinch":{
"one that is certain to succeed":{
"antonyms":[],
"examples":[
"after that hole in one, she's a cinch to make the cut for the next round of the tournament"
],
"near antonyms":[
"dark horse",
"long shot"
],
"related":[
"certainty",
"inevitability",
"eventuality",
"foregone conclusion"
],
"synonyms":[
"lock",
"shoo-in",
"slam dunk",
"sure thing"
]
},
"something that is easy to do":{
"antonyms":[
"bear",
"beast",
"chore",
"headache",
"horror show",
"killer",
"labor",
"murder",
"pain",
"sticky wicket",
"stinker"
],
"examples":[
"the clear instructions made setting up the audiovisual system a cinch"
],
"near antonyms":[
"brainteaser",
"poser",
"stumper",
"toughie",
"toughy",
"bother",
"nuisance",
"trouble"
],
"related":[
"no-brainer",
"nothing",
"sitting duck",
"gimme",
"laugher",
"walkaway"
],
"synonyms":[
"breeze",
"cake",
"cakewalk",
"child's play",
"cream puff",
"duck soup",
"kid stuff",
"picnic",
"pushover",
"roses",
"snap"
]
},
"to make sure, certain, or safe":{
"antonyms":[],
"examples":[
"the team's latest victory cinches a trip to the play-offs"
],
"near antonyms":[
"enfeeble",
"undermine",
"weaken"
],
"related":[
"attest",
"certify",
"vouch",
"warrant",
"witness",
"pledge",
"promise",
"swear"
],
"synonyms":[
"assure",
"ensure",
"guarantee",
"guaranty",
"ice",
"insure",
"secure"
]
},
"type":[
"noun",
"verb"
]
},
"circuit":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"to travel completely around":{
"antonyms":[],
"examples":[
"after circuiting the exterior of the church, the procession headed inside"
],
"near antonyms":[],
"related":[
"circumambulate",
"cross",
"perambulate",
"traverse"
],
"synonyms":[
"circle",
"circumnavigate",
"circumvent",
"compass",
"encircle",
"girdle",
"orbit",
"ring",
"round"
]
},
"type":[
"noun",
"verb"
]
},
"circulate":{
"to become known":{
"antonyms":[],
"examples":[
"the prince denies the story about an extramarital affair that's been circulating in the tabloids"
],
"near antonyms":[
"hush (up)",
"suppress",
"conceal",
"disguise",
"hide",
"mask",
"secrete"
],
"related":[
"develop",
"transpire",
"unfold",
"disclose",
"reveal",
"spill",
"tell"
],
"synonyms":[
"break",
"come out",
"get about",
"get around",
"get out",
"get round",
"leak (out)",
"out",
"spread"
]
},
"to cause to be known over a considerable area or by many people":{
"antonyms":[],
"examples":[
"circulate the plans for the new stadium around town to get people's reaction"
],
"near antonyms":[
"cloak",
"conceal",
"enshroud",
"hide",
"hold (in)",
"mask",
"obscure",
"secrete",
"shroud",
"veil",
"contain",
"limit",
"restrict"
],
"related":[
"radiate",
"sprawl",
"diffuse",
"dispense",
"disperse",
"dissipate",
"scatter",
"sow",
"communicate",
"convey",
"impart",
"pass (on)",
"transmit"
],
"synonyms":[
"broadcast",
"disseminate",
"propagate",
"spread"
]
},
"to make (as a piece of information) the subject of common talk without any authority or confirmation of accuracy":{
"antonyms":[],
"examples":[
"circulated a rumor that someone was about to be fired"
],
"near antonyms":[],
"related":[
"bandy (about)",
"blab",
"dish",
"gossip",
"tattle",
"bare",
"disclose",
"divulge",
"expose",
"let on (about)",
"report",
"reveal",
"spill",
"tell",
"hint",
"imply",
"insinuate",
"intimate",
"suggest",
"blaze",
"broadcast",
"proclaim",
"promulgate",
"propagate",
"publicize",
"spread"
],
"synonyms":[
"bruit (about)",
"noise (about or abroad)",
"rumor",
"whisper"
]
},
"type":[
"verb"
]
},
"circumfused":{
"to surround or cover closely":{
"antonyms":[],
"examples":[
"circumfused in darkness, the isolated house seemed the perfect spot for a clandestine meeting"
],
"near antonyms":[
"bared",
"denuded",
"exposed",
"stripped",
"stript"
],
"related":[
"curtained",
"draped",
"embedded",
"imbedded",
"encased",
"swaddled",
"blanketed",
"overlaid",
"overspread",
"camouflaged",
"cloaked",
"disguised",
"masked",
"circled",
"encircled",
"enlaced",
"enwound"
],
"synonyms":[
"bosomed",
"bowered",
"cocooned",
"embosomed",
"embowered",
"embraced",
"enclosed",
"inclosed",
"encompassed",
"enfolded",
"enshrouded",
"enswathed",
"enveloped",
"enwrapped",
"invested",
"involved",
"lapped",
"mantled",
"muffled",
"shrouded",
"swathed",
"veiled",
"wrapped"
]
},
"type":[
"verb"
]
},
"circumlocution":{
"deliberate evasion in speech":{
"antonyms":[],
"examples":[
"rather than answering the question directly, he resorted to circumlocution , which made her suspect that he was hiding something"
],
"near antonyms":[
"candor",
"directness",
"forthrightness",
"frankness",
"openheartedness",
"openness",
"plainness",
"plumpness",
"straightforwardness"
],
"related":[
"quibbling",
"ambiguity",
"ambiguousness",
"equivocalness",
"murkiness",
"nebulousness",
"obscureness",
"obscurity",
"opacity"
],
"synonyms":[
"equivocation",
"shuffle",
"tergiversation"
]
},
"the use of too many words to express an idea":{
"antonyms":[],
"examples":[
"your papers have to be five pages long, but that's five pages of substance, not circumlocution"
],
"near antonyms":[
"brevity",
"briefness",
"compactness",
"conciseness",
"concision",
"crispness",
"pithiness",
"succinctness",
"terseness"
],
"related":[
"circuitousness",
"circularity",
"digressiveness",
"pleonasm",
"tautology",
"reiteration",
"repetition",
"repetitiousness",
"repetitiveness",
"embellishment",
"embroidering",
"exaggeration",
"hyperbole",
"overstatement"
],
"synonyms":[
"diffuseness",
"diffusion",
"garrulity",
"garrulousness",
"logorrhea",
"long-windedness",
"periphrasis",
"prolixity",
"redundancy",
"verbalism",
"verbiage",
"verboseness",
"verbosity",
"windiness",
"wordage",
"wordiness"
]
},
"type":[
"noun"
]
},
"circumscribing":{
"to mark the limits of":{
"antonyms":[],
"examples":[
"Lake Michigan circumscribes the city of Chicago on the east"
],
"near antonyms":[],
"related":[
"controlling",
"determining",
"governing",
"delineating",
"describing"
],
"synonyms":[
"bounding",
"defining",
"delimiting",
"demarcating",
"demarking",
"limiting",
"marking (off)",
"terminating"
]
},
"to set bounds or an upper limit for":{
"antonyms":[
"exceeding"
],
"examples":[
"circumscribed his enthusiasm so as not to make the losing side feel worse"
],
"near antonyms":[
"broadening",
"expanding",
"widening",
"overextending",
"overreaching"
],
"related":[
"barring",
"blocking",
"hampering",
"hindering",
"impeding",
"obstructing",
"constricting",
"contracting",
"lessening",
"narrowing",
"pinching",
"squeezing",
"tightening",
"quelling",
"repressing",
"suppressing",
"numbering",
"modifying",
"qualifying"
],
"synonyms":[
"capping",
"confining",
"holding down",
"limiting",
"restricting"
]
},
"type":[
"verb"
]
},
"circumspect":{
"having or showing a close attentiveness to avoiding danger or trouble":{
"antonyms":[
"careless",
"heedless",
"incautious",
"unguarded",
"unmindful",
"unsafe",
"unwary"
],
"examples":[
"she has a reputation for being quiet and circumspect in investigating charges of child abuse"
],
"near antonyms":[
"bold",
"brash",
"impetuous",
"rash",
"reckless",
"venturesome",
"asleep",
"inattentive",
"regardless",
"inconsiderate",
"thoughtless",
"lax",
"neglectful",
"negligent",
"remiss",
"imprudent",
"indiscreet",
"injudicious",
"absentminded",
"forgetful",
"inadvertent",
"unintentional",
"unplanned"
],
"related":[
"advertent",
"attentive",
"awake",
"observant",
"regardful",
"vigilant",
"watchful",
"hypercautious",
"foresighted",
"foresightful",
"forethoughtful",
"provident",
"thoughtful",
"cagey",
"cagy",
"calculating",
"canny",
"shrewd",
"deliberate",
"slow",
"ultracareful",
"ultracautious"
],
"synonyms":[
"alert",
"careful",
"cautious",
"chary",
"conservative",
"considerate",
"gingerly",
"guarded",
"heedful",
"safe",
"wary"
]
},
"type":[
"adjective"
]
},
"circumventing":{
"to avoid by going around":{
"antonyms":[],
"examples":[
"circumvented the traffic jam by taking an alternate route"
],
"near antonyms":[
"confronting",
"facing",
"meeting",
"accepting",
"courting",
"embracing",
"pursuing",
"seeking",
"welcoming"
],
"related":[
"leapfrogging",
"avoiding",
"dodging",
"ducking",
"eluding",
"escaping",
"eschewing",
"evading",
"fleeing",
"shaking",
"shunning"
],
"synonyms":[
"bypassing",
"circumnavigating",
"detouring",
"skirting"
]
},
"to avoid having to comply with (something) especially through cleverness":{
"antonyms":[
"complying (with)",
"following",
"keeping",
"obeying",
"observing"
],
"examples":[
"employees who try to circumvent the company's dress code"
],
"near antonyms":[
"acceding (to)",
"acquiescing (to)",
"assenting (to)",
"accepting",
"courting",
"embracing",
"pursuing",
"seeking",
"welcoming",
"catching",
"contracting",
"incurring"
],
"related":[
"avoiding",
"ducking",
"eluding",
"end-running",
"escaping",
"eschewing",
"evading",
"outflanking",
"shaking",
"shirking",
"shunning",
"disobeying",
"disregarding",
"flouting",
"ignoring",
"averting",
"deflecting",
"diverting",
"obviating",
"parrying",
"preventing",
"warding (off)"
],
"synonyms":[
"beating",
"bypassing",
"dodging",
"getting around",
"shortcutting",
"sidestepping",
"skirting"
]
},
"to travel completely around":{
"antonyms":[],
"examples":[
"most casual joggers will be able to circumvent the reservoir without too much of a strain"
],
"near antonyms":[],
"related":[
"circumambulating",
"crossing",
"perambulating",
"traversing"
],
"synonyms":[
"circling",
"circuiting",
"circumnavigating",
"compassing",
"encircling",
"girdling",
"orbiting",
"ringing",
"rounding"
]
},
"type":[
"verb"
]
},
"citations":{
"a formal expression of praise":{
"antonyms":[],
"examples":[
"the citation for the Nobel Prize winner noted his major contributions to quantum theory"
],
"near antonyms":[
"censures",
"condemnations",
"denunciations",
"indictments",
"rebukes",
"reprimands",
"reproofs",
"admonitions",
"corrections",
"harangues",
"lectures",
"sermons"
],
"related":[
"awards",
"decorations",
"dedications",
"honors",
"prizes",
"acclaim",
"acclamations",
"laudations",
"applauses",
"plaudits",
"bravos",
"bravoes",
"hallelujahs",
"kudos",
"approvals",
"cachets",
"compliments",
"recommendations"
],
"synonyms":[
"accolades",
"commendations",
"dithyrambs",
"encomiums",
"encomia",
"eulogia",
"eulogiums",
"eulogies",
"homages",
"hymns",
"paeans",
"panegyrics",
"salutations",
"tributes"
]
},
"a formal recognition of an achievement or praiseworthy deed":{
"antonyms":[],
"examples":[
"a police officer who has received several citations for his work with troubled youths in the city"
],
"near antonyms":[],
"related":[
"decorations",
"medals",
"ribbons",
"accolades",
"awards",
"honors",
"kudos",
"prizes",
"tributes",
"dedications"
],
"synonyms":[
"acknowledgments",
"acknowledgements",
"commendations",
"mentions"
]
},
"a passage referred to, repeated, or offered as an example":{
"antonyms":[],
"examples":[
"in your paper be sure to include citations to back up any points you make about the play"
],
"near antonyms":[],
"related":[
"allusions",
"references",
"excerpts",
"extracts",
"lines",
"parts",
"sections",
"snippets"
],
"synonyms":[
"quotations",
"quotes"
]
},
"type":[
"noun"
]
},
"citizen":{
"a person who lives in a town on a permanent basis":{
"antonyms":[
"noncitizen"
],
"examples":[
"claimed that the good citizens of the town were sick of high property taxes"
],
"near antonyms":[
"alien",
"foreigner",
"guest",
"nonnative",
"tourist",
"transient",
"visitor",
"gownsman"
],
"related":[
"townswoman",
"cliff dweller",
"denizen",
"dweller",
"habitant",
"inhabitant",
"national",
"native",
"occupant",
"resident",
"resider",
"subject",
"town",
"townsfolk",
"townspeople",
"suburbanite",
"urbanite"
],
"synonyms":[
"burgher",
"townie",
"towny",
"townsman",
"villager"
]
},
"a person who owes allegiance to a government and is protected by it":{
"antonyms":[
"alien",
"noncitizen"
],
"examples":[
"conscientious citizens who regard voting as a duty as well as a right"
],
"near antonyms":[
"foreigner",
"stranger",
"immigrant",
"nonnative"
],
"related":[
"compatriot",
"countryman",
"inhabitant",
"native",
"nonimmigrant",
"resident"
],
"synonyms":[
"freeman",
"national",
"subject"
]
},
"type":[
"noun"
]
},
"civies":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"plural noun"
]
}
}

5085
en_MW_thesaurus/cl_mwt.json Normal file

File diff suppressed because it is too large Load Diff

21943
en_MW_thesaurus/co_mwt.json Normal file

File diff suppressed because it is too large Load Diff

6308
en_MW_thesaurus/cr_mwt.json Normal file

File diff suppressed because it is too large Load Diff

4344
en_MW_thesaurus/cu_mwt.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,14 @@
{
"cwm":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
}
}

116
en_MW_thesaurus/cy_mwt.json Normal file
View File

@ -0,0 +1,116 @@
{
"cycle":{
"a long or seemingly long period of time":{
"antonyms":[],
"examples":[
"years, centuries, and cycles will pass before I budge on that issue"
],
"near antonyms":[
"flash",
"instant",
"jiffy",
"minute",
"moment",
"second",
"shake",
"split second",
"trice",
"twinkle",
"twinkling",
"wink",
"microsecond",
"nanosecond"
],
"related":[
"infinity",
"lifetime"
],
"synonyms":[
"aeon",
"eon",
"age",
"blue moon",
"coon's age",
"donkey's years",
"eternity",
"forever",
"long",
"months",
"moon"
]
},
"a series of events or actions that repeat themselves regularly and in the same order":{
"antonyms":[],
"examples":[
"the cycle of birth, growth, decline, and death that is experienced by all life forms"
],
"near antonyms":[],
"related":[
"pattern",
"syndrome",
"course",
"development",
"progression",
"run",
"beat",
"circuit",
"loop",
"ring",
"revolution",
"rotation",
"turn",
"turnover",
"chain",
"sequence",
"series",
"string",
"succession",
"train"
],
"synonyms":[
"circle",
"merry-go-round",
"round",
"wheel",
"zodiac"
]
},
"a two-wheeled vehicle that is propelled by the use of pedals and steered through the use of handlebars":{
"antonyms":[],
"examples":[
"a top-of-the-line cycle incorporating the latest technology"
],
"near antonyms":[],
"related":[
"mountain bike",
"tandem bicycle",
"ten-speed"
],
"synonyms":[
"bicycle",
"bike",
"push-bike",
"push bicycle",
"two-wheeler",
"velocipede"
]
},
"type":[
"noun"
]
},
"cynicism":{
"cynical beliefs; beliefs that people are generally selfish and dishonest":{
"antonyms":[],
"examples":[
"Nothing could change her cynicism about politics."
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
}
}

View File

@ -0,0 +1,70 @@
{
"czar":{
"a person of rank, power, or influence in a particular field":{
"antonyms":[],
"examples":[
"a showbiz czar who is said to be able to make or break a career"
],
"near antonyms":[
"half-pint",
"lightweight",
"small-timer",
"inferior",
"subordinate",
"underling",
"nobody",
"nothing",
"zero"
],
"related":[
"big boy",
"big cheese",
"bigfoot",
"biggie",
"big gun",
"big shot",
"big wheel",
"bigwig",
"fat cat",
"figure",
"heavy",
"heavyweight",
"honcho",
"kahuna",
"main man",
"mover and shaker",
"nabob",
"nawab",
"notable",
"personage",
"pooh-bah",
"poo-bah",
"supremo",
"VIP",
"celebrity",
"personality",
"star",
"superstar",
"deity",
"demigod",
"god"
],
"synonyms":[
"baron",
"captain",
"king",
"lion",
"lord",
"magnate",
"mogul",
"monarch",
"Napoleon",
"prince",
"tycoon"
]
},
"type":[
"noun"
]
}
}

3322
en_MW_thesaurus/da_mwt.json Normal file

File diff suppressed because it is too large Load Diff

15434
en_MW_thesaurus/de_mwt.json Normal file

File diff suppressed because it is too large Load Diff

18720
en_MW_thesaurus/di_mwt.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,14 @@
{
"djinni":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
}
}

4748
en_MW_thesaurus/do_mwt.json Normal file

File diff suppressed because it is too large Load Diff

5511
en_MW_thesaurus/dr_mwt.json Normal file

File diff suppressed because it is too large Load Diff

1583
en_MW_thesaurus/du_mwt.json Normal file

File diff suppressed because it is too large Load Diff

160
en_MW_thesaurus/dw_mwt.json Normal file
View File

@ -0,0 +1,160 @@
{
"dwelled%20%28on%20or%20upon%29":{
"to speak or write about insistently and usually tiresomely":{
"antonyms":[
"disregarded",
"forgot",
"ignored",
"overlooked",
"overpassed",
"passed over",
"slighted",
"slurred (over)"
],
"examples":[
"she was always dwelling on past insults and snubs, both real and imagined"
],
"near antonyms":[],
"related":[
"accented",
"accentuated",
"emphasized",
"paid (up)",
"pointed (up)",
"stressed",
"underlined",
"underscored"
],
"synonyms":[
"belabored",
"harped (on)"
]
},
"type":[]
},
"dweller":{
"one who lives permanently in a place":{
"antonyms":[
"transient"
],
"examples":[
"the kinds of nuisances that city dwellers are all too familiar with"
],
"near antonyms":[
"alien",
"foreigner",
"nonresident",
"guest",
"tourist",
"visitor",
"defector",
"emigrant",
"escaper",
"evacuee",
"exile",
"expatriate",
"refugee"
],
"related":[
"cohabitant",
"coresident",
"aborigine",
"native",
"citizen",
"national",
"subject",
"colonist",
"\u00e9migr\u00e9",
"emigr\u00e9",
"migrant",
"newcomer",
"settler",
"burgher",
"local",
"localite",
"townee",
"townie",
"towny",
"townsman",
"villager"
],
"synonyms":[
"denizen",
"habitant",
"inhabitant",
"inhabiter",
"occupant",
"resident",
"resider",
"tenant"
]
},
"type":[
"noun"
]
},
"dwelling (on or upon)":{
"to speak or write about insistently and usually tiresomely":{
"antonyms":[
"disregarding",
"forgetting",
"ignoring",
"overlooking",
"overpassing",
"passing over",
"slighting",
"slurring (over)"
],
"examples":[],
"near antonyms":[],
"related":[
"accenting",
"accentuating",
"emphasizing",
"paying (up)",
"pointing (up)",
"stressing",
"underlining",
"underscoring"
],
"synonyms":[
"belaboring",
"harping (on)"
]
},
"type":[]
},
"dwelt%20%28on%20or%20upon%29":{
"to speak or write about insistently and usually tiresomely":{
"antonyms":[
"disregarded",
"forgot",
"ignored",
"overlooked",
"overpassed",
"passed over",
"slighted",
"slurred (over)"
],
"examples":[
"she was always dwelling on past insults and snubs, both real and imagined"
],
"near antonyms":[],
"related":[
"accented",
"accentuated",
"emphasized",
"paid (up)",
"pointed (up)",
"stressed",
"underlined",
"underscored"
],
"synonyms":[
"belabored",
"harped (on)"
]
},
"type":[]
}
}

View File

@ -0,0 +1,60 @@
{
"dyed-in-the-wool":{
"being such by habit and not likely to change":{
"antonyms":[],
"examples":[
"as a dyed-in-the-wool skeptic, I give these \"confirmed\" UFO sightings as much credence as I do the tooth fairy"
],
"near antonyms":[
"unaccustomed",
"unused",
"intermittent",
"occasional"
],
"related":[
"incorrigible",
"unreconstructed",
"unregenerate",
"born",
"natural",
"persistent",
"regular",
"repeat",
"serial",
"steady",
"unchanging",
"unfailing",
"addicted",
"accustomed",
"habituated",
"used",
"wonted",
"deep-rooted",
"deep-seated",
"entrenched",
"intrenched",
"inbred",
"inherent",
"innate",
"intrinsic",
"apt",
"inclined",
"prone",
"mulish",
"obstinate",
"set",
"stubborn"
],
"synonyms":[
"bred-in-the-bone",
"chronic",
"confirmed",
"habitual",
"inveterate"
]
},
"type":[
"adjective"
]
}
}

991
en_MW_thesaurus/ea_mwt.json Normal file
View File

@ -0,0 +1,991 @@
{
"earmarking":{
"to keep or intend for a special purpose":{
"antonyms":[],
"examples":[
"the earnings from my second job have been earmarked for a down payment on a car"
],
"near antonyms":[
"ignoring",
"neglecting",
"misapplying",
"misusing"
],
"related":[
"blessing",
"hallowing",
"sanctifying",
"committing",
"confiding",
"consigning",
"entrusting",
"intrusting",
"applying",
"bestowing",
"employing",
"using"
],
"synonyms":[
"allocating",
"consecrating",
"dedicating",
"devoting",
"giving up (to)",
"reserving",
"saving",
"setting by"
]
},
"type":[
"verb"
]
},
"earned":{
"to be or make worthy of (as a reward or punishment)":{
"antonyms":[],
"examples":[
"you've earned the afternoon off after all that hard work"
],
"near antonyms":[],
"related":[
"entitled",
"qualified"
],
"synonyms":[
"deserved",
"merited",
"rated"
]
},
"to receive as return for effort":{
"antonyms":[
"forfeited",
"lost"
],
"examples":[
"during my teen years I earned pocket money by mowing lawns"
],
"near antonyms":[
"accorded",
"gave",
"granted",
"paid",
"gave up",
"handed over",
"parted (with)",
"relinquished",
"surrendered",
"yielded"
],
"related":[
"cleared",
"grossed",
"netted",
"accomplished",
"achieved",
"notched (up)",
"scored",
"accumulated",
"amassed",
"racked up",
"caught",
"picked up",
"annexed",
"occupied",
"took over",
"reacquired",
"reattained",
"recaptured",
"regained",
"remade"
],
"synonyms":[
"acquired",
"attained",
"bagged",
"brought in",
"came by",
"captured",
"carried",
"drew",
"gained",
"garnered",
"got",
"knocked down",
"landed",
"made",
"obtained",
"procured",
"pulled down",
"realized",
"reaped",
"secured",
"won"
]
},
"type":[
"verb"
]
},
"earnestness":{
"a mental state free of jesting or trifling":{
"antonyms":[
"facetiousness",
"flightiness",
"flippancy",
"frivolity",
"frivolousness",
"levity",
"lightheartedness",
"lightness",
"play",
"unseriousness"
],
"examples":[
"practiced the art of acting with great earnestness"
],
"near antonyms":[
"lightness",
"shallowness",
"superficiality",
"dalliance",
"dilettantism",
"cheerfulness",
"gaiety",
"gayety",
"glee",
"high-spiritedness",
"merriment",
"mirth"
],
"related":[
"gravitas",
"humorlessness",
"decisiveness",
"deliberation",
"determination",
"firmness",
"purposefulness",
"resoluteness",
"resolve",
"absorption",
"attentiveness",
"concentration",
"engrossment",
"enthrallment",
"immersion",
"intensity"
],
"synonyms":[
"earnest",
"graveness",
"gravity",
"intentness",
"serious-mindedness",
"seriousness",
"soberness",
"sobriety",
"solemnity",
"solemnness",
"staidness"
]
},
"type":[
"noun"
]
},
"earthborn":{
"having to do with life on earth especially as opposed to that in heaven":{
"antonyms":[
"heavenly",
"nontemporal",
"unearthly",
"unworldly"
],
"examples":[
"turned away from earthborn concerns during the High Holidays"
],
"near antonyms":[
"celestial",
"Elysian",
"empyreal",
"empyrean",
"supernal",
"metaphysical",
"devotional",
"divine",
"religious",
"sacred",
"spiritual",
"utopian",
"ethereal",
"supernatural",
"transcendent",
"transcendental"
],
"related":[
"animal",
"bodily",
"corporal",
"corporeal",
"physical",
"daily",
"diurnal",
"unspiritual",
"anthropic",
"anthropical",
"anthropocentric"
],
"synonyms":[
"carnal",
"earthbound",
"earthly",
"fleshly",
"material",
"mundane",
"sublunary",
"temporal",
"terrene",
"terrestrial",
"worldly"
]
},
"relating to or characteristic of human beings":{
"antonyms":[
"nonhuman"
],
"examples":[
"he claims to be above such earthborn concerns as material comfort"
],
"near antonyms":[
"angelic",
"angelical",
"divine",
"godlike",
"preternatural",
"superhuman",
"supernatural",
"supernormal",
"immortal",
"omnipotent",
"omniscient",
"animal",
"beastly",
"bestial",
"brute",
"infrahuman",
"inhuman",
"robotic",
"subhuman"
],
"related":[
"anthropoid",
"creatural",
"hominid",
"humanlike",
"humanoid"
],
"synonyms":[
"human",
"mortal",
"natural"
]
},
"type":[
"adjective"
]
},
"earthly":{
"having to do with life on earth especially as opposed to that in heaven":{
"antonyms":[
"heavenly",
"nontemporal",
"unearthly",
"unworldly"
],
"examples":[
"a sermon against our obsession with earthly pursuits"
],
"near antonyms":[
"celestial",
"Elysian",
"empyreal",
"empyrean",
"supernal",
"metaphysical",
"devotional",
"divine",
"religious",
"sacred",
"spiritual",
"utopian",
"ethereal",
"supernatural",
"transcendent",
"transcendental"
],
"related":[
"animal",
"bodily",
"corporal",
"corporeal",
"physical",
"daily",
"diurnal",
"unspiritual",
"anthropic",
"anthropical",
"anthropocentric"
],
"synonyms":[
"carnal",
"earthborn",
"earthbound",
"fleshly",
"material",
"mundane",
"sublunary",
"temporal",
"terrene",
"terrestrial",
"worldly"
]
},
"type":[
"adjective"
]
},
"earthwork":{
"a raised bank or wall made of soil \u2014 usually plural":{
"antonyms":[],
"examples":[
"prehistoric earthworks"
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"eased":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"to free from obstruction or difficulty":{
"antonyms":[
"complicated"
],
"examples":[
"measures intended to ease the flow of traffic during rush hour"
],
"near antonyms":[
"hindered",
"impeded",
"retarded",
"aggravated",
"worsened",
"perplexed",
"sophisticated"
],
"related":[
"accelerated",
"expedited",
"hastened",
"hurried",
"quickened",
"rushed",
"sped",
"speeded",
"advanced",
"forwarded",
"furthered",
"promoted",
"abetted",
"aided",
"assisted",
"helped",
"improved",
"disentangled",
"straightened (out)",
"untangled",
"simplified",
"streamlined"
],
"synonyms":[
"facilitated",
"greased",
"loosened (up)",
"smoothed",
"unclogged"
]
},
"to grow less in scope or intensity especially gradually":{
"antonyms":[
"accumulated",
"ballooned",
"built",
"burgeoned",
"bourgeoned",
"enlarged",
"escalated",
"expanded",
"grew",
"increased",
"intensified",
"mounted",
"mushroomed",
"picked up",
"rose",
"snowballed",
"soared",
"swelled",
"waxed"
],
"examples":[
"new investments in the region have eased since the rise in interest rates"
],
"near antonyms":[
"appeared",
"emerged",
"showed up",
"blew up",
"distended",
"elongated",
"lengthened"
],
"related":[
"compressed",
"condensed",
"constricted",
"contracted",
"evaporated",
"faded (away)",
"frittered (away)",
"gave out",
"melted (away)",
"petered (out)",
"tailed (off)",
"vanished",
"slackened",
"slowed (down)",
"alleviated",
"relaxed",
"flagged",
"sank",
"sunk",
"weakened",
"caved (in)",
"collapsed",
"deflated"
],
"synonyms":[
"abated",
"declined",
"decreased",
"de-escalated",
"died (away or down or out)",
"diminished",
"drained (away)",
"dropped (off)",
"dwindled",
"ebbed",
"fell",
"fell away",
"lessened",
"let up",
"lowered",
"moderated",
"palled",
"phased down",
"ratcheted (down)",
"racheted (down)",
"receded",
"relented",
"remitted",
"shrank",
"shrunk",
"subsided",
"tapered",
"tapered off",
"waned"
]
},
"to make less taut":{
"antonyms":[
"strained",
"stretched",
"tensed",
"tensioned",
"tightened"
],
"examples":[
"the rock climber eased the rope a little so that his fellow climber had room to maneuver"
],
"near antonyms":[
"attached",
"bound",
"fastened",
"tied",
"constrained",
"restrained"
],
"related":[
"detached",
"freed",
"unbound",
"undid",
"unfastened",
"untied"
],
"synonyms":[
"loosened",
"relaxed",
"slacked",
"slackened"
]
},
"to make more bearable or less severe":{
"antonyms":[
"aggravated",
"exacerbated"
],
"examples":[
"grandmother's firm belief that there are few ailments that chicken soup won't ease"
],
"near antonyms":[
"harmed",
"hurt",
"impaired",
"injured",
"heightened",
"intensified",
"sharpened"
],
"related":[
"abated",
"lightened",
"moderated",
"softened",
"tempered",
"cured",
"healed",
"remedied",
"amended",
"corrected",
"emended",
"fixed",
"mended",
"rectified",
"reformed",
"repaired",
"ameliorated",
"bettered",
"enhanced",
"enriched",
"improved",
"meliorated",
"perfected",
"refined"
],
"synonyms":[
"allayed",
"alleviated",
"assuaged",
"helped",
"mitigated",
"mollified",
"palliated",
"relieved",
"soothed"
]
},
"to make smaller in amount, volume, or extent":{
"antonyms":[
"aggrandized",
"amplified",
"augmented",
"boosted",
"enlarged",
"escalated",
"expanded",
"increased",
"raised"
],
"examples":[
"the chairman of the Federal Reserve has promised to ease interest rates"
],
"near antonyms":[
"blew up",
"dilated",
"distended",
"inflated",
"swelled",
"elongated",
"extended",
"lengthened",
"prolonged",
"protracted",
"added (to)",
"complemented",
"supplemented",
"enhanced",
"heightened",
"intensified",
"redoubled"
],
"related":[
"compressed",
"condensed",
"constricted",
"contracted",
"abbreviated",
"abridged",
"clipped",
"cropped",
"curtailed",
"cut",
"cut back",
"cut down",
"docked",
"nicked",
"pared",
"pruned",
"retrenched",
"shortened",
"slashed",
"trimmed",
"truncated",
"whittled",
"deflated",
"shrank",
"shrunk",
"minimized",
"moderated",
"modified",
"modulated",
"qualified"
],
"synonyms":[
"abated",
"decreased",
"de-escalated",
"dented",
"depleted",
"diminished",
"downscaled",
"downsized",
"dropped",
"dwindled",
"knocked down",
"lessened",
"lowered",
"reduced"
]
},
"type":[
"adjective",
"verb"
]
},
"easy":{
"involving minimal difficulty or effort":{
"antonyms":[
"arduous",
"demanding",
"difficult",
"exacting",
"formidable",
"grueling",
"gruelling",
"hard",
"herculean",
"killer",
"labored",
"laborious",
"murderous",
"rough",
"severe",
"stiff",
"strenuous",
"toilful",
"toilsome",
"tough"
],
"examples":[
"a minor problem with an easy solution"
],
"near antonyms":[
"burdensome",
"exhausting",
"onerous",
"oppressive",
"painful",
"stressful",
"taxing",
"troublesome",
"abstruse",
"complex",
"complicated",
"intricate",
"involved",
"knotty",
"problematic",
"problematical",
"recondite"
],
"related":[
"idiotproof",
"mindless",
"quick",
"straightforward",
"unchallenging",
"uncomplicated",
"apparent",
"clear",
"clear-cut",
"distinct",
"evident",
"manifest",
"obvious",
"open-and-shut",
"palpable",
"patent",
"perspicuous",
"plain",
"transparent",
"unambiguous",
"unequivocal",
"unmistakable"
],
"synonyms":[
"cheap",
"downhill",
"effortless",
"facile",
"fluent",
"fluid",
"hands-down",
"light",
"painless",
"ready",
"royal",
"simple",
"smooth",
"snap",
"soft"
]
},
"providing physical comfort":{
"antonyms":[
"uncomfortable"
],
"examples":[
"my favorite easy chair for watching TV"
],
"near antonyms":[
"hard",
"harsh",
"severe",
"inhospitable",
"uninviting",
"unpleasant"
],
"related":[
"easeful",
"relaxing",
"reposeful",
"restful",
"gem\u00fctlich",
"genial",
"hospitable",
"inviting",
"pleasant",
"commodious",
"roomy",
"spacious",
"homelike",
"homely",
"homey",
"homy",
"intimate"
],
"synonyms":[
"comfortable",
"comfy",
"cozy",
"cushy",
"snug",
"soft"
]
},
"readily taken advantage of":{
"antonyms":[],
"examples":[
"senior citizens who are easy prey for scam artists"
],
"near antonyms":[
"critical",
"cynical",
"mistrustful",
"skeptical",
"suspicious",
"wary",
"sophisticated",
"clear-eyed",
"clear-sighted",
"hardheaded",
"shrewd",
"street-smart",
"streetwise"
],
"related":[
"credulous",
"overcredulous",
"trustful",
"uncritical",
"unsuspecting",
"unsuspicious",
"artless",
"genuine",
"guileless",
"innocent",
"simple",
"unsophisticated",
"unworldly",
"fictile",
"malleable",
"pliable",
"pliant",
"deceivable",
"acquiescent",
"agreeable",
"amiable",
"obliging",
"yielding"
],
"synonyms":[
"dewy-eyed",
"exploitable",
"gullible",
"gullable",
"naive",
"na\u00efve",
"susceptible",
"trusting",
"unwary",
"wide-eyed"
]
},
"tolerant and kind in the judgment of and expectations for others":{
"antonyms":[
"hard",
"harsh",
"severe",
"stern",
"strict"
],
"examples":[
"despite her easy approach to discipline, she had a remarkably well-behaved class"
],
"near antonyms":[
"demanding",
"uncharitable",
"unforgiving",
"inflexible",
"intolerant",
"unbending",
"uncompromising",
"unyielding"
],
"related":[
"accommodating",
"acquiescent",
"amenable",
"obliging",
"easygoing",
"laid-back",
"undemanding"
],
"synonyms":[
"charitable",
"clement",
"indulgent",
"soft"
]
},
"type":[
"adjective",
"adverb"
],
"without difficulty":{
"antonyms":[
"arduously",
"hardly",
"laboriously",
"strenuously"
],
"examples":[
"we can make the trip in four hours easy"
],
"near antonyms":[
"awkwardly",
"clumsily",
"gracelessly",
"ham-handedly",
"ineptly",
"maladroitly",
"unskillfully",
"meticulously",
"painfully",
"painstakingly",
"thoroughly",
"assiduously",
"diligently",
"indefatigably",
"industriously",
"intensely",
"intently",
"mightily",
"sedulously",
"tirelessly"
],
"related":[
"ably",
"adeptly",
"adroitly",
"competently",
"deftly",
"dexterously",
"efficiently",
"expertly",
"masterfully",
"proficiently",
"skillfully",
"instinctively",
"intuitively",
"naturally",
"spontaneously"
],
"synonyms":[
"easily",
"effortlessly",
"facilely",
"fluently",
"freely",
"handily",
"hands down",
"lightly",
"painlessly",
"readily",
"smoothly",
"well"
]
}
}
}

View File

@ -0,0 +1,71 @@
{
"economical":{
"careful in the management of money or resources":{
"antonyms":[
"prodigal",
"profligate",
"spendthrift",
"squandering",
"thriftless",
"unthrifty",
"wasteful"
],
"examples":[
"we have to be economical in our use of the camp's limited supply of electricity"
],
"near antonyms":[
"improvident",
"shortsighted",
"bountiful",
"charitable",
"freehanded",
"generous",
"liberal",
"munificent",
"openhanded",
"unselfish",
"unsparing",
"extravagant",
"indulgent",
"lavish"
],
"related":[
"conserving",
"preserving",
"saving",
"forehanded",
"foresighted",
"foresightful",
"prudent",
"penny-wise",
"cheap",
"close",
"closefisted",
"mean",
"miserly",
"niggard",
"niggardly",
"parsimonious",
"penny-pinching",
"penurious",
"pinching",
"spare",
"stingy",
"stinting",
"tight",
"tightfisted"
],
"synonyms":[
"economizing",
"frugal",
"provident",
"scrimping",
"sparing",
"thrifty"
]
},
"type":[
"adjective"
]
}
}

758
en_MW_thesaurus/ed_mwt.json Normal file
View File

@ -0,0 +1,758 @@
{
"eddy":{
"a circular movement of air or water":{
"antonyms":[],
"examples":[
"The boat was caught in a powerful eddy ."
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"as in swirl , purl":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun",
"verb"
]
},
"edgy":{
"feeling or showing uncomfortable feelings of uncertainty":{
"antonyms":[
"calm",
"collected",
"cool",
"easy",
"happy-go-lucky",
"nerveless",
"relaxed"
],
"examples":[
"with an edgy voice the spelling-bee contestant started to spell the tongue twister"
],
"near antonyms":[
"confident",
"self-assured",
"self-confident",
"sure",
"controlled",
"self-controlled"
],
"related":[
"aggrieved",
"bothered",
"concerned",
"disquieted",
"distraught",
"distressed",
"disturbed",
"freaked",
"freaked-out",
"shook-up",
"apprehensive",
"foreboding",
"hesitant",
"misgiving",
"fretful",
"fretting",
"stewing",
"vexed",
"qualmish",
"qualmy",
"flustered",
"twittered",
"undone",
"unnerved",
"unstrung",
"obsessed",
"preoccupied",
"restless",
"fidgety",
"flighty",
"fluttery",
"high-strung",
"hypertense",
"skittish",
"spooky"
],
"synonyms":[
"aflutter",
"antsy",
"anxious",
"atwitter",
"dithery",
"goosey",
"het up",
"hinky",
"hung up",
"ill at ease",
"insecure",
"jittery",
"jumpy",
"nervous",
"nervy",
"perturbed",
"queasy",
"queazy",
"tense",
"troubled",
"uneasy",
"unquiet",
"upset",
"uptight",
"worried"
]
},
"having an edge thin enough to cut or pierce something":{
"antonyms":[
"blunt",
"blunted",
"dull",
"dulled",
"obtuse"
],
"examples":[
"be careful as you walk along the beach\u2014those broken clam shells are edgy enough to cut your feet"
],
"near antonyms":[
"rounded",
"smooth",
"soft",
"even",
"flat",
"level",
"slick"
],
"related":[
"clawlike",
"daggerlike",
"knifelike",
"jabbing",
"jagged",
"lacerating",
"piercing",
"scratching",
"stabbing",
"pointed",
"pointy",
"spiky",
"spikey"
],
"synonyms":[
"cutting",
"edged",
"ground",
"honed",
"keen",
"sharp",
"sharpened",
"stropped",
"trenchant",
"whetted"
]
},
"serving or likely to arouse a strong reaction":{
"antonyms":[
"noninflammatory"
],
"examples":[
"a director known for his edgy , over-the-top satires on modern life"
],
"near antonyms":[
"subduing"
],
"related":[
"explosive",
"fiery",
"incendiary",
"inflammatory",
"triggering",
"inducing",
"inspirational",
"inspiring",
"motivating",
"motivational",
"motivative",
"jeering",
"taunting",
"teasing",
"activating",
"energizing",
"galvanizing",
"quickening",
"vitalizing",
"angering",
"enraging",
"maddening",
"upsetting",
"aggravating",
"annoying",
"bothersome",
"exasperating",
"galling",
"irksome",
"irritating",
"pesky",
"vexatious",
"vexing"
],
"synonyms":[
"charged",
"exciting",
"inciting",
"instigating",
"instigative",
"piquing",
"provocative",
"provoking",
"stimulating"
]
},
"type":[
"adjective"
]
},
"editorialize":{
"to make a statement of one's opinion":{
"antonyms":[],
"examples":[
"she never misses a chance to editorialize on the issues of the day\u2014even the ones she knows nothing about"
],
"near antonyms":[],
"related":[
"commentate",
"articulate",
"express",
"say",
"speak",
"state",
"talk",
"tell",
"utter",
"verbalize",
"vocalize",
"conjecture",
"daresay",
"guess",
"speculate",
"suppose",
"surmise"
],
"synonyms":[
"allow",
"comment",
"note",
"observe",
"opine",
"reflect",
"remark",
"weigh in"
]
},
"type":[
"verb"
]
},
"educated":{
"having or displaying advanced knowledge or education":{
"antonyms":[
"benighted",
"dark",
"ignorant",
"illiterate",
"uneducated",
"unlearned",
"unlettered",
"unscholarly"
],
"examples":[
"educated people are often more aware and tolerant of cultural and ethnic diversity"
],
"near antonyms":[
"uncivilized",
"uncultivated",
"uncultured",
"lowbrow",
"semiliterate",
"unintellectual",
"ill-bred",
"unpolished",
"unrefined",
"uninformed",
"unknowledgeable",
"uninstructed",
"unschooled",
"untaught",
"untutored",
"semiliterate",
"undereducated"
],
"related":[
"civilized",
"cultivated",
"cultured",
"cerebral",
"highbrow",
"highbrowed",
"intellectual",
"polished",
"refined",
"well-bred",
"academic",
"academical",
"bookish",
"didactic",
"didactical",
"inkhorn",
"pedantic",
"professorial",
"informed",
"instructed",
"schooled",
"skilled",
"trained",
"homeschooled",
"self-educated",
"self-instructed",
"self-taught",
"briefed",
"enlightened",
"informed",
"versed",
"overeducated",
"polyhistoric",
"polymath",
"polymathic"
],
"synonyms":[
"erudite",
"knowledgeable",
"learned",
"lettered",
"literate",
"scholarly",
"well-read"
]
},
"having or showing exceptional knowledge, experience, or skill in a field of endeavor":{
"antonyms":[
"amateur",
"amateurish",
"inexperienced",
"inexpert",
"jackleg",
"unprofessional",
"unseasoned",
"unskilled",
"unskillful"
],
"examples":[
"a violinist caressing the instrument with an educated touch"
],
"near antonyms":[
"incapable",
"incompetent",
"inept",
"unable",
"unfit",
"unfitted",
"unqualified",
"weak",
"artless",
"crude",
"rude",
"ineffective",
"ineffectual",
"inefficient",
"talentless",
"ungifted",
"untalented",
"ignorant",
"unschooled",
"untaught",
"untrained",
"untutored",
"beginning",
"green",
"inexperienced",
"new",
"raw",
"unseasoned",
"untested",
"untried",
"would-be",
"primitive",
"rough",
"unpolished",
"awkward",
"clumsy",
"ham-fisted",
"ham-handed",
"heavy-handed"
],
"related":[
"adroit",
"clever",
"deft",
"dexterous",
"dextrous",
"handy",
"slick",
"sure-handed",
"gifted",
"talented",
"polished",
"refined",
"effective",
"effectual",
"efficient",
"workmanlike",
"able",
"capable",
"competent",
"employable",
"fit",
"fitted",
"habile",
"qualified",
"knowledgeable",
"schooled",
"taught",
"trained",
"tutored",
"all-around",
"all-round",
"well-rounded",
"long-term",
"old",
"multiskilled",
"multitalented"
],
"synonyms":[
"accomplished",
"ace",
"adept",
"compleat",
"complete",
"consummate",
"crack",
"crackerjack",
"experienced",
"expert",
"good",
"great",
"master",
"masterful",
"masterly",
"practiced",
"practised",
"professed",
"proficient",
"skilled",
"skillful",
"versed",
"veteran",
"virtuoso"
]
},
"to cause to acquire knowledge or skill in some field":{
"antonyms":[],
"examples":[
"a revered professor of astronomy who is credited with educating many of today's leading astronomers"
],
"near antonyms":[],
"related":[
"coached",
"mentored",
"drilled",
"fitted",
"fit",
"grounded",
"habilitated",
"prepared",
"primed",
"qualified",
"directed",
"guided",
"led",
"reared",
"catechized",
"lectured",
"moralized",
"preached",
"implanted",
"inculcated",
"instilled",
"homeschooled",
"edified",
"enlightened",
"briefed",
"familiarized",
"imparted (to)",
"informed",
"versed",
"initiated",
"introduced",
"showed",
"reeducated",
"reschooled",
"retaught",
"retrained"
],
"synonyms":[
"indoctrinated",
"instructed",
"lessoned",
"schooled",
"taught",
"trained",
"tutored"
]
},
"to provide (someone) with moral or spiritual understanding":{
"antonyms":[],
"examples":[
"the belief that parents better educate their children by example than by sending them to Sunday school"
],
"near antonyms":[
"confused",
"perplexed",
"puzzled",
"beclouded",
"clouded",
"darkened",
"obscured"
],
"related":[
"elevated",
"ennobled",
"enriched",
"ensouled",
"lifted",
"uplifted",
"bettered",
"improved",
"regenerated",
"renewed",
"transformed",
"exalted",
"glorified",
"transfigured"
],
"synonyms":[
"edified",
"enlightened",
"illumed",
"illuminated",
"illumined",
"inspired",
"nurtured"
]
},
"type":[
"adjective",
"verb"
]
},
"educates":{
"to cause to acquire knowledge or skill in some field":{
"antonyms":[],
"examples":[
"a revered professor of astronomy who is credited with educating many of today's leading astronomers"
],
"near antonyms":[],
"related":[
"coaches",
"mentors",
"drills",
"fits",
"grounds",
"habilitates",
"prepares",
"primes",
"qualifies",
"directs",
"guides",
"leads",
"rears",
"catechizes",
"lectures",
"moralizes",
"preaches",
"implants",
"inculcates",
"instills",
"instils",
"homeschools",
"edifies",
"enlightens",
"briefs",
"familiarizes",
"imparts (to)",
"informs",
"verses",
"initiates",
"introduces",
"shows",
"reeducates",
"reschools",
"reteaches",
"retrains"
],
"synonyms":[
"indoctrinates",
"instructs",
"lessons",
"schools",
"teaches",
"trains",
"tutors"
]
},
"to provide (someone) with moral or spiritual understanding":{
"antonyms":[],
"examples":[
"the belief that parents better educate their children by example than by sending them to Sunday school"
],
"near antonyms":[
"confuses",
"perplexes",
"puzzles",
"beclouds",
"clouds",
"darkens",
"obscures"
],
"related":[
"elevates",
"ennobles",
"enriches",
"ensouls",
"lifts",
"uplifts",
"betters",
"improves",
"regenerates",
"renews",
"transforms",
"exalts",
"glorifies",
"transfigures"
],
"synonyms":[
"edifies",
"enlightens",
"illumes",
"illuminates",
"illumines",
"inspires",
"nurtures"
]
},
"type":[
"verb"
]
},
"educational":{
"of or relating to schooling or learning especially at an advanced level":{
"antonyms":[
"nonacademic",
"noneducational",
"unacademic",
"unscholarly"
],
"examples":[
"the community college strives to meet the educational needs of the residents of its urban location"
],
"near antonyms":[
"cocurricular",
"extracurricular",
"noncollegiate"
],
"related":[
"bookish",
"donnish",
"geeky",
"nerdish",
"nerdy",
"pedagogical",
"pedagogic",
"pedantic",
"professorial",
"tweedy",
"curricular",
"educative",
"instructive",
"collegiate",
"graduate",
"postgraduate"
],
"synonyms":[
"academic",
"academical",
"intellectual",
"scholarly",
"scholastic"
]
},
"providing useful information or knowledge":{
"antonyms":[
"unenlightening",
"unilluminating",
"uninformative",
"uninstructive"
],
"examples":[
"we found the talk on easy ways for families to recycle household products very educational"
],
"near antonyms":[
"impractical",
"unhelpful",
"unusable",
"useless"
],
"related":[
"comprehensive",
"copious",
"detailed",
"full",
"communicatory",
"edifying",
"elucidative",
"explanatory",
"chatty",
"gossipy",
"newsy",
"availing",
"beneficial",
"constructive",
"helpful",
"profitable",
"practical",
"serviceable",
"usable",
"useable",
"useful",
"worthwhile"
],
"synonyms":[
"educative",
"enlightening",
"illuminating",
"informational",
"informative",
"informatory",
"instructional",
"instructive"
]
},
"type":[
"adjective"
]
}
}

629
en_MW_thesaurus/ef_mwt.json Normal file
View File

@ -0,0 +1,629 @@
{
"efface":{
"to destroy all traces of":{
"antonyms":[],
"examples":[
"when the supply ship finally arrived, it discovered that virtually all evidence of the colony at Roanoke had been effaced"
],
"near antonyms":[
"conserve",
"preserve",
"protect",
"save",
"build",
"construct",
"create",
"fabricate",
"fashion",
"forge",
"form",
"frame",
"make",
"manufacture",
"shape",
"fix",
"mend",
"patch",
"rebuild",
"recondition",
"reconstruct",
"renew",
"renovate",
"repair",
"restore",
"revamp"
],
"related":[
"decimate",
"demolish",
"destroy",
"devastate",
"ravage",
"dismantle",
"flatten",
"mow (down)",
"raze",
"tear down",
"ruin",
"total",
"waste",
"wreck",
"blast",
"blow up",
"dash",
"dynamite",
"smash",
"atomize",
"consume",
"devour",
"dissolve",
"fragment",
"powder",
"pulverize",
"shatter",
"splinter",
"doom",
"finish",
"kill",
"kill off",
"terminate",
"zap",
"cut",
"discard",
"ditch",
"eject",
"excise",
"expel",
"jettison",
"oust",
"throw out"
],
"synonyms":[
"abolish",
"annihilate",
"black out",
"blot out",
"cancel",
"clean (up)",
"eradicate",
"erase",
"expunge",
"exterminate",
"extirpate",
"liquidate",
"obliterate",
"root (out)",
"rub out",
"snuff (out)",
"stamp (out)",
"sweep (away)",
"wipe out"
]
},
"type":[
"verb"
]
},
"effectively":{
"in an effective manner":{
"antonyms":[],
"examples":[
"She used a visual aid to effectively communicate her point."
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"adverb"
]
},
"effectually":{
"in an effective manner":{
"antonyms":[],
"examples":[
"Her essay effectually communicates the need for new infrastructure.",
"Their vacation was effectually ruined by the storm."
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"adverb"
]
},
"effete":{
"having lost forcefulness, courage, or spirit":{
"antonyms":[],
"examples":[
"the soft, effete society that marked the final years of the Roman empire"
],
"near antonyms":[],
"related":[
"overrefined",
"precious",
"decaying",
"declining",
"dying",
"failing",
"waning",
"debilitated",
"enervate",
"enervated",
"enfeebled",
"feeble",
"frail",
"languid",
"sapped",
"soft",
"wasted",
"weak",
"weakened",
"wimpy",
"dissolute",
"immoral",
"debased",
"debauched",
"degraded",
"demoralized",
"depraved",
"dissipated",
"dissolute"
],
"synonyms":[
"decadent",
"decayed",
"degenerate",
"overripe",
"washed-up"
]
},
"lacking bodily strength":{
"antonyms":[
"mighty",
"powerful",
"rugged",
"stalwart",
"stout",
"strong"
],
"examples":[
"the outdoor adventure program takes effete youths and turns them into hardy campers"
],
"near antonyms":[
"able-bodied",
"athletic",
"beefy",
"brawny",
"fit",
"husky",
"muscular",
"sinewy",
"strapping",
"virile",
"hard",
"hardy",
"lusty",
"red-blooded",
"robust",
"sturdy",
"tough",
"fortified",
"hardened",
"inured",
"strengthened",
"toughened",
"energetic",
"energized",
"invigorated",
"vigorous",
"vitalized",
"hale",
"healthy",
"sound",
"capable",
"competent",
"convalescing",
"recovering",
"recuperating"
],
"related":[
"challenged",
"disabled",
"incapacitated",
"invalid",
"paralyzed",
"broken-down",
"decrepit",
"impotent",
"powerless",
"breakable",
"flimsy",
"fragile",
"dizzy",
"groggy",
"rocky",
"unsteady",
"woozy",
"drained",
"exhausted",
"flagging",
"tired",
"weary",
"worn-out",
"damaged",
"harmed",
"hurt",
"impaired",
"injured",
"lame",
"unsound",
"resistless",
"susceptible",
"unresistant",
"vulnerable",
"yielding"
],
"synonyms":[
"asthenic",
"debilitated",
"delicate",
"down-and-out",
"enervated",
"enfeebled",
"faint",
"feeble",
"frail",
"infirm",
"languid",
"low",
"prostrate",
"prostrated",
"sapped",
"slight",
"soft",
"softened",
"tender",
"unsubstantial",
"wasted",
"weak",
"weakened",
"wimpish",
"wimpy"
]
},
"lacking strength of will or character":{
"antonyms":[
"backboned",
"firm",
"hard",
"strong",
"tough"
],
"examples":[
"the governor is too effete to take on the powerful special interests that really run this state"
],
"near antonyms":[
"ethical",
"good",
"moral",
"principled",
"right",
"righteous",
"upright",
"virtuous",
"determined",
"mettlesome",
"resolute",
"unrelenting",
"courageous",
"stalwart",
"stouthearted"
],
"related":[
"flabby",
"flaccid",
"forceless",
"ineffective",
"ineffectual",
"impotent",
"impuissant",
"powerless",
"emasculated",
"unnerved",
"lamblike",
"meek",
"pliable",
"submissive",
"corrupt",
"dastardly",
"unprincipled",
"unscrupulous",
"villainous",
"cowardly",
"craven",
"fainthearted",
"lily-livered",
"nebbishy",
"poltroon",
"pusillanimous",
"sissy",
"timid",
"infirm",
"irresolute",
"vacillating"
],
"synonyms":[
"characterless",
"frail",
"invertebrate",
"limp-wristed",
"milk-and-water",
"namby-pamby",
"nerveless",
"soft",
"spineless",
"weak",
"weak-kneed",
"weakened",
"weakling",
"wet",
"wimpish",
"wimpy",
"wishy-washy"
]
},
"of or relating to a man who has or displays qualities traditionally considered more suitable for women":{
"antonyms":[
"manlike",
"manly",
"mannish",
"masculine",
"virile"
],
"examples":[
"wore a slightly more effete style of clothing in those days"
],
"near antonyms":[],
"related":[
"feminine",
"girlish",
"girlie",
"girly",
"womanlike",
"womanly",
"old-maidish",
"overnice",
"prissy",
"spinsterish",
"dandyish",
"dudish",
"foppish",
"sappy",
"camp",
"campy",
"antimacho"
],
"synonyms":[
"effeminate",
"epicene",
"sissified",
"sissy",
"unmanly",
"womanish"
]
},
"type":[
"adjective"
]
},
"efflorescing":{
"to produce flowers":{
"antonyms":[],
"examples":[
"created an artificial environment in which plants grew and effloresced regardless of season"
],
"near antonyms":[
"drying up",
"fading",
"shriveling",
"shrivelling",
"wilting",
"withering",
"dropping",
"dying",
"expiring",
"perishing"
],
"related":[
"leafing",
"leaving",
"budding",
"opening"
],
"synonyms":[
"blooming",
"blossoming",
"blowing",
"burgeoning",
"bourgeoning",
"flowering",
"unfolding"
]
},
"type":[
"verb"
]
},
"efforts":{
"the active use of energy in producing a result":{
"antonyms":[],
"examples":[
"the finished parade float was well worth the effort"
],
"near antonyms":[
"eases",
"facilities",
"fluencies",
"dormancies",
"inactions",
"inactivities",
"indolences",
"inertias",
"languors",
"quiescences"
],
"related":[
"drudgeries",
"grinds",
"slogs",
"strains",
"toils",
"travails",
"dints",
"energies",
"forces",
"mights",
"muscles",
"powers",
"puissances",
"attempts",
"endeavors",
"essays",
"flings",
"goes",
"passes",
"shots",
"stabs",
"trials",
"tries",
"whacks"
],
"synonyms":[
"elbow grease",
"exertions",
"expenditures",
"labors",
"pains",
"sweats",
"troubles",
"whiles",
"works"
]
},
"type":[
"noun"
]
},
"effulgent":{
"giving off or reflecting much light":{
"antonyms":[
"dim",
"dull",
"lackluster",
"unbright",
"unbrilliant"
],
"examples":[
"the stars always seem more effulgent when viewed in the country, far away from the distracting lights of the big city"
],
"near antonyms":[
"blackened",
"dark",
"darkened",
"darkish",
"darkling",
"darksome",
"dimmed",
"dusky",
"gloomy",
"lightless",
"murky",
"obscure",
"obscured",
"pitch-black",
"pitch-dark",
"somber",
"sombre",
"sunless",
"tenebrous",
"unlit",
"cloudy",
"shadowlike",
"shadowy",
"shady",
"gray",
"grey",
"leaden",
"pale",
"palish"
],
"related":[
"ablaze",
"ardent",
"blazing",
"burning",
"combusting",
"fiery",
"flaming",
"red-hot",
"agleam",
"aglitter",
"blinding",
"coruscant",
"flaring",
"flashing",
"flickering",
"gemmy",
"glancing",
"glaring",
"gleaming",
"glimmering",
"glinting",
"glistening",
"glistering",
"glittering",
"scintillant",
"scintillating",
"shimmering",
"shimmery",
"sparkling",
"sunny",
"twinkling",
"winking",
"burnished",
"polished",
"shined",
"superbright",
"ultrabright"
],
"synonyms":[
"beaming",
"bedazzling",
"bright",
"brilliant",
"candescent",
"clear",
"dazzling",
"fulgent",
"glowing",
"incandescent",
"lambent",
"lucent",
"lucid",
"luminous",
"lustrous",
"radiant",
"refulgent",
"sheeny",
"shining",
"shiny",
"splendid"
]
},
"type":[
"adjective"
]
}
}

425
en_MW_thesaurus/eg_mwt.json Normal file
View File

@ -0,0 +1,425 @@
{
"egalitarians":{
"one who advocates or practices social equality":{
"antonyms":[],
"examples":[
"as egalitarians , they have always promoted policies for equal pay"
],
"near antonyms":[
"snobs",
"snoots"
],
"related":[
"populists",
"social democrats",
"socialists"
],
"synonyms":[
"democrats",
"levelers",
"levellers"
]
},
"type":[
"noun"
]
},
"egg":{
"a member of the human race":{
"antonyms":[],
"examples":[
"kindhearted and generous, she's a real good egg by anyone's standard"
],
"near antonyms":[
"animal",
"beast",
"beastie",
"brute",
"critter"
],
"related":[
"hominid",
"homo",
"humanoid",
"brother",
"fellow",
"fellowman",
"neighbor",
"celebrity",
"personality",
"self",
"somebody"
],
"synonyms":[
"baby",
"being",
"bird",
"bod",
"body",
"character",
"cookie",
"cooky",
"creature",
"customer",
"devil",
"duck",
"face",
"fish",
"guy",
"head",
"human",
"human being",
"individual",
"life",
"man",
"mortal",
"party",
"person",
"personage",
"scout",
"slob",
"sort",
"soul",
"specimen",
"stiff",
"thing",
"wight"
]
},
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun",
"verb"
]
},
"egg (on)":{
"to try to persuade (someone) through earnest appeals to follow a course of action":{
"antonyms":[],
"examples":[
"though exhausted, I was egged on by spectators to finish the marathon"
],
"near antonyms":[
"deter",
"discourage",
"dissuade",
"brake",
"check",
"constrain",
"curb",
"hold back",
"inhibit",
"restrain"
],
"related":[
"drive",
"propel",
"spur",
"stimulate",
"hurry",
"hustle",
"push",
"rush",
"adjure",
"beseech",
"implore",
"importune",
"blandish",
"cajole",
"coax",
"soft-soap",
"wheedle",
"high-pressure",
"nag",
"needle",
"pressure",
"foment",
"incite",
"instigate",
"provoke",
"stir (up)"
],
"synonyms":[
"encourage",
"exhort",
"goad",
"nudge",
"press",
"prod",
"prompt",
"urge"
]
},
"type":[
"verb"
]
},
"egging%20%28on%29":{
"to try to persuade (someone) through earnest appeals to follow a course of action":{
"antonyms":[],
"examples":[
"though exhausted, I was egged on by spectators to finish the marathon"
],
"near antonyms":[
"deterring",
"discouraging",
"dissuading",
"braking",
"checking",
"constraining",
"curbing",
"holding back",
"inhibiting",
"restraining"
],
"related":[
"driving",
"propelling",
"spurring",
"stimulating",
"hurrying",
"hustling",
"pushing",
"rushing",
"adjuring",
"beseeching",
"imploring",
"importuning",
"blandishing",
"cajoling",
"coaxing",
"soft-soaping",
"wheedling",
"high-pressuring",
"nagging",
"needling",
"pressuring",
"fomenting",
"inciting",
"instigating",
"provoking",
"stirring (up)"
],
"synonyms":[
"encouraging",
"exhorting",
"goading",
"nudging",
"pressing",
"prodding",
"prompting",
"urging"
]
},
"type":[
"verb"
]
},
"ego":{
"a reasonable or justifiable sense of one's worth or importance":{
"antonyms":[],
"examples":[
"I have enough ego that I don't give up easily when trying to win any contest or competition"
],
"near antonyms":[
"discredit",
"disesteem",
"disgrace",
"dishonor",
"disrepute",
"humiliation",
"ignominy",
"infamy",
"obloquy",
"odium",
"opprobrium",
"shame",
"demureness",
"down-to-earthness",
"humbleness",
"humility",
"modesty",
"diffidence",
"meekness",
"shyness",
"timidity",
"timidness"
],
"related":[
"aplomb",
"assurance",
"confidence",
"self-assurance",
"self-assuredness",
"self-confidence",
"self-pride",
"self-trust",
"self-worth",
"dignity",
"face",
"honor",
"prestige"
],
"synonyms":[
"pride",
"pridefulness",
"self-esteem",
"self-regard",
"self-respect"
]
},
"an often unjustified feeling of being pleased with oneself or with one's situation or achievements":{
"antonyms":[
"humbleness",
"humility",
"modesty"
],
"examples":[
"a star athlete with a refreshing lack of ego"
],
"near antonyms":[
"diffidence",
"self-doubt",
"self-disgust",
"self-hate",
"self-loathing",
"altruism",
"unselfishness",
"bashfulness",
"demureness",
"shyness",
"timidity",
"timidness",
"passiveness",
"passivity"
],
"related":[
"assurance",
"confidence",
"self-assurance",
"self-confidence",
"self-righteousness",
"arrogance",
"disdainfulness",
"haughtiness",
"imperiousness",
"lordliness",
"self-assertion",
"snobbishness",
"superciliousness",
"superiority",
"hubris",
"overconfidence",
"presumption",
"pretense",
"pretence",
"pretension",
"pretentiousness",
"egoism",
"self-centeredness",
"selfishness",
"self-pride",
"self-respect"
],
"synonyms":[
"amour propre",
"bighead",
"complacence",
"complacency",
"conceit",
"conceitedness",
"egotism",
"pomposity",
"pompousness",
"pride",
"pridefulness",
"self-admiration",
"self-assumption",
"self-conceit",
"self-congratulation",
"self-esteem",
"self-glory",
"self-importance",
"self-love",
"self-opinion",
"self-satisfaction",
"smugness",
"swelled head",
"swellheadedness",
"vaingloriousness",
"vainglory",
"vainness",
"vanity"
]
},
"type":[
"noun"
]
},
"egoless":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"adjective"
]
},
"egregiously":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"adverb"
]
},
"egress":{
"a place or means of going out":{
"antonyms":[
"entrance",
"entranceway",
"entry",
"entryway",
"ingress"
],
"examples":[
"the only egress from the nightclub was a dark, narrow stairway to the street below"
],
"near antonyms":[
"access",
"entr\u00e9e",
"entree"
],
"related":[
"escape",
"escape hatch",
"release",
"gate",
"mouth",
"opening",
"passage",
"vent"
],
"synonyms":[
"exit",
"issue",
"outlet"
]
},
"type":[
"noun"
]
}
}

View File

@ -0,0 +1,14 @@
{
"ejections":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
}
}

View File

@ -0,0 +1,32 @@
{
"eke%20out":{
"to get with great difficulty":{
"antonyms":[],
"examples":[
"eked out a living from the family's small farm"
],
"near antonyms":[],
"related":[
"acquire",
"attain",
"draw",
"earn",
"gain",
"land",
"obtain",
"procure",
"secure"
],
"synonyms":[
"scrape (up or together)",
"scrounge",
"squeeze",
"wrest",
"wring"
]
},
"type":[
"verb"
]
}
}

551
en_MW_thesaurus/el_mwt.json Normal file
View File

@ -0,0 +1,551 @@
{
"elapsed":{
"to come to an end":{
"antonyms":[
"continued",
"hung on",
"persisted"
],
"examples":[
"in those coin-operated binoculars at scenic areas your viewing time seems to elapse almost before it has begun"
],
"near antonyms":[
"drew out",
"extended",
"prolonged",
"protracted"
],
"related":[
"desisted (from)",
"laid off (of)",
"refrained (from)",
"gave over",
"knocked off",
"packed (up or in)",
"broke down",
"conked (out)",
"cut out",
"stalled",
"paused",
"stayed",
"suspended",
"abated",
"petered (out)",
"wound down",
"winded down"
],
"synonyms":[
"broke off",
"broke up",
"ceased",
"closed",
"concluded",
"dead-ended",
"determined",
"died",
"discontinued",
"ended",
"expired",
"finished",
"halted",
"lapsed",
"left off",
"let up",
"passed",
"quit",
"quitted",
"stopped",
"terminated",
"went",
"winked (out)",
"wound up",
"winded up"
]
},
"type":[
"verb"
]
},
"elapsing":{
"to come to an end":{
"antonyms":[
"continuing",
"hanging on",
"persisting"
],
"examples":[
"in those coin-operated binoculars at scenic areas your viewing time seems to elapse almost before it has begun"
],
"near antonyms":[
"drawing out",
"extending",
"prolonging",
"protracting"
],
"related":[
"desisting (from)",
"laying off (of)",
"refraining (from)",
"giving over",
"knocking off",
"packing (up or in)",
"breaking down",
"conking (out)",
"cutting out",
"stalling",
"pausing",
"staying",
"suspending",
"abating",
"petering (out)",
"winding down"
],
"synonyms":[
"breaking off",
"breaking up",
"ceasing",
"closing",
"concluding",
"dead-ending",
"determining",
"discontinuing",
"dying",
"ending",
"expiring",
"finishing",
"going",
"halting",
"lapsing",
"leaving off",
"letting up",
"passing",
"quitting",
"stopping",
"terminating",
"winding up",
"winking (out)"
]
},
"type":[
"verb"
]
},
"electric":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"causing great emotional or mental stimulation":{
"antonyms":[
"unexciting"
],
"examples":[
"Dr. King's \"I Have a Dream\" speech was one of the truly electric moments in American oratory"
],
"near antonyms":[
"boring",
"mind-numbing",
"tedious",
"tiresome",
"dreary",
"dull",
"humdrum",
"monotonous",
"uninteresting"
],
"related":[
"arresting",
"interesting",
"intriguing",
"provocative",
"tantalizing",
"titillating",
"absorbing",
"engrossing",
"gripping",
"riveting",
"moving",
"poignant",
"touching",
"enchanting",
"enthralling",
"fascinating",
"spellbinding",
"dynamic",
"energetic",
"high-voltage",
"kinetic",
"lively",
"lusty"
],
"synonyms":[
"breathtaking",
"charged",
"electrifying",
"exciting",
"exhilarating",
"exhilarative",
"galvanic",
"galvanizing",
"hair-raising",
"heart-stopping",
"inspiring",
"intoxicating",
"kicky",
"mind-bending",
"mind-blowing",
"mind-boggling",
"rip-roaring",
"rousing",
"stimulating",
"stirring",
"thrilling"
]
},
"type":[
"adjective",
"noun"
]
},
"electrified":{
"to cause a pleasurable stimulation of the feelings":{
"antonyms":[],
"examples":[
"Marian Anderson electrified audiences with her soaring operatic voice"
],
"near antonyms":[
"bored",
"jaded",
"palled",
"tired",
"wearied",
"dejected",
"demoralized",
"discouraged",
"disheartened",
"dispirited"
],
"related":[
"aroused",
"incited",
"inspired",
"provoked",
"stimulated",
"bewitched",
"captivated",
"charmed",
"delighted",
"enchanted",
"enthralled",
"hypnotized",
"mesmerized",
"riveted",
"spellbound",
"interested",
"intrigued",
"tantalized"
],
"synonyms":[
"charged",
"excited",
"exhilarated",
"galvanized",
"intoxicated",
"pumped up",
"thrilled",
"titillated",
"turned on"
]
},
"type":[
"verb"
]
},
"eliminate":{
"to prevent the participation, consideration, or inclusion of":{
"antonyms":[
"admit",
"include"
],
"examples":[
"the stiff entry fee is intended to eliminate less-than-serious competitors"
],
"near antonyms":[
"accept",
"embrace",
"entertain",
"receive",
"take in",
"welcome",
"unban"
],
"related":[
"blackball",
"blacklist",
"excommunicate",
"ostracize",
"banish",
"deport",
"exile",
"expel",
"oust",
"throw out",
"obviate",
"preclude",
"prevent",
"prohibit",
"block",
"hinder",
"impede",
"obstruct",
"cease",
"discontinue",
"halt",
"suspend",
"deter",
"stave off",
"ward (off)",
"check off",
"disregard",
"comb (out)",
"weed (out)"
],
"synonyms":[
"ban",
"bar",
"close out",
"count (out)",
"debar",
"except",
"exclude",
"freeze out",
"rule out",
"shut out"
]
},
"type":[
"verb"
]
},
"elopes":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"verb"
]
},
"elude":{
"to get or keep away from (as a responsibility) through cleverness or trickery":{
"antonyms":[],
"examples":[
"the millionaire had been eluding his fair share of taxes for years before getting caught"
],
"near antonyms":[
"accept",
"court",
"embrace",
"pursue",
"seek",
"welcome",
"catch",
"contract",
"incur"
],
"related":[
"miss",
"avert",
"deflect",
"divert",
"obviate",
"parry",
"prevent",
"ward (off)",
"ban",
"bar",
"debar",
"eliminate",
"except",
"exclude",
"preclude",
"rule out",
"bypass",
"circumvent",
"skirt",
"foil",
"fox",
"frustrate",
"outfox",
"outsmart",
"outwit",
"overreach",
"thwart"
],
"synonyms":[
"avoid",
"dodge",
"duck",
"escape",
"eschew",
"evade",
"finesse",
"get around",
"scape",
"shake",
"shirk",
"shuffle (out of)",
"shun",
"weasel (out of)"
]
},
"type":[
"verb"
]
},
"eluded":{
"to get or keep away from (as a responsibility) through cleverness or trickery":{
"antonyms":[],
"examples":[
"the millionaire had been eluding his fair share of taxes for years before getting caught"
],
"near antonyms":[
"accepted",
"courted",
"embraced",
"pursued",
"sought",
"welcomed",
"caught",
"contracted",
"incurred"
],
"related":[
"missed",
"averted",
"deflected",
"diverted",
"obviated",
"parried",
"prevented",
"warded (off)",
"banned",
"barred",
"debarred",
"eliminated",
"excepted",
"excluded",
"precluded",
"ruled out",
"bypassed",
"circumvented",
"skirted",
"foiled",
"foxed",
"frustrated",
"outfoxed",
"outsmarted",
"outwitted",
"overreached",
"thwarted"
],
"synonyms":[
"avoided",
"dodged",
"ducked",
"escaped",
"eschewed",
"evaded",
"finessed",
"got around",
"scaped",
"shirked",
"shook",
"shuffled (out of)",
"shunned",
"weaseled (out of)"
]
},
"type":[
"verb"
]
},
"elvish":{
"tending to or exhibiting reckless playfulness":{
"antonyms":[],
"examples":[
"with elvish glee the children jumped into all the carefully raked leaf piles"
],
"near antonyms":[
"grave",
"grim",
"sedate",
"sober",
"solemn",
"staid",
"stern"
],
"related":[
"antic",
"coltish",
"coy",
"frisky",
"frolicsome",
"kittenish",
"playful",
"sportful",
"sportive",
"gay",
"happy",
"lighthearted",
"whimsical",
"energetic",
"lively",
"spirited",
"sprightly",
"artful",
"crafty",
"cunning",
"trickish",
"tricky",
"wily",
"misbehaving",
"naughty",
"troublemaking",
"pestering",
"riling",
"teasing"
],
"synonyms":[
"arch",
"devilish",
"espi\u00e8gle",
"impish",
"knavish",
"leprechaunish",
"mischievous",
"pixie",
"pixy",
"pixieish",
"prankish",
"puckish",
"rascally",
"roguish",
"scampish",
"sly",
"tricksy",
"waggish",
"wicked"
]
},
"type":[
"adjective"
]
}
}

2523
en_MW_thesaurus/em_mwt.json Normal file

File diff suppressed because it is too large Load Diff

6522
en_MW_thesaurus/en_mwt.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,46 @@
{
"eon":{
"a long or seemingly long period of time":{
"antonyms":[],
"examples":[
"it's been aeons since I saw a movie at the multiplex",
"glaciers that formed aeons ago"
],
"near antonyms":[
"flash",
"instant",
"jiffy",
"minute",
"moment",
"second",
"shake",
"split second",
"trice",
"twinkle",
"twinkling",
"wink",
"microsecond",
"nanosecond"
],
"related":[
"infinity",
"lifetime"
],
"synonyms":[
"age",
"blue moon",
"coon's age",
"cycle",
"donkey's years",
"eternity",
"forever",
"long",
"months",
"moon"
]
},
"type":[
"noun"
]
}
}

178
en_MW_thesaurus/ep_mwt.json Normal file
View File

@ -0,0 +1,178 @@
{
"ephemeras":{
"things that are important or useful for only a short time; items that were not meant to have lasting value":{
"antonyms":[],
"examples":[
"He has a large collection of old menus and other ephemera ."
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"epilog":{
"a final section or speech after the main part of a book, play, or musical composition":{
"antonyms":[],
"examples":[
"The main character's death was alluded to in the epilogue .",
"His final years were a peaceful epilogue to a life of adventure."
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
},
"episode":{
"something that happens":{
"antonyms":[],
"examples":[
"I'm trying to forget the whole embarrassing episode"
],
"near antonyms":[],
"related":[
"coincidence",
"co-occurrence",
"fluke",
"freak",
"landmark",
"milepost",
"milestone",
"page",
"phenomenon",
"turning point",
"adventure",
"experience",
"time",
"happenchance",
"happenstance",
"accident",
"crisis",
"emergency",
"juncture",
"achievement",
"deed",
"exploit",
"feat",
"news",
"tidings"
],
"synonyms":[
"affair",
"circumstance",
"event",
"hap",
"happening",
"incident",
"occasion",
"occurrence",
"thing"
]
},
"type":[
"noun"
]
},
"epitomizes":{
"to make into a short statement of the main points (as of a report)":{
"antonyms":[],
"examples":[
"his personal code of behavior on the playing field is epitomized by his favorite saying, \"It's not whether you win or lose, it's how you play the game\""
],
"near antonyms":[
"elongates",
"extends",
"lengthens",
"prolongs",
"protracts",
"amplifies",
"elaborates (on or upon)",
"enlarges (on or upon)",
"expands",
"supplements"
],
"related":[
"abridges",
"condenses",
"curtails",
"cuts back",
"shortens",
"downsizes",
"shrinks",
"concentrates",
"consolidates",
"decocts",
"essentializes",
"simplifies",
"streamlines"
],
"synonyms":[
"abstracts",
"boils down",
"briefs",
"digests",
"encapsulates",
"outlines",
"recapitulates",
"recaps",
"reprises",
"summarizes",
"sums up",
"synopsizes",
"wraps up"
]
},
"to represent in visible form":{
"antonyms":[],
"examples":[
"the Parthenon in Athens epitomizes the ancient Greek ideal of architectural beauty"
],
"near antonyms":[],
"related":[
"actualizes",
"concretizes",
"realizes",
"exemplifies",
"illustrates",
"images",
"objectifies",
"symbolizes",
"typifies"
],
"synonyms":[
"bodies",
"embodies",
"expresses",
"externalizes",
"incarnates",
"incorporates",
"instantiates",
"manifests",
"materializes",
"personalizes",
"personifies",
"substantiates"
]
},
"type":[
"verb"
]
},
"epoxy%20resin":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
}
}

121
en_MW_thesaurus/eq_mwt.json Normal file
View File

@ -0,0 +1,121 @@
{
"equipage":{
"a horse-drawn wheeled vehicle for carrying passengers":{
"antonyms":[],
"examples":[
"for their old-fashioned wedding, the couple arrived at the church in a Victorian-era equipage , complete with costumed driver"
],
"near antonyms":[],
"related":[
"barouche",
"brougham",
"buckboard",
"buggy",
"cab",
"cabriolet",
"calash",
"cal\u00e8che",
"caleche",
"caroche",
"carryall",
"chaise",
"chariot",
"coach",
"coup\u00e9",
"coupe",
"curricle",
"diligence",
"dogcart",
"droshky",
"drosky",
"four-in-hand",
"gig",
"go-cart",
"hackney",
"hansom",
"hansom cab",
"jaunting car",
"landau",
"phaeton",
"post chaise",
"roadster",
"rockaway",
"stage",
"stagecoach",
"stanhope",
"surrey",
"tandem",
"tilbury",
"tonga",
"trap",
"troika",
"victoria",
"turnout"
],
"synonyms":[
"carriage",
"rig"
]
},
"type":[
"noun"
]
},
"equivalence":{
"the state or fact of being exactly the same in number, amount, status, or quality":{
"antonyms":[
"imparity",
"inequality",
"nonequivalence"
],
"examples":[
"moviegoers who mistakenly believe that there is an equivalence between the personality of an actor and that of his character"
],
"near antonyms":[
"difference",
"disagreement",
"discrepancy",
"disparateness",
"disparity",
"distinction",
"distinctiveness",
"distinctness",
"divergence",
"diverseness",
"diversity",
"incompatibility",
"dissimilarity",
"unlikeness"
],
"related":[
"comparability",
"compatibility",
"correlation",
"correspondence",
"alikeness",
"community",
"likeness",
"parallelism",
"resemblance",
"similarity",
"similitude",
"exchangeability",
"interchangeability",
"identicalness",
"identity"
],
"synonyms":[
"coequality",
"coordinateness",
"equality",
"equivalency",
"par",
"parity",
"sameness"
]
},
"type":[
"noun"
]
}
}

219
en_MW_thesaurus/er_mwt.json Normal file
View File

@ -0,0 +1,219 @@
{
"erecting":{
"to fix in an upright position":{
"antonyms":[],
"examples":[
"the tribes of the Pacific Northwest erected totem poles in front of their dwellings"
],
"near antonyms":[
"demolishing",
"flattening",
"knocking down",
"leveling",
"levelling",
"razing",
"tearing down"
],
"related":[
"bracing",
"buttressing",
"propping (up)",
"shoring (up)",
"supporting",
"boosting",
"craning",
"elevating",
"heaving",
"hefting",
"heightening",
"hiking",
"hoisting",
"jacking (up)",
"lifting",
"perking (up)",
"picking up",
"upholding",
"uplifting",
"upping"
],
"synonyms":[
"pitching",
"putting up",
"raising",
"rearing",
"setting up",
"upending",
"upraising"
]
},
"to form by putting together parts or materials":{
"antonyms":[
"demounting",
"disassembling",
"dismantling",
"dismembering",
"knocking down",
"striking",
"taking down",
"tearing down"
],
"examples":[
"we'd better erect some sort of shelter before these woods are in total darkness"
],
"near antonyms":[
"demolishing",
"destroying",
"devastating",
"flattening",
"leveling",
"levelling",
"pulling down",
"pulverizing",
"razing",
"ruinating",
"ruining",
"shattering",
"smashing",
"wrecking",
"blowing up",
"exploding",
"detaching",
"disengaging",
"disconnecting",
"disjoining",
"disuniting",
"dividing",
"separating"
],
"related":[
"carpentering",
"fashioning",
"forging",
"framing",
"hammering",
"handcrafting",
"manufacturing",
"molding",
"producing",
"shaping",
"prefabricating",
"beginning",
"coining",
"creating",
"generating",
"inaugurating",
"initiating",
"innovating",
"inventing",
"originating",
"constituting",
"establishing",
"fathering",
"founding",
"instituting",
"organizing",
"conceiving",
"concocting",
"contriving",
"cooking (up)",
"designing",
"devising",
"imagining",
"thinking (up)",
"reassembling",
"rebuilding",
"reconstructing",
"redeveloping",
"reedifying",
"retrofitting",
"jerry-building",
"rigging (up)",
"throwing up",
"combining",
"uniting"
],
"synonyms":[
"assembling",
"building",
"confecting",
"constructing",
"fabricating",
"making",
"making up",
"piecing",
"putting up",
"raising",
"rearing",
"setting up"
]
},
"type":[
"verb"
]
},
"errorless":{
"as in flawless , impeccable":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"adjective"
]
},
"eruct":{
"to violently throw out or off (something from within)":{
"antonyms":[],
"examples":[
"he suddenly snapped and began eructing his repressed anger"
],
"near antonyms":[
"bottle (up)",
"contain",
"restrain",
"shut (in or up)"
],
"related":[
"gush",
"pour",
"squirt",
"stream",
"surge",
"emanate",
"exhale",
"issue",
"release",
"shoot",
"spit",
"spring",
"vent",
"discharge",
"emit",
"fire",
"cast",
"fling",
"heave",
"hurl",
"launch",
"pitch",
"toss"
],
"synonyms":[
"belch",
"disgorge",
"eject",
"erupt",
"expel",
"jet",
"spew",
"spout",
"spurt"
]
},
"type":[
"verb"
]
}
}

1497
en_MW_thesaurus/es_mwt.json Normal file

File diff suppressed because it is too large Load Diff

162
en_MW_thesaurus/et_mwt.json Normal file
View File

@ -0,0 +1,162 @@
{
"eternal":{
"having an existence or validity that does not change or diminish":{
"antonyms":[],
"examples":[
"a charming fable that presents some eternal truths in a fresh way"
],
"near antonyms":[
"antiquated",
"archaic",
"dated",
"obsolete",
"outdated",
"outmoded",
"out-of-date",
"outworn",
"pass\u00e9"
],
"related":[
"ceaseless",
"endless",
"permanent",
"changeless",
"constant",
"stable",
"stationary",
"steady",
"unchanging",
"unvarying"
],
"synonyms":[
"abiding",
"ageless",
"continuing",
"dateless",
"enduring",
"everlasting",
"immortal",
"imperishable",
"lasting",
"ongoing",
"perennial",
"perpetual",
"timeless",
"undying"
]
},
"lasting forever":{
"antonyms":[
"impermanent",
"mortal",
"temporary",
"transient"
],
"examples":[
"the quest for some magic potion that promises eternal youth"
],
"near antonyms":[
"ephemeral",
"evanescent",
"fleeting",
"fugacious",
"fugitive",
"momentary",
"passing",
"short-lived",
"transitory",
"interim",
"provisional",
"short-term"
],
"related":[
"durable",
"enduring",
"lasting",
"long-lived",
"persistent",
"stubborn",
"imperishable",
"indefeasible",
"indefectible",
"indelible",
"indestructible",
"indissoluble",
"inexpungible",
"timeless",
"abiding",
"stable",
"standing",
"steadfast",
"steady",
"unfailing",
"unfaltering",
"continual",
"continuing",
"continuous",
"incessant",
"unbroken",
"unceasing",
"uninterrupted",
"unremitting"
],
"synonyms":[
"ceaseless",
"dateless",
"deathless",
"endless",
"everlasting",
"immortal",
"permanent",
"perpetual",
"undying",
"unending"
]
},
"the being worshipped as the creator and ruler of the universe":{
"antonyms":[],
"examples":[
"spent much time pondering the nature of the Eternal"
],
"near antonyms":[],
"related":[],
"synonyms":[
"Allah",
"Almighty",
"Author",
"Creator",
"deity",
"Divinity",
"Everlasting",
"Father",
"God",
"Godhead",
"Jehovah",
"King",
"Lord",
"Maker",
"Providence",
"Supreme Being",
"Yahweh",
"Jahveh",
"Yahveh"
]
},
"type":[
"adjective",
"noun"
]
},
"etherealness":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"noun"
]
}
}

192
en_MW_thesaurus/eu_mwt.json Normal file
View File

@ -0,0 +1,192 @@
{
"euchred":{
"to rob by the use of trickery or threats":{
"antonyms":[],
"examples":[
"a fast-talking speculator who tried to euchre the property owners out of their land"
],
"near antonyms":[],
"related":[
"extorted",
"wrenched",
"wrested",
"wrung",
"clipped",
"gouged",
"nicked",
"overcharged",
"soaked",
"exploited",
"milked",
"deceived",
"duped",
"fooled",
"gulled",
"tricked",
"roped (in)",
"betrayed",
"bitched",
"double-crossed",
"bamboozled",
"fast-talked"
],
"synonyms":[
"beat",
"bilked",
"bled",
"cheated",
"chiseled",
"chiselled",
"choused",
"conned",
"cozened",
"defrauded",
"did",
"diddled",
"did in",
"fiddled",
"fleeced",
"flimflammed",
"gaffed",
"hosed",
"hustled",
"mulcted",
"nobbled",
"plucked",
"reamed",
"ripped off",
"rooked",
"screwed",
"shook down",
"shortchanged",
"shorted",
"skinned",
"skunked",
"squeezed",
"stiffed",
"stuck",
"stung",
"suckered",
"swindled",
"thimblerigged",
"victimized"
]
},
"type":[
"verb"
]
},
"eulogizing":{
"to say or write good things about (someone or something)":{
"antonyms":[],
"examples":[
"He was eulogized at his funeral as a great actor and a good friend."
],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"verb"
]
},
"euphoric":{
"experiencing or marked by overwhelming usually pleasurable emotion":{
"antonyms":[
"depressed"
],
"examples":[
"the euphoric winner was momentarily speechless"
],
"near antonyms":[
"blue",
"brokenhearted",
"crestfallen",
"dejected",
"despondent",
"disconsolate",
"disheartened",
"doleful",
"down",
"downcast",
"downhearted",
"forlorn",
"gloomy",
"glum",
"hangdog",
"heartbroken",
"heartsick",
"heartsore",
"inconsolable",
"joyless",
"low",
"low-spirited",
"melancholy",
"miserable",
"mournful",
"sad",
"saddened",
"sorrowful",
"sorry",
"unhappy",
"woebegone",
"woeful",
"wretched"
],
"related":[
"enchanted",
"exultant",
"glorying",
"jubilant",
"rejoicing",
"triumphant",
"enthusiastic",
"excited",
"gung ho",
"thrilled",
"blissed-out",
"blissful",
"delighted",
"glad",
"gratified",
"happy",
"joyful",
"joyous",
"pleased",
"satisfied",
"tickled"
],
"synonyms":[
"ecstatic",
"elated",
"elevated",
"enrapt",
"enraptured",
"entranced",
"exhilarated",
"giddy",
"heady",
"intoxicated",
"rapt",
"rapturous",
"rhapsodic",
"rhapsodical"
]
},
"type":[
"adjective"
]
},
"euthanizing":{
"as in":{
"antonyms":[],
"examples":[],
"near antonyms":[],
"related":[],
"synonyms":[]
},
"type":[
"verb"
]
}
}

Some files were not shown because too many files have changed in this diff Show More