From 6799748a1a6b972845a2d69c24bb71746c776564 Mon Sep 17 00:00:00 2001 From: Luke Avedon Date: Fri, 16 Apr 2021 20:55:29 -0400 Subject: [PATCH] basic root and definition work --- API.cs | 28 +++- CurrentQuery.cs | 5 + bin/Debug/net5.0/OxfordV2.dll | Bin 16896 -> 18432 bytes bin/Debug/net5.0/OxfordV2.pdb | Bin 13004 -> 13364 bytes bin/Debug/net5.0/ref/OxfordV2.dll | Bin 7168 -> 7168 bytes logs/Log_OxfordApplication_20210416-2043.txt | 63 +++++++++ logs/Log_OxfordApplication_20210416-2045.txt | 63 +++++++++ logs/Log_OxfordApplication_20210416-2046.txt | 68 ++++++++++ logs/Log_OxfordApplication_20210416-2047.txt | 136 +++++++++++++++++++ logs/Log_OxfordApplication_20210416-2051.txt | 66 +++++++++ logs/Log_OxfordApplication_20210416-2052.txt | 63 +++++++++ logs/Log_OxfordApplication_20210416-2054.txt | 63 +++++++++ obj/Debug/net5.0/OxfordV2.dll | Bin 16896 -> 18432 bytes obj/Debug/net5.0/OxfordV2.pdb | Bin 13004 -> 13364 bytes obj/Debug/net5.0/ref/OxfordV2.dll | Bin 7168 -> 7168 bytes 15 files changed, 552 insertions(+), 3 deletions(-) create mode 100644 logs/Log_OxfordApplication_20210416-2043.txt create mode 100644 logs/Log_OxfordApplication_20210416-2045.txt create mode 100644 logs/Log_OxfordApplication_20210416-2046.txt create mode 100644 logs/Log_OxfordApplication_20210416-2047.txt create mode 100644 logs/Log_OxfordApplication_20210416-2051.txt create mode 100644 logs/Log_OxfordApplication_20210416-2052.txt create mode 100644 logs/Log_OxfordApplication_20210416-2054.txt diff --git a/API.cs b/API.cs index 6062b14..fef6ebb 100644 --- a/API.cs +++ b/API.cs @@ -188,14 +188,36 @@ public static void APICalls(CurrentQuery query) getRoots.RunSynchronously(); Trace.WriteLine("Ran roots synchronously."); // JsonElement apiData = JSONResponse.RootElement.GetProperty("data"); - string rootInfo = JSONResponse.RootElement.GetProperty("data").ToString(); + string rootDataString = JSONResponse.RootElement.GetProperty("data").ToString(); Console.WriteLine(); // Etymology_summary - // + // (?<="etymology_summary":\s")(.*?)(?="},) + var etymologySummaryRegEx = new Regex("(?<=\"etymology_summary\":\\s\")(.*?)(?=\"},)"); + query.EtymologySummary = etymologySummaryRegEx.Match(rootDataString).ToString(); + Console.WriteLine("Where the word \"{0}\" came from:", query.UserEnteredWord); + Console.WriteLine(query.EtymologySummary); + Console.WriteLine(); + + // first_use - // + // (?<="first_use":\s")(.*?)(?=",) + var firstUseRegEx = new Regex("(?<=\"first_use\":\\s\")(.*?)(?=\",)"); + query.FirstUse = firstUseRegEx.Match(rootDataString).ToString(); + Console.WriteLine("First Recorded Use:"); + Console.WriteLine(query.FirstUse); + Console.WriteLine(); + + // Source Language // (?<="source_language":\s\[\["European languages",)(.*?)(?=\]) + var sourceLanguageRegEx = new Regex("(?<=\"source_language\":\\s\\[\\[\"European languages\",)(.*?)(?=\\])"); + query.SourceLanguage = sourceLanguageRegEx.Match(rootDataString).ToString(); + Console.WriteLine("The word \"{0}\" has origins in these European languages: ", query.UserEnteredWord); + Console.WriteLine(query.SourceLanguage); + Console.WriteLine("-----------"); + Console.WriteLine("Please Press Enter..."); + Console.ReadLine(); + } } diff --git a/CurrentQuery.cs b/CurrentQuery.cs index 384d2e5..429fb7e 100644 --- a/CurrentQuery.cs +++ b/CurrentQuery.cs @@ -18,6 +18,11 @@ class CurrentQuery : IDisposable public string Definition { get; set; } public string[] SenseIDs { get; set; } public string Lamma { get; set; } + + public string EtymologySummary { get; set; } + public string FirstUse { get; set; } + public string SourceLanguage { get; set; } + public Modes QueryMode { get; set; } public CurrentQuery() { diff --git a/bin/Debug/net5.0/OxfordV2.dll b/bin/Debug/net5.0/OxfordV2.dll index c74e26ada2d0f09d1d950968fccd11bb81246a90..d9d95a2e57f40341fb0a38ec22b02b6d3e711760 100644 GIT binary patch delta 6386 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 delta 5155 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 diff --git a/bin/Debug/net5.0/OxfordV2.pdb b/bin/Debug/net5.0/OxfordV2.pdb index 673a7183f0763a96d4010db7d500ea96789e0cec..f3f7413434f4a03636cd0981be9d1124420f1bb9 100644 GIT binary patch delta 1748 zcmYk6ZERCz6vxkVd)tk<7jS(U?cCaK-Fn-xc13}iWt0s84eDTw`4Y)CR%(}RHEpLZ zzI4W*&iG;5RSXDm!4C>EzHQME4M9mHPJ@m}AZ8y(Fk+Z7!4I;q82z8yUc60y=RE)C zoag=A{t%mca^mhMJ~0#3yh!w>g=kQq-I+-xhU01CUm=kUSJTx=GTJ@d-rjZpR``DC zpMubBgULSV@c5E?VM^>6pWg80runJUOXbT)Jd=|S#fD%6R07OT?Z5H|_$_6V*JFGY6kE^}?ZC|z^A5G(4s5qcH0BcJ~&uAX%T^jgGx;0~}hALsGK z28~yylK*v9dlh~zeE=tv88lC@+MqeU#-KUQuWB4$ZqOXJ8Z?jR63XRgb7f(_-J#Ve zPNyg2;uQwX6Yxp(1$hCdL37+?&>ZJl)$=)im#(qCb^}#<2RtWK<4W}bd|J0b^JY8- zoq*HbZHt2QG zZi8-w_T=?z$PYo+7~)~*S`u7NL{ZR$4xb?*0$pd&oY$j%DsOrGAGC^T4z`5mVN0nA zMO;SRu;pZdwbEtu+h_~gcB+AOP#G-Ie$D=YmPB812VDa~t0j zb;9i28}*Ih3mM1W%(Sk~4ck}mmd$j*e+BlK5;dFYN2Le$rZNWW3QWUp4xE8~CU6Dz z-2hq4bT;6Iy%vbV76+#+i*hQN%%}^N^=;|oNNRs~dhE=hh zU|SIaQ4S~)zHIO9zz_#^av;tl{2cIbN{~%CPbw_xhK3fgLrpg{mx;HIi$jlzx0l4> zJ<>bt)sGuCi4(KGH=GyV5qHZg?+@*J@XWe{B1`&rgJ%MPsdNP7bK2e_bB` zTD{!(XtTYROIx-pnsZde>!b?pEE delta 1479 zcmYk5T})g>6vxlp4;B>4SC=iYz};Og+Nz)kh$rzjHL+y*j7)=_#694D!LT8izne#hm z=FHqPv+EN#6X*9HH*})Nt3+A>QKNuAI6ak|96w3;Sw6%uMve?p4E_lF{YMV=VLS)! zj)HrhPmO~Aytuod+^2LeG+e&>PSI08zdyWkt2UDf*cC{|plS&9sRvS_{ZJ9a8$1YA zWxj1q^F$P-FoX?=7ylDd$rsk>aZ{xyO^q6wRf;xibQ|OE7>6vCMlFr5IVyeUXjB|k zsXnS7*IYDK%pnm8%=nW_f{RUM!g7!gAKyH;XknTix zG@Pm!i>_noQFM*D96X^Ay@?nu3%%iX=KNf*a?E}q4zrbS0T+QQ^YdRvede8Dz7%c( zUw}WCPkW6oz8^p_q7sRDgB=oczEon)mr2a|a*1iPk-GIe)V^S%V!B)~eM2Ldk+FS4x`pk=b4=cRx65VmX z)DJzdg#RnYE?cfqP&4#P<2;^j#3Z59hH1e5+ccu;)MFW%P9^p{Y?r+PJ8oZtU9x|I z{n#d5r#rR*Tk3Sf?r}z7hn;!YR~+|z!H@1~pA{NQJd>PEPA5~7hZExu&(f*X)Y!o> z_=#D1VJ0#4QuaSzDr{_A9q6cExNsuY(|6{zD>n`to0~m({ZPlu=bKk9ZN6K7JbTXR z72@UWH_?5<_lQPu5{f$!?-ZTxrFe&`T=?6)8{aQ_vrR2ui*TvYIyAceS4)3;S7dp| z#(=u}lW_1uf6H`y=B-bce?9e3ms{0#)bt1Wk!b#q_mBgs4_%1~s#AswQ9jL45p=J% unab)9?(Mb{V!$10e@yw{z3ggxKq*|CUt3%|yOwdk+S9iMf4CKU!~X-@nZcp} diff --git a/bin/Debug/net5.0/ref/OxfordV2.dll b/bin/Debug/net5.0/ref/OxfordV2.dll index e1b96e5a6ad906599f21ef0e28593e91aef1e94b..bd03e8b82a842576c2b6847236064f159a5c9b3c 100644 GIT binary patch delta 1472 zcmbu9O=whC7>3{TGdJTTlib8f)ELu@Ni{(cLrI#n1V*aXh#`?N!4$0-B{LX1rp;tZ z(-db4{zNL#;g-Zw6uWTIEZWj3bkT*O?xc&-Rp}~FD%eF^2o&0t?>X}qbm@ijobUbK zbHDqYJ7;dTFWYx(L4R>S^lR=$i+q15w=!1SF$4^Q*90))%Y`@BWPuuLKaCbIEcbfj zVpx6@%&&+s>3Xkx^Wcx4+upeQ@BG~}p|^g?*XzGUGfr}`xsGs1_;4Zue8(z+1zz<= zoX*!K9H9LY@Dt}-nsIb?=KRG(%G`CT8ej_TqftySc1`@|=-@%l?^b)?I=z_=hIJf* z!*r)Ob{FR$=VlJ$nY@|VyDH2MM&%>r;77}^#rLWXe{z|FMVt9e{39KFDF?Ww*K%E$ z*tK!m^5Jfq3g~VcpNdB+fOef!wW!zEnCVj{-y^z}w^+3=v#y$Oh+R~%3m5ac2|auz z1=U5*s2%uNxVThQt+we-t~Xvg6g|_uQ5|rc6nZh1{R{o%er@Lft$6jDx-!Rg9Gl9yxOO+F5fMkA?49N|E2@rOb=liVucFqG=FeVwju0PK zl-)tF=sgxUGQvSg7PePXOa7b4mc1qaXSlpUy{@yUEtXmGAJ&&E3X-p-uIPCPsOx1_ zc!D{w0&CJRv%sTV5{1-@(64m!iupDf*({amj%b4YR zSoSUi9%k;zbJ&Yj%QZ_VlWDVzSgu;GSwdUaQgUNH9-b=uAIykF?)!Im6vqr$6^-~ z=~!YCsb^DOG8hgWK0lM19ZePNqR1}{V@-n6@| t0eJ4qdE1>34abTfPSaxC#F1RMNuC_?b~dc$YeWD0 zSu-ia( z>qw|?;Nq|x?TuY#S*Qc)jZF$O zRz#VwVM)}})azXKr?WM#Po*3P$3zxRQx++dg&ht<7RqT$;%b%0RW@!gJC0MN^yR3e zODJBd9T4P`*-PbyrVXP49g#1nCVmr=bG({Xa2dylZbL0`S=1p|OM@CQW7^03G=Y+& zjKyo7}>_O`Q|{w6INIzwSsa z4S&ZdQj>j*UE5OXYvzRS6ALhn4sUxVn`*{%50RvA#`FMV+thCnfh93+#-tg>wiI54 zX$jVZQ^z8oNUHc^(`btrX1S!B{<=*&-t+%_CyZ#IrF9Ah2T?;V(Tqc-N*pBG>A)mU zDmEy#D0V6KC=Q`hUoyYe=PVhnZgC!7Ivqv_&uM2QFC-sF54^KmbW Q*)lhbJaAM!8c|=$Ut;{cfdBvi diff --git a/logs/Log_OxfordApplication_20210416-2043.txt b/logs/Log_OxfordApplication_20210416-2043.txt new file mode 100644 index 0000000..134b560 --- /dev/null +++ b/logs/Log_OxfordApplication_20210416-2043.txt @@ -0,0 +1,63 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +chair +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "chair_nn01", "band": 6, "meta": {"created": 1889, "revised": false, "updated": null}, "lemma": "chair", "oed_url": "https://www.oed.com/view/Entry/30215#eid9765745", "daterange": {"end": null, "start": 1297, "obsolete": false, "rangestring": "1297\u2014"}, "etymology": {"etymons": [{"word": "cha\u00ebre", "language": "French"}, {"word": "chaiere", "language": "French"}], "etymology_type": "borrowingHybrid", "etymon_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"]], "source_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"], ["European languages", "Greek"]], "etymology_summary": "A borrowing from French, combined with an English element."}, "first_use": "Chronicle of Robert of Gloucester", "frequency": [[1750, 17], [1760, 19], [1770, 20], [1780, 20], [1790, 23], [1800, 24], [1810, 26], [1820, 29], [1830, 30], [1840, 33], [1850, 35], [1860, 38], [1870, 41], [1880, 43], [1890, 45], [1900, 47], [1910, 48], [1920, 47], [1930, 45], [1940, 41], [1950, 37], [1960, 33], [1970, 33], [1980, 38], [1990, 45], [2000, 49], [2010, 52]], "sense_ids": ["chair_nn01-9765748", "chair_nn01-9765918", "chair_nn01-9766034", "chair_nn01-9766086", "chair_nn01-9766128", "chair_nn01-9766167", "chair_nn01-9766191", "chair_nn01-9766261", "chair_nn01-9766309", "chair_nn01-9766353", "chair_nn01-9766415", "chair_nn01-9766435", "chair_nn01-9766456", "chair_nn01-9766508", "chair_nn01-9766538", "chair_nn01-9766562", "chair_nn01-9766607", "chair_nn01-9766670", "chair_nn01-9766761", "chair_nn01-9766784", "chair_nn01-9766861", "chair_nn01-9766921", "chair_nn01-9766962", "chair_nn01-9766979", "chair_nn01-128025765", "chair_nn01-218565101"], "definition": "A seat for one person (always implying more or less of comfort and ease); now the common name for the movable four-legged seat with a rest for the back, which constitutes, in many forms of rudeness or elegance, an ordinary article of household furniture, and is also used in gardens or wherever it is usual to sit. to take a chair: to take a seat, be seated.", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "chair", "part_of_speech": "NN"}, {"form": "chairs", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "chair", "part_of_speech": "NN"}, {"form": "chairs", "part_of_speech": "NNS"}]}], "frequency_id": "chair_nn01-fq", "oed_reference": "chair, n.1", "pronunciations": [{"ipa": ["t\u0283\u025b\u02d0"], "region": "British"}, {"ipa": ["t\u0283\u025b(\u0259)r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "chair_nn01-9765748"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +chair_nn01In MainMenu() +The user's input was read as: +r +Root selected. +Now to call the root endpoint. +Going to look up roots +API call URL is: +https://oed-researcher-api.oxfordlanguages.com/oed/api/v0.2/ +Making the request: +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API to get ROOTS. Bloody Roots!! +Called callRootsAPI +Making the request +System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.String,System.Net.Http.HttpClient+d__41] +Ran roots synchronously. +In MainMenu() +The user's input was read as: +x +Exit selected. diff --git a/logs/Log_OxfordApplication_20210416-2045.txt b/logs/Log_OxfordApplication_20210416-2045.txt new file mode 100644 index 0000000..134b560 --- /dev/null +++ b/logs/Log_OxfordApplication_20210416-2045.txt @@ -0,0 +1,63 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +chair +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "chair_nn01", "band": 6, "meta": {"created": 1889, "revised": false, "updated": null}, "lemma": "chair", "oed_url": "https://www.oed.com/view/Entry/30215#eid9765745", "daterange": {"end": null, "start": 1297, "obsolete": false, "rangestring": "1297\u2014"}, "etymology": {"etymons": [{"word": "cha\u00ebre", "language": "French"}, {"word": "chaiere", "language": "French"}], "etymology_type": "borrowingHybrid", "etymon_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"]], "source_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"], ["European languages", "Greek"]], "etymology_summary": "A borrowing from French, combined with an English element."}, "first_use": "Chronicle of Robert of Gloucester", "frequency": [[1750, 17], [1760, 19], [1770, 20], [1780, 20], [1790, 23], [1800, 24], [1810, 26], [1820, 29], [1830, 30], [1840, 33], [1850, 35], [1860, 38], [1870, 41], [1880, 43], [1890, 45], [1900, 47], [1910, 48], [1920, 47], [1930, 45], [1940, 41], [1950, 37], [1960, 33], [1970, 33], [1980, 38], [1990, 45], [2000, 49], [2010, 52]], "sense_ids": ["chair_nn01-9765748", "chair_nn01-9765918", "chair_nn01-9766034", "chair_nn01-9766086", "chair_nn01-9766128", "chair_nn01-9766167", "chair_nn01-9766191", "chair_nn01-9766261", "chair_nn01-9766309", "chair_nn01-9766353", "chair_nn01-9766415", "chair_nn01-9766435", "chair_nn01-9766456", "chair_nn01-9766508", "chair_nn01-9766538", "chair_nn01-9766562", "chair_nn01-9766607", "chair_nn01-9766670", "chair_nn01-9766761", "chair_nn01-9766784", "chair_nn01-9766861", "chair_nn01-9766921", "chair_nn01-9766962", "chair_nn01-9766979", "chair_nn01-128025765", "chair_nn01-218565101"], "definition": "A seat for one person (always implying more or less of comfort and ease); now the common name for the movable four-legged seat with a rest for the back, which constitutes, in many forms of rudeness or elegance, an ordinary article of household furniture, and is also used in gardens or wherever it is usual to sit. to take a chair: to take a seat, be seated.", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "chair", "part_of_speech": "NN"}, {"form": "chairs", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "chair", "part_of_speech": "NN"}, {"form": "chairs", "part_of_speech": "NNS"}]}], "frequency_id": "chair_nn01-fq", "oed_reference": "chair, n.1", "pronunciations": [{"ipa": ["t\u0283\u025b\u02d0"], "region": "British"}, {"ipa": ["t\u0283\u025b(\u0259)r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "chair_nn01-9765748"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +chair_nn01In MainMenu() +The user's input was read as: +r +Root selected. +Now to call the root endpoint. +Going to look up roots +API call URL is: +https://oed-researcher-api.oxfordlanguages.com/oed/api/v0.2/ +Making the request: +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API to get ROOTS. Bloody Roots!! +Called callRootsAPI +Making the request +System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.String,System.Net.Http.HttpClient+d__41] +Ran roots synchronously. +In MainMenu() +The user's input was read as: +x +Exit selected. diff --git a/logs/Log_OxfordApplication_20210416-2046.txt b/logs/Log_OxfordApplication_20210416-2046.txt new file mode 100644 index 0000000..10aa8fa --- /dev/null +++ b/logs/Log_OxfordApplication_20210416-2046.txt @@ -0,0 +1,68 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +r +Root selected. +Now to call the root endpoint. +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +chair +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "chair_nn01", "band": 6, "meta": {"created": 1889, "revised": false, "updated": null}, "lemma": "chair", "oed_url": "https://www.oed.com/view/Entry/30215#eid9765745", "daterange": {"end": null, "start": 1297, "obsolete": false, "rangestring": "1297\u2014"}, "etymology": {"etymons": [{"word": "cha\u00ebre", "language": "French"}, {"word": "chaiere", "language": "French"}], "etymology_type": "borrowingHybrid", "etymon_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"]], "source_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"], ["European languages", "Greek"]], "etymology_summary": "A borrowing from French, combined with an English element."}, "first_use": "Chronicle of Robert of Gloucester", "frequency": [[1750, 17], [1760, 19], [1770, 20], [1780, 20], [1790, 23], [1800, 24], [1810, 26], [1820, 29], [1830, 30], [1840, 33], [1850, 35], [1860, 38], [1870, 41], [1880, 43], [1890, 45], [1900, 47], [1910, 48], [1920, 47], [1930, 45], [1940, 41], [1950, 37], [1960, 33], [1970, 33], [1980, 38], [1990, 45], [2000, 49], [2010, 52]], "sense_ids": ["chair_nn01-9765748", "chair_nn01-9765918", "chair_nn01-9766034", "chair_nn01-9766086", "chair_nn01-9766128", "chair_nn01-9766167", "chair_nn01-9766191", "chair_nn01-9766261", "chair_nn01-9766309", "chair_nn01-9766353", "chair_nn01-9766415", "chair_nn01-9766435", "chair_nn01-9766456", "chair_nn01-9766508", "chair_nn01-9766538", "chair_nn01-9766562", "chair_nn01-9766607", "chair_nn01-9766670", "chair_nn01-9766761", "chair_nn01-9766784", "chair_nn01-9766861", "chair_nn01-9766921", "chair_nn01-9766962", "chair_nn01-9766979", "chair_nn01-128025765", "chair_nn01-218565101"], "definition": "A seat for one person (always implying more or less of comfort and ease); now the common name for the movable four-legged seat with a rest for the back, which constitutes, in many forms of rudeness or elegance, an ordinary article of household furniture, and is also used in gardens or wherever it is usual to sit. to take a chair: to take a seat, be seated.", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "chair", "part_of_speech": "NN"}, {"form": "chairs", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "chair", "part_of_speech": "NN"}, {"form": "chairs", "part_of_speech": "NNS"}]}], "frequency_id": "chair_nn01-fq", "oed_reference": "chair, n.1", "pronunciations": [{"ipa": ["t\u0283\u025b\u02d0"], "region": "British"}, {"ipa": ["t\u0283\u025b(\u0259)r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "chair_nn01-9765748"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +chair_nn01In MainMenu() +The user's input was read as: +r +Root selected. +Now to call the root endpoint. +Going to look up roots +API call URL is: +https://oed-researcher-api.oxfordlanguages.com/oed/api/v0.2/ +Making the request: +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API to get ROOTS. Bloody Roots!! +Called callRootsAPI +Making the request +System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.String,System.Net.Http.HttpClient+d__41] +Ran roots synchronously. +In MainMenu() +The user's input was read as: +x +Exit selected. diff --git a/logs/Log_OxfordApplication_20210416-2047.txt b/logs/Log_OxfordApplication_20210416-2047.txt new file mode 100644 index 0000000..1cf37f0 --- /dev/null +++ b/logs/Log_OxfordApplication_20210416-2047.txt @@ -0,0 +1,136 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +r +Root selected. +Now to call the root endpoint. +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +chair +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "chair_nn01", "band": 6, "meta": {"created": 1889, "revised": false, "updated": null}, "lemma": "chair", "oed_url": "https://www.oed.com/view/Entry/30215#eid9765745", "daterange": {"end": null, "start": 1297, "obsolete": false, "rangestring": "1297\u2014"}, "etymology": {"etymons": [{"word": "cha\u00ebre", "language": "French"}, {"word": "chaiere", "language": "French"}], "etymology_type": "borrowingHybrid", "etymon_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"]], "source_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"], ["European languages", "Greek"]], "etymology_summary": "A borrowing from French, combined with an English element."}, "first_use": "Chronicle of Robert of Gloucester", "frequency": [[1750, 17], [1760, 19], [1770, 20], [1780, 20], [1790, 23], [1800, 24], [1810, 26], [1820, 29], [1830, 30], [1840, 33], [1850, 35], [1860, 38], [1870, 41], [1880, 43], [1890, 45], [1900, 47], [1910, 48], [1920, 47], [1930, 45], [1940, 41], [1950, 37], [1960, 33], [1970, 33], [1980, 38], [1990, 45], [2000, 49], [2010, 52]], "sense_ids": ["chair_nn01-9765748", "chair_nn01-9765918", "chair_nn01-9766034", "chair_nn01-9766086", "chair_nn01-9766128", "chair_nn01-9766167", "chair_nn01-9766191", "chair_nn01-9766261", "chair_nn01-9766309", "chair_nn01-9766353", "chair_nn01-9766415", "chair_nn01-9766435", "chair_nn01-9766456", "chair_nn01-9766508", "chair_nn01-9766538", "chair_nn01-9766562", "chair_nn01-9766607", "chair_nn01-9766670", "chair_nn01-9766761", "chair_nn01-9766784", "chair_nn01-9766861", "chair_nn01-9766921", "chair_nn01-9766962", "chair_nn01-9766979", "chair_nn01-128025765", "chair_nn01-218565101"], "definition": "A seat for one person (always implying more or less of comfort and ease); now the common name for the movable four-legged seat with a rest for the back, which constitutes, in many forms of rudeness or elegance, an ordinary article of household furniture, and is also used in gardens or wherever it is usual to sit. to take a chair: to take a seat, be seated.", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "chair", "part_of_speech": "NN"}, {"form": "chairs", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "chair", "part_of_speech": "NN"}, {"form": "chairs", "part_of_speech": "NNS"}]}], "frequency_id": "chair_nn01-fq", "oed_reference": "chair, n.1", "pronunciations": [{"ipa": ["t\u0283\u025b\u02d0"], "region": "British"}, {"ipa": ["t\u0283\u025b(\u0259)r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "chair_nn01-9765748"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +chair_nn01In MainMenu() +The user's input was read as: +r +Root selected. +Now to call the root endpoint. +Going to look up roots +API call URL is: +https://oed-researcher-api.oxfordlanguages.com/oed/api/v0.2/ +Making the request: +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API to get ROOTS. Bloody Roots!! +Called callRootsAPI +Making the request +System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.String,System.Net.Http.HttpClient+d__41] +Ran roots synchronously. +In MainMenu() +The user's input was read as: +n +New word +query.HasLookedUpWord +False +query.Definition + +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +chair +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "chair_nn01", "band": 6, "meta": {"created": 1889, "revised": false, "updated": null}, "lemma": "chair", "oed_url": "https://www.oed.com/view/Entry/30215#eid9765745", "daterange": {"end": null, "start": 1297, "obsolete": false, "rangestring": "1297\u2014"}, "etymology": {"etymons": [{"word": "cha\u00ebre", "language": "French"}, {"word": "chaiere", "language": "French"}], "etymology_type": "borrowingHybrid", "etymon_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"]], "source_language": [["European languages", "Italic", "Romance", "Italo-Western", "Gallo-Romance", "French"], ["European languages", "Greek"]], "etymology_summary": "A borrowing from French, combined with an English element."}, "first_use": "Chronicle of Robert of Gloucester", "frequency": [[1750, 17], [1760, 19], [1770, 20], [1780, 20], [1790, 23], [1800, 24], [1810, 26], [1820, 29], [1830, 30], [1840, 33], [1850, 35], [1860, 38], [1870, 41], [1880, 43], [1890, 45], [1900, 47], [1910, 48], [1920, 47], [1930, 45], [1940, 41], [1950, 37], [1960, 33], [1970, 33], [1980, 38], [1990, 45], [2000, 49], [2010, 52]], "sense_ids": ["chair_nn01-9765748", "chair_nn01-9765918", "chair_nn01-9766034", "chair_nn01-9766086", "chair_nn01-9766128", "chair_nn01-9766167", "chair_nn01-9766191", "chair_nn01-9766261", "chair_nn01-9766309", "chair_nn01-9766353", "chair_nn01-9766415", "chair_nn01-9766435", "chair_nn01-9766456", "chair_nn01-9766508", "chair_nn01-9766538", "chair_nn01-9766562", "chair_nn01-9766607", "chair_nn01-9766670", "chair_nn01-9766761", "chair_nn01-9766784", "chair_nn01-9766861", "chair_nn01-9766921", "chair_nn01-9766962", "chair_nn01-9766979", "chair_nn01-128025765", "chair_nn01-218565101"], "definition": "A seat for one person (always implying more or less of comfort and ease); now the common name for the movable four-legged seat with a rest for the back, which constitutes, in many forms of rudeness or elegance, an ordinary article of household furniture, and is also used in gardens or wherever it is usual to sit. to take a chair: to take a seat, be seated.", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "chair", "part_of_speech": "NN"}, {"form": "chairs", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "chair", "part_of_speech": "NN"}, {"form": "chairs", "part_of_speech": "NNS"}]}], "frequency_id": "chair_nn01-fq", "oed_reference": "chair, n.1", "pronunciations": [{"ipa": ["t\u0283\u025b\u02d0"], "region": "British"}, {"ipa": ["t\u0283\u025b(\u0259)r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "chair_nn01-9765748"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +chair_nn01In MainMenu() +The user's input was read as: +r +Root selected. +Now to call the root endpoint. +Going to look up roots +API call URL is: +https://oed-researcher-api.oxfordlanguages.com/oed/api/v0.2/ +Making the request: +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API to get ROOTS. Bloody Roots!! +Called callRootsAPI +Making the request +System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.String,System.Net.Http.HttpClient+d__41] +Ran roots synchronously. +In MainMenu() +The user's input was read as: + +In MainMenu() +The user's input was read as: +x +Exit selected. diff --git a/logs/Log_OxfordApplication_20210416-2051.txt b/logs/Log_OxfordApplication_20210416-2051.txt new file mode 100644 index 0000000..434fa0d --- /dev/null +++ b/logs/Log_OxfordApplication_20210416-2051.txt @@ -0,0 +1,66 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +r +Root selected. +Now to call the root endpoint. +Going to look up roots +API call URL is: +https://oed-researcher-api.oxfordlanguages.com/oed/api/v0.2/ +Making the request: +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API to get ROOTS. Bloody Roots!! +Called callRootsAPI +Making the request +System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.String,System.Net.Http.HttpClient+d__41] +Ran roots synchronously. +In MainMenu() +The user's input was read as: + +In MainMenu() +The user's input was read as: +x +Exit selected. diff --git a/logs/Log_OxfordApplication_20210416-2052.txt b/logs/Log_OxfordApplication_20210416-2052.txt new file mode 100644 index 0000000..be28227 --- /dev/null +++ b/logs/Log_OxfordApplication_20210416-2052.txt @@ -0,0 +1,63 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +computer +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "computer_nn01", "band": 9, "meta": {"created": 1891, "revised": true, "updated": 2008}, "lemma": "computer", "oed_url": "https://www.oed.com/view/Entry/37975#eid8618136", "daterange": {"end": null, "start": 1613, "obsolete": false, "rangestring": "1613\u2014"}, "etymology": {"etymons": [{"word": "compute", "language": "English", "target_id": "compute_vb01", "part_of_speech": "VB"}, {"word": "-er", "language": "English", "target_id": "er_su01", "part_of_speech": "SUFFIX"}], "etymology_type": "derivative", "etymon_language": [["English"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "Formed within English, by derivation."}, "first_use": "\u2018R. B.\u2019", "frequency": [[1750, 0.21], [1760, 0.18], [1770, 0.17], [1780, 0.16], [1790, 0.15], [1800, 0.14], [1810, 0.083], [1820, 0.077], [1830, 0.086], [1840, 0.086], [1850, 0.093], [1860, 0.11], [1870, 0.13], [1880, 0.16], [1890, 0.18], [1900, 0.21], [1910, 0.24], [1920, 0.45], [1930, 2.1], [1940, 10], [1950, 17], [1960, 40], [1970, 77], [1980, 110], [1990, 120], [2000, 120], [2010, 120]], "sense_ids": ["computer_nn01-8618138", "computer_nn01-8618177", "computer_nn01-130514973", "computer_nn01-130514976"], "definition": "An electronic device (or system of devices) which is used to store, manipulate, and communicate information, perform complex calculations, or control or regulate other devices or machines, and is capable of receiving information (data) and of processing it in accordance with variable procedural instructions (programs or software); esp. a small, self-contained one for individual use in the home or workplace, used esp. for handling text, images, music, and video, accessing and using the internet\u2026", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "computer", "part_of_speech": "NN"}, {"form": "computers", "part_of_speech": "NNS"}]}], "frequency_id": "computer_nn01-fq", "oed_reference": "computer, n.", "pronunciations": [{"ipa": ["k\u0259m\u02c8pju\u02d0t\u0259"], "region": "British"}, {"ipa": ["k\u0259m\u02c8pjud\u0259r"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "computer_nn01-130514973"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +computer_nn01In MainMenu() +The user's input was read as: +r +Root selected. +Now to call the root endpoint. +Going to look up roots +API call URL is: +https://oed-researcher-api.oxfordlanguages.com/oed/api/v0.2/ +Making the request: +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API to get ROOTS. Bloody Roots!! +Called callRootsAPI +Making the request +System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.String,System.Net.Http.HttpClient+d__41] +Ran roots synchronously. +In MainMenu() +The user's input was read as: +x +Exit selected. diff --git a/logs/Log_OxfordApplication_20210416-2054.txt b/logs/Log_OxfordApplication_20210416-2054.txt new file mode 100644 index 0000000..0cbf9a9 --- /dev/null +++ b/logs/Log_OxfordApplication_20210416-2054.txt @@ -0,0 +1,63 @@ +Leaving Main method. +Starting Main Menu +In MainMenu() +The user's input was read as: +d +Word look up selected +Found that QueryMode is set to words. +Looking up the word: +penis +Now to call the words endpoint. +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API +Called callWordsAPI +Making the request +Got responses. +Set JSONResponse to the response. +Left getWords task with the JSONResponse. +Parsing JSON +We now have the data as a string. +[{"id": "penis_nn01", "band": 11, "meta": {"created": 1904, "revised": true, "updated": 2005}, "lemma": "penis", "oed_url": "https://www.oed.com/view/Entry/140136#eid31070718", "daterange": {"end": null, "start": 1578, "obsolete": false, "rangestring": "1578\u2014"}, "etymology": {"etymons": [{"word": "p\u0113nis", "language": "Latin"}], "etymology_type": "borrowing", "etymon_language": [["European languages", "Italic", "Latin"]], "source_language": [["European languages", "Italic", "Latin"]], "etymology_summary": "A borrowing from Latin."}, "first_use": "John Banister", "frequency": [[1750, 3.1], [1760, 3.1], [1770, 2.9], [1780, 2.9], [1790, 3.0], [1800, 2.9], [1810, 2.7], [1820, 2.4], [1830, 2.3], [1840, 2.5], [1850, 2.7], [1860, 2.8], [1870, 3.0], [1880, 3.1], [1890, 3.0], [1900, 3.0], [1910, 2.8], [1920, 2.9], [1930, 3.0], [1940, 3.1], [1950, 3.7], [1960, 4.3], [1970, 4.8], [1980, 5.7], [1990, 5.8], [2000, 5.8], [2010, 5.6]], "sense_ids": ["penis_nn01-31070720"], "definition": "Anatomy and Zoology. The male genital organ used (usually) for copulation and for the emission or dispersal of sperm, in mammals containing erectile tissue and serving also for the elimination of urine.", "main_entry": true, "inflections": [{"region": "British", "inflections": [{"form": "penis", "part_of_speech": "NN"}, {"form": "penes", "part_of_speech": "NNS"}, {"form": "penises", "part_of_speech": "NNS"}]}, {"region": "US", "inflections": [{"form": "penis", "part_of_speech": "NN"}, {"form": "penes", "part_of_speech": "NNS"}, {"form": "penises", "part_of_speech": "NNS"}]}], "frequency_id": "penis_nn01-fq", "oed_reference": "penis, n.", "pronunciations": [{"ipa": ["\u02c8pi\u02d0n\u026as"], "region": "British"}, {"ipa": ["\u02c8pin\u1d7bs"], "region": "US"}], "parts_of_speech": ["NN"], "primary_sense_id": "penis_nn01-31070720"}] +Extracted definition. +Set definition to query object. +Now to get and set the word ID. +The wordID was grabbed as: +penis_nn01In MainMenu() +The user's input was read as: +r +Root selected. +Now to call the root endpoint. +Going to look up roots +API call URL is: +https://oed-researcher-api.oxfordlanguages.com/oed/api/v0.2/ +Making the request: +Getting request keys +resetHeaders called. +App Id is: +4ebc819b +Key is: +b6b1ca0e4e766b222d56c20f43c2396f +Here are the request Headers... +Accept: application/json +app_id: 4ebc819b +app_key: b6b1ca0e4e766b222d56c20f43c2396f + +Calling the API to get ROOTS. Bloody Roots!! +Called callRootsAPI +Making the request +System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1+AsyncStateMachineBox`1[System.String,System.Net.Http.HttpClient+d__41] +Ran roots synchronously. +In MainMenu() +The user's input was read as: +x +Exit selected. diff --git a/obj/Debug/net5.0/OxfordV2.dll b/obj/Debug/net5.0/OxfordV2.dll index c74e26ada2d0f09d1d950968fccd11bb81246a90..d9d95a2e57f40341fb0a38ec22b02b6d3e711760 100644 GIT binary patch delta 6386 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 delta 5155 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 diff --git a/obj/Debug/net5.0/OxfordV2.pdb b/obj/Debug/net5.0/OxfordV2.pdb index 673a7183f0763a96d4010db7d500ea96789e0cec..f3f7413434f4a03636cd0981be9d1124420f1bb9 100644 GIT binary patch delta 1748 zcmYk6ZERCz6vxkVd)tk<7jS(U?cCaK-Fn-xc13}iWt0s84eDTw`4Y)CR%(}RHEpLZ zzI4W*&iG;5RSXDm!4C>EzHQME4M9mHPJ@m}AZ8y(Fk+Z7!4I;q82z8yUc60y=RE)C zoag=A{t%mca^mhMJ~0#3yh!w>g=kQq-I+-xhU01CUm=kUSJTx=GTJ@d-rjZpR``DC zpMubBgULSV@c5E?VM^>6pWg80runJUOXbT)Jd=|S#fD%6R07OT?Z5H|_$_6V*JFGY6kE^}?ZC|z^A5G(4s5qcH0BcJ~&uAX%T^jgGx;0~}hALsGK z28~yylK*v9dlh~zeE=tv88lC@+MqeU#-KUQuWB4$ZqOXJ8Z?jR63XRgb7f(_-J#Ve zPNyg2;uQwX6Yxp(1$hCdL37+?&>ZJl)$=)im#(qCb^}#<2RtWK<4W}bd|J0b^JY8- zoq*HbZHt2QG zZi8-w_T=?z$PYo+7~)~*S`u7NL{ZR$4xb?*0$pd&oY$j%DsOrGAGC^T4z`5mVN0nA zMO;SRu;pZdwbEtu+h_~gcB+AOP#G-Ie$D=YmPB812VDa~t0j zb;9i28}*Ih3mM1W%(Sk~4ck}mmd$j*e+BlK5;dFYN2Le$rZNWW3QWUp4xE8~CU6Dz z-2hq4bT;6Iy%vbV76+#+i*hQN%%}^N^=;|oNNRs~dhE=hh zU|SIaQ4S~)zHIO9zz_#^av;tl{2cIbN{~%CPbw_xhK3fgLrpg{mx;HIi$jlzx0l4> zJ<>bt)sGuCi4(KGH=GyV5qHZg?+@*J@XWe{B1`&rgJ%MPsdNP7bK2e_bB` zTD{!(XtTYROIx-pnsZde>!b?pEE delta 1479 zcmYk5T})g>6vxlp4;B>4SC=iYz};Og+Nz)kh$rzjHL+y*j7)=_#694D!LT8izne#hm z=FHqPv+EN#6X*9HH*})Nt3+A>QKNuAI6ak|96w3;Sw6%uMve?p4E_lF{YMV=VLS)! zj)HrhPmO~Aytuod+^2LeG+e&>PSI08zdyWkt2UDf*cC{|plS&9sRvS_{ZJ9a8$1YA zWxj1q^F$P-FoX?=7ylDd$rsk>aZ{xyO^q6wRf;xibQ|OE7>6vCMlFr5IVyeUXjB|k zsXnS7*IYDK%pnm8%=nW_f{RUM!g7!gAKyH;XknTix zG@Pm!i>_noQFM*D96X^Ay@?nu3%%iX=KNf*a?E}q4zrbS0T+QQ^YdRvede8Dz7%c( zUw}WCPkW6oz8^p_q7sRDgB=oczEon)mr2a|a*1iPk-GIe)V^S%V!B)~eM2Ldk+FS4x`pk=b4=cRx65VmX z)DJzdg#RnYE?cfqP&4#P<2;^j#3Z59hH1e5+ccu;)MFW%P9^p{Y?r+PJ8oZtU9x|I z{n#d5r#rR*Tk3Sf?r}z7hn;!YR~+|z!H@1~pA{NQJd>PEPA5~7hZExu&(f*X)Y!o> z_=#D1VJ0#4QuaSzDr{_A9q6cExNsuY(|6{zD>n`to0~m({ZPlu=bKk9ZN6K7JbTXR z72@UWH_?5<_lQPu5{f$!?-ZTxrFe&`T=?6)8{aQ_vrR2ui*TvYIyAceS4)3;S7dp| z#(=u}lW_1uf6H`y=B-bce?9e3ms{0#)bt1Wk!b#q_mBgs4_%1~s#AswQ9jL45p=J% unab)9?(Mb{V!$10e@yw{z3ggxKq*|CUt3%|yOwdk+S9iMf4CKU!~X-@nZcp} diff --git a/obj/Debug/net5.0/ref/OxfordV2.dll b/obj/Debug/net5.0/ref/OxfordV2.dll index e1b96e5a6ad906599f21ef0e28593e91aef1e94b..bd03e8b82a842576c2b6847236064f159a5c9b3c 100644 GIT binary patch delta 1472 zcmbu9O=whC7>3{TGdJTTlib8f)ELu@Ni{(cLrI#n1V*aXh#`?N!4$0-B{LX1rp;tZ z(-db4{zNL#;g-Zw6uWTIEZWj3bkT*O?xc&-Rp}~FD%eF^2o&0t?>X}qbm@ijobUbK zbHDqYJ7;dTFWYx(L4R>S^lR=$i+q15w=!1SF$4^Q*90))%Y`@BWPuuLKaCbIEcbfj zVpx6@%&&+s>3Xkx^Wcx4+upeQ@BG~}p|^g?*XzGUGfr}`xsGs1_;4Zue8(z+1zz<= zoX*!K9H9LY@Dt}-nsIb?=KRG(%G`CT8ej_TqftySc1`@|=-@%l?^b)?I=z_=hIJf* z!*r)Ob{FR$=VlJ$nY@|VyDH2MM&%>r;77}^#rLWXe{z|FMVt9e{39KFDF?Ww*K%E$ z*tK!m^5Jfq3g~VcpNdB+fOef!wW!zEnCVj{-y^z}w^+3=v#y$Oh+R~%3m5ac2|auz z1=U5*s2%uNxVThQt+we-t~Xvg6g|_uQ5|rc6nZh1{R{o%er@Lft$6jDx-!Rg9Gl9yxOO+F5fMkA?49N|E2@rOb=liVucFqG=FeVwju0PK zl-)tF=sgxUGQvSg7PePXOa7b4mc1qaXSlpUy{@yUEtXmGAJ&&E3X-p-uIPCPsOx1_ zc!D{w0&CJRv%sTV5{1-@(64m!iupDf*({amj%b4YR zSoSUi9%k;zbJ&Yj%QZ_VlWDVzSgu;GSwdUaQgUNH9-b=uAIykF?)!Im6vqr$6^-~ z=~!YCsb^DOG8hgWK0lM19ZePNqR1}{V@-n6@| t0eJ4qdE1>34abTfPSaxC#F1RMNuC_?b~dc$YeWD0 zSu-ia( z>qw|?;Nq|x?TuY#S*Qc)jZF$O zRz#VwVM)}})azXKr?WM#Po*3P$3zxRQx++dg&ht<7RqT$;%b%0RW@!gJC0MN^yR3e zODJBd9T4P`*-PbyrVXP49g#1nCVmr=bG({Xa2dylZbL0`S=1p|OM@CQW7^03G=Y+& zjKyo7}>_O`Q|{w6INIzwSsa z4S&ZdQj>j*UE5OXYvzRS6ALhn4sUxVn`*{%50RvA#`FMV+thCnfh93+#-tg>wiI54 zX$jVZQ^z8oNUHc^(`btrX1S!B{<=*&-t+%_CyZ#IrF9Ah2T?;V(Tqc-N*pBG>A)mU zDmEy#D0V6KC=Q`hUoyYe=PVhnZgC!7Ivqv_&uM2QFC-sF54^KmbW Q*)lhbJaAM!8c|=$Ut;{cfdBvi