My question is not directly related to KoNLPY but perhaps someone in the group can answer it.
I’ve seen both Java and Python code on the web that makes queries to online National Institute of the Korean Language Standard Korean Dictionary (국립국어원 표준국어대사전) at http : // stdweb2.korean.go.kr. The Java code does GET and the Python code does POST but both construct the queries using what look like the same set of parameters. Here’s a parameter list from Python code at http : //blog.naver.com/PostView.nhn?blogId=ezpy_&logNo=220662653936&parentCategoryNo=&categoryNo=&viewDate=&isShowPopularPosts=false&from=postView.
params = {
'seq':'',
'Letter': letter,
'PageRow':'10000000',
'Table': 'words|word',
'Gubun': '3',
'SearchPart': 'Simple',
'SearchText': u''}
I would like to know the full list of query parameters for the dictionary, including semantics and permitted values, but I can't find any documentation either on the site or anywhere else.
Can anyone advise me?
-- John
Cambridge, MA