Metadata-Version: 2.4
Name: StringUtilsLib
Version: 0.1.0
Summary: Text utilities: reverse, count letters and words
Author: Raghed Ehap Suif Alfaghe
Author-email: Raghed Ehap Suif Alfaghe <raralasaly2006@gmail.com>
License: 
        
        MIT License
        
        Copyright (c) Raghed Ehap Suif Alfaghe.
        
Requires-Python: >=3.13
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# StringUtilsLib
مكتبة للتعامل مع النصوص: تعكس النص، تحسب عدد الحروف، وعدد الكلمات.

## التثبيت
```bash
py -m pip install StringUtilsLib



الاستخدام من Python

from string_utils import reverse_text, count_letters, count_words

text = "Hello World"
print(reverse_text(text)) # dlroW olleH
print(count_letters(text)) # 10
print(count_words(text)) # 2
