Metadata-Version: 2.4
Name: hassena-darija-demo
Version: 0.0.1
Summary: A fun package to translate English to Moroccan Darija by Hassena
Author-email: Hassena <hassena@example.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Hassena's Darija Translator

This is a fun demo package created for Hassena. It translates simple English words into Moroccan Darija.

## Installation

```bash
pip install hassena-darija-demo
```

## Usage

```python
from hassena_darija import to_darija, say_hello_hassena

print(say_hello_hassena())

# Translate words
print(f"Thanks in Darija is: {to_darija('thanks')}")
print(f"Hello in Darija is: {to_darija('hello')}")
print(f"Friend in Darija is: {to_darija('friend')}")
```
