kurdish-wiktionary
v1.0.0
Published
A parser for the kurdish wiktionary
Downloads
12
Maintainers
Readme
Kurdish Wiktionary
A parser for the Kurdish Wiktionary with ~5.5K Kurdish (Kurmanji) words. It is helpful to get the following of Kurdish Wiktionary words:
- Position of the Kurdish word
- Glosses of the Kurdish word
- Synonyms of the Kurdish word
- Tags of the Kurdish word
- Form of, of the Kurdish word
- Sounds of the Kurdish word
https://www.npmjs.com/package/kurdish-wiktionary
Installation:
With NPM
:
npm i kurdish-wiktionary
With Yarn
:
yarn add kurdish-wiktionary
Usage:
- Import the package:
import KurdishWiktionary from "kurdish-wiktionary";
- Available methods:
will return the whole set of words' objects.getAllWordsData
:
will find an array of the matched words from the set.find
:KurdishWiktionary.find('dem')
[{ "name": "cog", "args": { "1": "sa", "2": "दीति", "3": "", "4": "brightness; time", "tr": "dītí" }, "expansion": "Sanskrit दीति (dītí, “brightness; time”)" } ], "word": "dem", "lang": "Northern Kurdish", "lang_code": "kmr", "senses": [ { "tags": [ "feminine" ], "glosses": [ "time" ], "id": "dem-noun", "categories": [] } ] }]
will find only one object of the matched wordfind_one
:KurdishWiktionary.find_one('dem')
{ "name": "cog", "args": { "1": "sa", "2": "दीति", "3": "", "4": "brightness; time", "tr": "dītí" }, "expansion": "Sanskrit दीति (dītí, “brightness; time”)" } ], "word": "dem", "lang": "Northern Kurdish", "lang_code": "kmr", "senses": [ { "tags": [ "feminine" ], "glosses": [ "time" ], "id": "dem-noun", "categories": [] } ] }
will return the synonyms of the word if existedget_synonyms
:KurdishWiktionary.get_synonyms('tav')
{ synonyms: [{ word: 'roj' }] }
will return the glosses of the word if existedget_glosses
:KurdishWiktionary.get_glosses('tav')
{ glosses: [ 'sun, sunlight' ] }
will return the tags of the word if existedget_tags
:KurdishWiktionary.get_tags('tav')
{ tags: [ 'feminine' ] }
will return the "form of" of the word if existedget_form_of
:KurdishWiktionary.get_form_of('aland')
{ form_of: [ { word: 'alandin' } ] }
will return the position of the wordget_pos
:KurdishWiktionary.get_pos('aland')
{ pos: 'verb' }
will return the sounds of the word if existedget_sounds
:KurdishWiktionary.get_sounds('roj')
{ sounds: [ { ipa: '/roːʒ/' }, { rhymes: '-oːʒ' } ] }
Test:
You can test it using Mocha
:
npm test