Git Product home page Git Product logo

kurdish-wiktionary's Introduction

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:

  1. Import the package:
import KurdishWiktionary from "kurdish-wiktionary";
  1. Available methods:
    1. getAllWordsData:

      will return the whole set of words' objects.
    2. find:

      will find an array of the matched words from the set.
       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": []
                   }
               ]
           }]
    3. find_one:

      will find only one object of the matched word
       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": []
                   }
               ]
           }
    4. get_synonyms:

      will return the synonyms of the word if existed
       KurdishWiktionary.get_synonyms('tav')
        { 
            synonyms: [{ word: 'roj' }]
        }
    5. get_glosses:

      will return the glosses of the word if existed
       KurdishWiktionary.get_glosses('tav')
        { 
            glosses:  [ 'sun, sunlight' ] 
        }
    6. get_tags:

      will return the tags of the word if existed
       KurdishWiktionary.get_tags('tav')
        { 
            tags:  [ 'feminine' ] 
        }
    7. get_form_of:

      will return the "form of" of the word if existed
       KurdishWiktionary.get_form_of('aland')
        { 
            form_of:  [ { word: 'alandin' } ]
        }
    8. get_pos:

      will return the position of the word
       KurdishWiktionary.get_pos('aland')
        { 
            pos:  'verb'
        }
    9. get_sounds:

      will return the sounds of the word if existed
      KurdishWiktionary.get_sounds('roj')
        { 
            sounds:   [ { ipa: '/roːʒ/' }, { rhymes: '-oːʒ' } ]
        }


Test:

You can test it using Mocha:

npm test

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.