A Slovenian dictionary API written in python
Uses sskj.si.
###1. Installing Dependencies:
- BeautifulSoup4
- (optional, but recommended) requests
You can install SSKJpy with pip:
pip install git+https://github.com/DefaltSimon/SSKJpy.git
Strongly recommended: install with requests:
pip install git+https://github.com/DefaltSimon/SSKJpy.git[requests]
Or clone the repo and run:
python -m pip install .
(or python -m pip install .[requests] to get the "faster" implementation)
###2. Use and simple examples:
sskj = SSKJParser()
data = sskj.get_definition("test")
data.keyword
"test"
data.summary
"Postopek za ugotavljanje določenih lastnosti, [...]"
####Full documentation can be found on the wiki