Metadata-Version: 2.4
Name: lutfiy
Version: 0.0.2
Summary: lutfiy - transliteration and zwnj scripts for Southern Uzbek
Project-URL: Homepage, https://github.com/tahrirchi/uzs-scripts
Project-URL: Bug Tracker, https://github.com/tahrirchi/uzs-scripts/issues
Author-email: Muhammadsaid Mamasaidov <mukhammadsaid.mamasaidov@gmail.com>, Abror Shopulatov <murodbeck@proton.me>
Maintainer-email: Muhammadsaid Mamasaidov <mukhammadsaid.mamasaidov@gmail.com>, Abror Shopulatov <murodbeck@proton.me>
License: MIT License
        
        Copyright (c) Tahrirchi
        
        Authors: Mukhammadsaid Mamasaidov, Abror Shopulatov
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: language,transliteration,uzs,zwnj
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Text Processing :: Linguistic
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Lutfiy - Southern Uzbek Text Processing

A Python library for processing Southern Uzbek text, including transliteration and ZWNJ correction.

## Installation

```bash
pip install lutfiy
```

## Quick Start

```python
from lutfiy import fix_zwnj, transliterate

# Fix ZWNJ placement
text = 'اۉزبېکستان کېلهجگی بویوک دولت دیر.'
corrected = fix_zwnj(text)

# Transliterate to Latin
latin = transliterate(text)
```

## Advanced Usage

```python
from lutfiy import Lutfiy

# Initialize processor
processor = Lutfiy()

# Process with multiple operations
result = processor.process(
    text='اۉزبېکستان کېلهجگی بویوک دولت دیر.',
    fix_zwnj=True,
    transliterate=True
)
```