Metadata-Version: 2.1
Name: kaalin
Version: 1.0.0
Summary: Special opportunities for the Karakalpak language
Author: Turdıbek Jumabaev
Author-email: <turdibekjumabaev05@gmail.com>
Keywords: karakalpak,language,python
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


# Kaalin

<p>
    The string methods provided by the Python programming language are primarily tailored for English language usage, which might not seamlessly suit the needs of other languages such as Karakalpak. Consequently, to bridge this gap, you can employ this library to avail a range of functions specifically designed to accommodate the intricacies of the Karakalpak language. 
</p>

## Example
```python
from kaalin import KaalinLatin, KaalinCyrillic

kaa = KaalinLatin('BÁHÁR')

print(kaa.upper())      # BÁHÁR
print(kaa.lower())      # báhár
print(kaa.isupper())    # True
print(kaa.islower())    # False
print(kaa.isalpha())    # True
print(kaa.isdigit())    # False
```
```python
from kaalin import KaalinNumber

kaa_num = KaalinNumber()

print(kaa_num.to_word(11))          # on bir
print(kaa_num.base2to8('1001001'))  # '111'
print(kaa_num.base10to2(95))        # '1011111'
```
<br>

<p>
    <i>
        Kaalin is an open-source project, welcoming contributions and suggestions from anyone interested. Whether you're a seasoned developer or a newcomer, your input can help improve and expand the project's capabilities. Feel free to join the community, contribute code, suggest enhancements, or provide feedback to make Kaalin even better. Together, we can make a difference in empowering users with powerful tools and resources.
    </i>
</p>

<b>Contribute to the project!</b>
+ _Latin to Cyrillic & Cyrillic to Latin_
+ _Words to Number_

[View on GitHub](https://github.com/turdibekjumabaev/kaalin)
