Metadata-Version: 2.4
Name: iraqitext
Version: 0.1.0
Summary: Translate Iraqi dialect to Modern Standard Arabic and back
Author: JOHN
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: Arabic
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# IraqiText 🇮🇶

A Python library for translating Iraqi Arabic dialect to Modern Standard Arabic (MSA) and vice versa.

## Features

- 🇮🇶 Iraqi → Modern Standard Arabic
- 📖 Modern Standard Arabic → Iraqi
- ⚡ Fast dictionary-based translation
- 🧩 Easy to integrate into Python projects

## Installation

```bash
pip install iraqitext
```

## Usage

```python
from iraqitext import IraqiTranslator

translator = IraqiTranslator()

print(translator.to_fusha("شلونك"))
# كيف حالك

print(translator.to_iraqi("كيف حالك"))
# شلونك
```

## Example

```python
text = "هسه أكدر أجي"

print(translator.to_fusha(text))
# الآن أستطيع أن آتي
```

## Roadmap

- [x] Iraqi ↔ MSA translation
- [ ] More than 20,000 Iraqi words
- [ ] Grammar rules
- [ ] Iraqi spell checker
- [ ] Southern dialect support
- [ ] Mosul dialect support
- [ ] Baghdadi dialect support
- [ ] AI translation model

## License

MIT License
