Metadata-Version: 2.1
Name: hindiPOS
Version: 0.0.1
Summary: A small example package
Author: Devanshi
Author-email: Devanshi <devanshiisuri@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: polars

# Hindi POS tagger 

### Hindi POS tagger developed by Dr. Nisheeth Joshi at SLP Lab, Centre for Artificial Intelligence, Banasthali Vidyapith.

## Installation:
Use the package manager [pip](https://pip.pypa.io/en/stable/) to install hindiPOS
```bash
pip install hindiPOS
```

## Usage
```python
from hindiPOS import hmm
#returns a list
hmm.postag('दिल्ली भारत की राष्ट्रीय राजधानी है।')
#['दिल्ली|NNP', 'भारत|NNP', 'की|PSP', 'राष्ट्रीय|NN', 'राजधानी|NN', 'है।|NN']
```

## Contributing

Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.

## License
[MIT](https://choosealicense.com/licenses/mit/)
