uztagger


Nameuztagger JSON
Version 0.0.10 PyPI version JSON
download
home_pagehttps://github.com/UlugbekSalaev/uztagger
Summaryuztagger | Uzbek Morphological Part of Speech (POS) Tagging on Python
upload_time2023-05-03 09:38:20
maintainer
docs_urlNone
authorUlugbek Salaev
requires_python>=3.6
license
keywords mophology uzbek-language pos tagging morphological tagging
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # uztagger

https://pypi.org/project/uztagger <br>
https://github.com/UlugbekSalaev/uztagger

uztagger is focused to make tagging sentence with morphological Part of Speech (POS) tagset of Uzbek word based on morphemes and limited number of lexicon. The tool includes list of POS tagset, tagging method. 
It is created as a python library and uploaded to [PyPI](https://pypi.org/). It is simply easy to use in your python project or other programming language projects via the API. 

## About project
The tool is focused to make tagging sentence with morphological Part of Speech (POS) tagset of Uzbek word based on morphemes. The tool includes list of POS tagset, tagging method.

## Quick links

- [Github](https://github.com/UlugbekSalaev/uztagger)
- [PyPI](https://pypi.org/project/uztagger/)
- [Web-UI](https://nlp.urdu.uz/?menu=uztagger)

## Demo

You can use [web interface](http://nlp.urdu.uz/?menu=uztagger).

## Features

- Tagging 
- POS tag list
- Help function

## Usage

Three options to run uztagger:

- pip
- API 
- Web interface

### pip installation

To install uztagger, simply run:

```code
pip install uztagger
```

After installation, use in python like following:
```yml
# import the library
from uztagger import Tagger
# create an object 
tagger = Tagger()
# call tagging method
tagger.pos_tag('Bizlar bugun maktabga bormoqchimiz.')
# output
[('Bizlar','NOUN'),('bugun', 'NOUN'), ('maktabga', 'NOUN'), ('bormoqchimiz', 'VERB'), ('.', 'PUNC')]
```

### API
API configurations: 
 - Method: `GET`
 - Response type: `string`
 - URL: `https://nlp.urdu.uz:8080/uztagger/pos_tag`
   - Parameters: `text:string`
 - Sample Request: `https://nlp.urdu.uz:8080/uztagger/pos_tag?text=Ular%20maktabga%20borayaptilar.`
 - Sample output: `[("Ular","NOUN"),("maktabga",""),("borayaptilar",""),(".","PUNC")]`

### Web-UI

The web interface created to use easily the library:
You can use web interface [here](http://nlp.urdu.uz/?page=uztagger).

![Demo image](src/uztagger/web-interface-ui.png)

### POS tag list
Tagger using following options as POS tag:<br>
    `NOUN`  Noun<br>
    `VERB`  Verb<br>
    `ADJ `  Adjective<br>
    `NUM `  Numeric<br>
    `ADV `  Adverb<br>
    `PRN `  Pronoun<br>
    `CNJ `  Conjunction<br>
    `ADP `  Adposition<br>
    `PRT `  Particle<br>
    `INTJ`  Interjection<br>
    `MOD `  Modal<br>
    `IMIT`  Imitation<br>
    `AUX `  Auxiliary verb<br>
    `PPN `  Proper noun<br>
    `PUNC`  Punctuation<br>
    `SYM `  Symbol<br>

### Result Explaining

The method ```pos_tag``` returns list, that an item of the list contain tuples for each token of the text with following format: ```(token, pos)```, for POS tag list, see <i>POS Tag List</i> section on above.  
#### Result from `tagger` method
`[('Bizlar','NOUN'),('bugun', 'NOUN'), ('maktabga', 'NOUN'), ('bormoqchimiz', 'VERB'), ('.', 'PUNC')]`

## Documentation

See [here](https://github.com/UlugbekSalaev/uztagger).

## Citation

```tex
@misc{uztagger,
  title={{uztagger}: Morphological Part of Speech Tagger Tool for Uzbek},
  url={https://github.com/UlugbekSalaev/uztagger},
  note={Software available from https://github.com/UlugbekSalaev/uztagger},
  author={
    Ulugbek Salaev},
  year={2022},
}
```

## Contact

For help and feedback, please feel free to contact [the author](https://github.com/UlugbekSalaev).


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/UlugbekSalaev/uztagger",
    "name": "uztagger",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "mophology,uzbek-language,pos tagging,morphological tagging",
    "author": "Ulugbek Salaev",
    "author_email": "ulugbek0302@gmail.com",
    "download_url": "",
    "platform": null,
    "description": "# uztagger\n\nhttps://pypi.org/project/uztagger <br>\nhttps://github.com/UlugbekSalaev/uztagger\n\nuztagger is focused to make tagging sentence with morphological Part of Speech (POS) tagset of Uzbek word based on morphemes and limited number of lexicon. The tool includes list of POS tagset, tagging method. \nIt is created as a python library and uploaded to [PyPI](https://pypi.org/). It is simply easy to use in your python project or other programming language projects via the API. \n\n## About project\nThe tool is focused to make tagging sentence with morphological Part of Speech (POS) tagset of Uzbek word based on morphemes. The tool includes list of POS tagset, tagging method.\n\n## Quick links\n\n- [Github](https://github.com/UlugbekSalaev/uztagger)\n- [PyPI](https://pypi.org/project/uztagger/)\n- [Web-UI](https://nlp.urdu.uz/?menu=uztagger)\n\n## Demo\n\nYou can use [web interface](http://nlp.urdu.uz/?menu=uztagger).\n\n## Features\n\n- Tagging \n- POS tag list\n- Help function\n\n## Usage\n\nThree options to run uztagger:\n\n- pip\n- API \n- Web interface\n\n### pip installation\n\nTo install uztagger, simply run:\n\n```code\npip install uztagger\n```\n\nAfter installation, use in python like following:\n```yml\n# import the library\nfrom uztagger import Tagger\n# create an object \ntagger = Tagger()\n# call tagging method\ntagger.pos_tag('Bizlar bugun maktabga bormoqchimiz.')\n# output\n[('Bizlar','NOUN'),('bugun', 'NOUN'), ('maktabga', 'NOUN'), ('bormoqchimiz', 'VERB'), ('.', 'PUNC')]\n```\n\n### API\nAPI configurations: \n - Method: `GET`\n - Response type: `string`\n - URL: `https://nlp.urdu.uz:8080/uztagger/pos_tag`\n   - Parameters: `text:string`\n - Sample Request: `https://nlp.urdu.uz:8080/uztagger/pos_tag?text=Ular%20maktabga%20borayaptilar.`\n - Sample output: `[(\"Ular\",\"NOUN\"),(\"maktabga\",\"\"),(\"borayaptilar\",\"\"),(\".\",\"PUNC\")]`\n\n### Web-UI\n\nThe web interface created to use easily the library:\nYou can use web interface [here](http://nlp.urdu.uz/?page=uztagger).\n\n![Demo image](src/uztagger/web-interface-ui.png)\n\n### POS tag list\nTagger using following options as POS tag:<br>\n    `NOUN`  Noun<br>\n    `VERB`  Verb<br>\n    `ADJ `  Adjective<br>\n    `NUM `  Numeric<br>\n    `ADV `  Adverb<br>\n    `PRN `  Pronoun<br>\n    `CNJ `  Conjunction<br>\n    `ADP `  Adposition<br>\n    `PRT `  Particle<br>\n    `INTJ`  Interjection<br>\n    `MOD `  Modal<br>\n    `IMIT`  Imitation<br>\n    `AUX `  Auxiliary verb<br>\n    `PPN `  Proper noun<br>\n    `PUNC`  Punctuation<br>\n    `SYM `  Symbol<br>\n\n### Result Explaining\n\nThe method ```pos_tag``` returns list, that an item of the list contain tuples for each token of the text with following format: ```(token, pos)```, for POS tag list, see <i>POS Tag List</i> section on above.  \n#### Result from `tagger` method\n`[('Bizlar','NOUN'),('bugun', 'NOUN'), ('maktabga', 'NOUN'), ('bormoqchimiz', 'VERB'), ('.', 'PUNC')]`\n\n## Documentation\n\nSee [here](https://github.com/UlugbekSalaev/uztagger).\n\n## Citation\n\n```tex\n@misc{uztagger,\n  title={{uztagger}: Morphological Part of Speech Tagger Tool for Uzbek},\n  url={https://github.com/UlugbekSalaev/uztagger},\n  note={Software available from https://github.com/UlugbekSalaev/uztagger},\n  author={\n    Ulugbek Salaev},\n  year={2022},\n}\n```\n\n## Contact\n\nFor help and feedback, please feel free to contact [the author](https://github.com/UlugbekSalaev).\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "uztagger | Uzbek Morphological Part of Speech (POS) Tagging on Python",
    "version": "0.0.10",
    "project_urls": {
        "Bug Tracker": "https://github.com/UlugbekSalaev/uztagger/issues",
        "Homepage": "https://github.com/UlugbekSalaev/uztagger"
    },
    "split_keywords": [
        "mophology",
        "uzbek-language",
        "pos tagging",
        "morphological tagging"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0949c03b4c1008388c059c990bd33184fe4042b84dc1fcb701863cb0f68e8d10",
                "md5": "c0dbd4e0294b2198ae3a53e822e573bc",
                "sha256": "35f9b3364f54b0774f35287fbfa0086f7abfee80d287135246d2d7c0d7cf0996"
            },
            "downloads": -1,
            "filename": "uztagger-0.0.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c0dbd4e0294b2198ae3a53e822e573bc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 351176,
            "upload_time": "2023-05-03T09:38:20",
            "upload_time_iso_8601": "2023-05-03T09:38:20.058572Z",
            "url": "https://files.pythonhosted.org/packages/09/49/c03b4c1008388c059c990bd33184fe4042b84dc1fcb701863cb0f68e8d10/uztagger-0.0.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-03 09:38:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "UlugbekSalaev",
    "github_project": "uztagger",
    "github_not_found": true,
    "lcname": "uztagger"
}
        
Elapsed time: 0.06542s