A python package that helps to query the API of the Korean Learners' Dictionary, provided by the National Institute of Korean Language.
To install the package via pip, run:
pip install krdict.py
You can also install from one of the releases.
To use most of the functionality provided by this package, you'll need to generate an API key via the portal (requires login).
A minimal example query that assumes the KRDICT_KEY
environment variable is set:
import os
import json
import krdict
krdict.set_key(os.getenv('KRDICT_KEY'))
response = krdict.search(query='λ무', raise_api_errors=True)
print(json.dumps(response.asdict(), indent=2, ensure_ascii=False))
Assuming an error does not occur, the output will be similar to:
{
"data": {
...
"results": [
{
"target_code": 32750,
"word": "λ무",
"pronunciation": "λ무",
...
"definitions": [
{
"order": 1,
"definition": "λ¨λ¨ν μ€κΈ°μ κ°μ§μ μμ΄ λ¬λ¦°, μ¬λ¬ ν΄ λμ μλΌλ μλ¬Ό."
},
...
]
},
...
]
},
"request_params": {
"q": "λ무",
"key": "YOUR_API_KEY"
}
}
For more information and usage examples, please check the documentation.