Skip to content

kurd-cc/kwiki

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KWIKI

A parser for the Kurdish Wiktionary with >5.9K 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

Installation:

pip install kwiki

Usage:

  1. Import the package:
from kwiki import kwiki
  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.
       kwiki.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
       kwiki.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
       kwiki.get_synonyms('tav')
        { 
            'synonyms': [{ 'word': 'roj' }]
        }
    5. get_glosses:

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

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

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

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

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

About

A python module to parse the Kurdish Wiktionary (Wikiferheng)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages